forked from mjacobus/rubyjobsbrazil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
71 lines (62 loc) · 1.68 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
source 'https://rubygems.org'
# ruby '2.0.0'
gem 'rails', '4.1.0'
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
# gem 'therubyracer', platforms: :ruby
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
# gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', group: :development
# Rails non default
# Login
gem 'devise'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-google_oauth2'
gem 'omniauth-github'
gem 'email_validator'
gem 'high_voltage'
gem 'mysql2'
gem 'rack-timeout'
gem 'recipient_interceptor'
gem 'simple_form'
gem 'title'
gem 'unicorn'
gem 'kaminari'
gem 'vattributes'
gem 'draper', '~> 1.3'
gem 'foundation-rails'
gem 'foundation-icons-sass-rails'
# gem 'github-markup'
gem 'redcarpet'
gem 'table_cloth'
group :development, :test do
gem 'awesome_print'
# gem 'dotenv-rails'
gem 'pry-rails'
gem 'rspec-rails', '~> 3.0.0.beta'
gem 'machinist', '>= 2.0.0.beta2'
end
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 :staging, :production do
# gem 'newrelic_rpm', '>= 3.7.3'
end