-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathGemfile
54 lines (48 loc) · 1.1 KB
/
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
47
48
49
50
51
52
53
54
source 'http://rubygems.org'
source 'http://gemcutter.org'
gem 'rails', '3.1.10'
gem 'sqlite3'
gem 'json', '>=1.7.7'
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier', '>= 1.0.3'
end
group :test, :development do
gem 'cucumber-rails'
gem 'database_cleaner'
gem 'rspec-rails'
gem 'cucumber-rails', require: false
gem "factory_girl_rails"
gem 'capybara'
gem "capybara-webkit"
gem 'fakeweb'
gem "launchy"
gem 'database_cleaner', :group => :test
gem 'faker'
gem 'pry'
gem 'rest-client'
if RUBY_PLATFORM.downcase.include?("darwin")
gem "guard"
gem "guard-rspec"
gem "guard-cucumber"
gem "guard-bundler"
gem "guard-spork"
gem 'spork'
gem 'rb-fsevent'
gem 'growl' # also install growlnotify from the Extras/growlnotify/growlnotify.pkg in Growl disk image
end
end
gem 'execjs'
gem 'therubyracer'
gem 'devise'
gem 'nested_form', :git => 'git://github.com/fxposter/nested_form.git'
gem 'jquery-rails'
gem 'cancan'
gem 'make_voteable'
gem 'mysql2'
gem 'rails_autolink'
gem 'rdiscount'
gem 'delayed_job'
gem 'delayed_job_active_record'
gem 'whenever'