oldhaven/Gemfile

29 lines
447 B
Ruby
Raw Normal View History

2011-04-03 23:11:26 +04:00
source 'http://rubygems.org'
2011-09-08 02:40:59 +04:00
gem 'rails', '3.1.0'
2011-10-05 21:35:07 +04:00
gem 'unicorn'
2011-04-03 23:11:26 +04:00
2011-06-27 15:14:14 +04:00
gem 'json'
2011-09-16 04:21:07 +04:00
gem 'nokogiri'
2011-06-27 22:41:36 +04:00
gem 'haml'
2011-06-30 09:32:51 +04:00
gem 'sass'
gem 'coffee-script'
gem 'therubyracer', :require => false
2011-06-27 15:14:14 +04:00
gem 'awesome_print', :require => 'ap'
2011-06-20 01:23:22 +04:00
gem 'delayed_job'
gem 'lastfm-client', :git => 'http://github.com/pch/lastfm-client.git'
gem 'musicbrainz'
2011-06-27 15:14:14 +04:00
2011-09-15 08:35:48 +04:00
gem 'bitmask_attributes'
2011-06-27 15:14:14 +04:00
group :development do
gem 'mysql2', '0.3.7'
2011-06-27 15:14:14 +04:00
end
group :production do
gem 'pg'
2011-09-08 02:40:59 +04:00
gem 'uglifier'
2011-06-27 15:14:14 +04:00
end