Files
9minutes/Gemfile
T

46 lines
814 B
Ruby

source 'http://rubygems.org'
gem 'rake', '!= 0.9.0'
gem 'rails', '3.0.5'
gem 'jquery-rails', '>= 0.2.6'
# templating
gem 'haml-rails'
# for using last.fm api
gem 'httparty'
gem 'typhoeus'
# for converting json/xml to object
gem 'json'
gem 'hashie'
# authentication, authorization, roles
#gem 'cream'
# youtube search
gem 'youtube_it'
group :development do
# for html2haml
#gem 'hpricot'
gem 'ruby_parser'
end
# Deploy with Capistrano
# gem 'capistrano'
# Bundle the extra gems:
# gem 'bj'
gem 'sqlite3'
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