oldhaven/Gemfile

29 lines
460 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-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
gem 'barista'
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/magnolia-fan/lastfm-client.git'
2011-09-14 18:20:25 +04:00
gem 'musicbrainz', '~> 0.4.3'
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 'sqlite3'
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