forked from gshankar/ideagora
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
46 lines (41 loc) · 928 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
source 'http://rubygems.org'
gem 'rails', '3.1'
gem 'unicorn'
gem 'pg'
gem 'acts-as-taggable-on'
gem 'capistrano'
gem 'haml'
gem 'formtastic'
gem 'heroku'
gem 'hirb'
gem 'inherited_resources'
gem 'rake', '0.9.2'
gem 'simple_form'
gem 'state_machine'
gem 'RedCloth'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', " ~> 3.1.0"
gem 'coffee-rails', " ~> 3.1.0"
gem 'uglifier'
gem 'compass', ">= 0.12.alpha"
end
gem 'jquery-rails'
group :development, :test do
gem 'autotest'
gem 'autotest-growl'
gem 'autotest-fsevent'
gem 'capybara', :git => 'https://github.com/jnicklas/capybara.git', :tag => '1.0.0.beta1'
gem 'database_cleaner'
gem 'faker'
gem 'itslog'
gem 'launchy' # for save_and_open_page
gem "machinist", '>= 2.0.0.beta2'
gem 'rspec-rails'
gem 'shoulda'
gem 'spork'
gem 'steak'
gem 'fuubar'
gem 'timecop'
end