40 lines
730 B
Ruby
40 lines
730 B
Ruby
source 'http://rubygems.org'
|
|
|
|
gem 'rails', '3.0.5'
|
|
|
|
gem 'sqlite3'
|
|
gem 'jquery-rails', '>= 0.2.6'
|
|
|
|
# templating
|
|
gem 'haml-rails'
|
|
|
|
# for using last.fm api
|
|
gem 'httparty'
|
|
|
|
# for converting json/xml to object
|
|
gem 'hashie'
|
|
|
|
# authentication, authorization, roles
|
|
gem 'cream'
|
|
|
|
group :development do
|
|
# for html2haml
|
|
gem 'hpricot'
|
|
gem 'ruby_parser'
|
|
end
|
|
|
|
# Deploy with Capistrano
|
|
# gem 'capistrano'
|
|
|
|
# Bundle the extra gems:
|
|
# gem 'bj'
|
|
# gem 'sqlite3-ruby', :require => 'sqlite3'
|
|
# gem 'aws-s3', :require => 'aws/s3'
|
|
|
|
# Bundle gems for the local environment. Make sure to
|
|
# put test-only gems in this group so their generators
|
|
# and rake tasks are available in development mode:
|
|
# group :development, :test do
|
|
# gem 'webrat'
|
|
# end
|