forked from mjacobus/rubyjobsbrazil
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
57 lines (47 loc) · 1.39 KB
/
Gemfile
File metadata and controls
57 lines (47 loc) · 1.39 KB
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
source 'https://rubygems.org'
# ruby '2.0.0'
gem 'recruiter', '~>1.1.17'
gem 'rails', '~> 4.2'
gem 'therubyracer', platforms: :ruby
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jbuilder', '~> 2.0'
gem 'kaminari'
gem 'mysql2'
gem 'figaro'
gem 'capistrano', '3.2.1'
gem 'capistrano-rails'
gem 'capistrano-bundler'
gem 'net-ssh', '~> 2.9.2' # avoid build error
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# gem 'unicorn' # causing timeouts
group :test do
gem "capybara"
# gem 'capybara-webkit', '>= 1.0.0'
gem 'database_cleaner'
# gem 'launchy'
gem 'shoulda-matchers', require: false
gem 'simplecov', require: false
gem 'coveralls', require: false
# gem 'timecop'
gem 'webmock'
gem "spring-commands-rspec"
gem 'faker'
end
group :development, :test do
gem 'awesome_print'
# gem 'pry-rails'
gem 'rspec-rails', '3.0.0.beta2'
gem 'machinist', '>= 2.0.0.beta2'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
# gem 'byebug'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end
group :staging, :production do
gem 'rack-timeout'
end