Added Initial Menu System
[base_ror3_portal.git] / Gemfile
blob38b366c49130a08dd4b78a8957ebf068d599d4ad
1 source 'http://rubygems.org'
3 gem 'rails', '3.0.0'
5 # Bundle edge Rails instead:
6 # gem 'rails', :git => 'git://github.com/rails/rails.git'
8 gem 'mysql2'
9 gem "devise",           "~> 1.1.2"
10 gem "devise_invitable", :git => "git://github.com/rymai/devise_invitable.git"
11 gem 'capistrano'
12 gem 'cancan'
13 gem 'formtastic', :git => "http://github.com/justinfrench/formtastic.git", :branch => "rails3"
15 # Use unicorn as the web server
16 # gem 'unicorn'
18 # Deploy with Capistrano
19 # gem 'capistrano'
21 # To use debugger
22 # gem 'ruby-debug'
24 # Bundle the extra gems:
25 # gem 'bj'
26 # gem 'nokogiri'
27 # gem 'sqlite3-ruby', :require => 'sqlite3'
28 # gem 'aws-s3', :require => 'aws/s3'
30 # Bundle gems for the local environment. Make sure to
31 # put test-only gems in this group so their generators
32 # and rake tasks are available in development mode:
33 group :development, :test do
34   gem 'capybara'
35   gem 'cucumber'
36   gem 'cucumber-rails'
37   gem "rspec-rails",        ">= 2.0.0.beta.20", :git => "git://github.com/rspec/rspec-rails.git"
38   gem "rspec",              ">= 2.0.0.beta.20", :git => "git://github.com/rspec/rspec.git"
39   gem "rspec-core",         ">= 2.0.0.beta.20", :git => "git://github.com/rspec/rspec-core.git"
40   gem "rspec-expectations", ">= 2.0.0.beta.20", :git => "git://github.com/rspec/rspec-expectations.git"
41   gem "rspec-mocks",        ">= 2.0.0.beta.20", :git => "git://github.com/rspec/rspec-mocks.git"
42   gem 'database_cleaner'
43   gem 'spork'
44   gem 'launchy'
45   gem 'test-unit'
46 end