1
0
Fork 0
oldhaven/Gemfile

30 lines
461 B
Ruby
Raw Normal View History

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