-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
74 lines (62 loc) · 1.31 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
source 'https://rubygems.org'
ruby '2.0.0'
gem 'rails', '4.0.0.rc2'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jquery-turbolinks'
gem 'jbuilder', '~> 1.0.1'
gem 'haml-rails'
gem 'figaro'
gem 'warden'
gem 'sqlite3'
gem 'simple_form', '3.0.0.rc'
gem 'active_decorator'
gem 'rails-i18n'
gem 'thin'
# twitter bootstrap
gem 'therubyracer'
gem 'less-rails'
gem 'twitter-bootstrap-rails'
gem 'sass-rails', '~> 4.0.0.rc2'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0.rc2'
group :doc do
gem 'sdoc', require: false
end
group :development do
gem 'foreman'
gem 'better_errors'
gem 'binding_of_caller'
end
group :test, :development do
# Rspec
gem 'rspec-rails'
gem 'factory_girl'
gem 'factory_girl_rails'
gem 'faker'
gem 'delorean'
gem 'shoulda-matchers'
# Capybara
gem 'capybara'
gem 'poltergeist'
gem 'launchy'
# Debug tool
gem 'pry'
gem 'tapp'
gem 'awesome_print'
gem 'spring', github: 'jonleighton/spring'
# Testing tools
gem "database_cleaner", '1.0.0.RC1'
gem "brakeman"
# Capistrano
gem 'capistrano'
gem 'capistrano-ext'
gem 'capistrano_colors'
gem 'rvm-capistrano'
# Guard
gem 'guard-rspec', require: false
gem 'guard-sprockets2'
gem 'rb-fsevent', require: RUBY_PLATFORM.downcase =~ /darwin/ ? 'rb-fsevent' : false
# Reset DB
gem 'rails-db-resetup'
end