-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
44 lines (40 loc) · 808 Bytes
/
Copy pathGemfile
File metadata and controls
44 lines (40 loc) · 808 Bytes
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
source 'https://rubygems.org'
gem 'rails', '3.2.1'
group :development, :test do
gem "haml-rails"
gem "hpricot"
gem "ruby_parser"
gem "rspec-rails"
gem "email_spec"
gem "cucumber-rails", :require => false
gem "database_cleaner"
gem "launchy"
gem "capybara"
gem "factory_girl_rails"
gem "quiet_assets"
gem 'sqlite3'
gem 'simplecov', :require => false
gem "json_spec"
gem 'spork'
end
group :production do
gem 'pg'
end
group :assets do
gem 'less-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'twitter-bootstrap-rails', :git => 'git://github.com/seyhunak/twitter-bootstrap-rails.git'
end
gem "populator"
gem "faker"
gem "therubyracer"
gem "omniauth"
gem "omniauth-twitter"
gem "cancan"
gem "rolify"
gem "simple_form"
gem 'jquery-rails'
gem "thin"
gem "haml"
gem 'hydra_attribute'