This repository has been archived by the owner on May 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
87 lines (65 loc) · 2.35 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
75
76
77
78
79
80
81
82
83
84
85
86
87
source 'https://rubygems.org'
gem 'dotenv-rails', '0.11.1'
gem 'rails', '4.1.4'
gem 'pg', '0.17.1'
# Use SCSS for stylesheets
gem 'sass-rails', '4.0.3'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '2.5.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', '0.12.1', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails', '3.1.1'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks', '2.2.2'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '2.1.1'
# Use ActiveModel has_secure_password
gem 'bcrypt', '3.1.7'
# Use unicorn as the app server
gem 'unicorn', '4.8.3'
# fix security issue https://www.ruby-lang.org/en/news/2014/03/29/heap-overflow-in-yaml-uri-escape-parsing-cve-2014-2525/
# gem 'psych', '2.0.5'
gem 'http_accept_language', '2.0.1'
gem 'foundation-rails', '5.3.0.1'
gem 'simple_presenter', '0.2.3'
gem 'skylight', '0.3.17'
gem 'sinatra', '>= 1.3.0', require: nil
gem 'sidekiq', '3.1.4'
gem 'google-analytics-turbolinks', '0.0.4'
gem 'pagseguro-oficial', git: 'https://github.com/rtopitt/pagseguro-ruby.git'
group :development, :production do
gem 'rails_stdout_logging', '0.0.3'
end
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0'
end
group :development do
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', '~> 1.1'
gem 'spring-commands-rspec', '~> 1.0'
gem 'foreman', '~> 0.74'
gem 'better_errors', '~> 1.1'
gem 'binding_of_caller', '~> 0.7'
# Use Capistrano for deployment
gem 'capistrano-rails', '~> 1.1'
gem 'ultrahook', '~> 0.1'
end
group :test do
gem 'timecop', '~> 0.7'
gem 'webmock', '~> 1.18'
gem 'vcr', '~> 2.9'
# require: false because of https://github.com/rspec/rspec-rails/pull/772#issuecomment-35805617
gem 'shoulda-matchers', '~> 2.6', require: false
gem 'codeclimate-test-reporter', '~> 0.3', require: nil
end
group :development, :test do
gem 'awesome_print', '~> 1.2'
gem 'rspec-rails', '~> 2.14.2'
gem 'factory_girl_rails', '~> 4.4'
gem 'database_cleaner', '~> 1.3'
gem 'fuubar', '~> 1.3'
gem 'pry-byebug', '~> 1.3'
gem 'pry-remote', '~> 0.1'
end