roo_on_rails 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.codecov.yml +29 -0
- data/.rubocop.yml +33 -0
- data/.ruby-version +1 -0
- data/.travis.yml +11 -0
- data/Appraisals +12 -0
- data/CHANGELOG.md +16 -4
- data/Gemfile +1 -0
- data/README.md +33 -3
- data/appraise +28 -0
- data/gemfiles/rails_3.gemfile +11 -0
- data/gemfiles/rails_3.gemfile.lock +185 -0
- data/gemfiles/rails_4.gemfile +10 -0
- data/gemfiles/rails_4.gemfile.lock +199 -0
- data/gemfiles/rails_5.gemfile +10 -0
- data/gemfiles/rails_5.gemfile.lock +205 -0
- data/lib/roo_on_rails/checks/environment.rb +2 -1
- data/lib/roo_on_rails/checks/github/branch_protection.rb +130 -0
- data/lib/roo_on_rails/checks/github/token.rb +85 -0
- data/lib/roo_on_rails/checks/helpers.rb +1 -1
- data/lib/roo_on_rails/default.env +2 -0
- data/lib/roo_on_rails/rack/safe_timeouts.rb +28 -0
- data/lib/roo_on_rails/railtie.rb +0 -25
- data/lib/roo_on_rails/railties/http.rb +38 -0
- data/lib/roo_on_rails/railties/new_relic.rb +27 -0
- data/lib/roo_on_rails/version.rb +1 -1
- data/lib/roo_on_rails.rb +2 -0
- data/roo_on_rails.gemspec +18 -12
- metadata +112 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 414e52a1f4a204155e8ac72fb782b1c3f8e02fbf
|
|
4
|
+
data.tar.gz: 455803293bc94052f1fb00d760d75bd93fc219d8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 023dd6254c42da164c858dad3e521a464df7835431a623b6c7444012e03a71a272a11d80f939791443520f27c230795d9c700402f79c25c1e45b116f14c20fc5
|
|
7
|
+
data.tar.gz: 96a9cabce8b2bb63f686ec4e3a03bed076a0589a961467d2fe464957731d985530cdd314a41ba81cdc5db1c6e19a52714a134e77d02262a9292df79e851a5164
|
data/.codecov.yml
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
codecov:
|
|
2
|
+
notify:
|
|
3
|
+
require_ci_to_pass: yes
|
|
4
|
+
|
|
5
|
+
coverage:
|
|
6
|
+
precision: 2
|
|
7
|
+
round: down
|
|
8
|
+
range: "70...100"
|
|
9
|
+
|
|
10
|
+
status:
|
|
11
|
+
project:
|
|
12
|
+
default:
|
|
13
|
+
enabled: yes
|
|
14
|
+
threshold: 1%
|
|
15
|
+
patch:
|
|
16
|
+
default:
|
|
17
|
+
enabled: yes
|
|
18
|
+
threshold: 5%
|
|
19
|
+
changes: no
|
|
20
|
+
|
|
21
|
+
parsers:
|
|
22
|
+
gcov:
|
|
23
|
+
branch_detection:
|
|
24
|
+
conditional: yes
|
|
25
|
+
loop: yes
|
|
26
|
+
method: no
|
|
27
|
+
macro: no
|
|
28
|
+
|
|
29
|
+
comment: off
|
data/.rubocop.yml
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
AllCops:
|
|
2
|
+
TargetRubyVersion: 2.4
|
|
3
|
+
|
|
4
|
+
Style/FrozenStringLiteralComment:
|
|
5
|
+
Enabled: false
|
|
6
|
+
|
|
7
|
+
Style/ModuleFunction:
|
|
8
|
+
EnforcedStyle: extend_self
|
|
9
|
+
|
|
10
|
+
# Disable Metric checks for specs
|
|
11
|
+
Metrics/BlockLength:
|
|
12
|
+
Exclude:
|
|
13
|
+
- 'spec/**/*.rb'
|
|
14
|
+
|
|
15
|
+
Metrics/AbcSize:
|
|
16
|
+
Exclude:
|
|
17
|
+
- 'spec/**/*.rb'
|
|
18
|
+
|
|
19
|
+
Metrics/BlockLength:
|
|
20
|
+
Exclude:
|
|
21
|
+
- 'lib/tasks/**/*.rake'
|
|
22
|
+
- 'spec/**/*.rb'
|
|
23
|
+
- 'Gemfile'
|
|
24
|
+
- 'Guardfile'
|
|
25
|
+
- '*.gemspec'
|
|
26
|
+
|
|
27
|
+
Metrics/LineLength:
|
|
28
|
+
Max: 100
|
|
29
|
+
Exclude:
|
|
30
|
+
- Gemfile
|
|
31
|
+
|
|
32
|
+
Style/Documentation:
|
|
33
|
+
Enabled: false
|
data/.ruby-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2.3.3
|
data/.travis.yml
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
sudo: false
|
|
2
2
|
language: ruby
|
|
3
3
|
rvm:
|
|
4
|
+
- 2.2.6
|
|
4
5
|
- 2.3.3
|
|
5
6
|
- 2.4.0
|
|
7
|
+
- ruby-head
|
|
8
|
+
gemfile:
|
|
9
|
+
- gemfiles/rails_3.gemfile
|
|
10
|
+
- gemfiles/rails_4.gemfile
|
|
11
|
+
- gemfiles/rails_5.gemfile
|
|
6
12
|
install:
|
|
7
13
|
- bundle install --jobs=3 --retry=3 --path=vendor/bundle
|
|
8
14
|
cache:
|
|
@@ -12,3 +18,8 @@ cache:
|
|
|
12
18
|
before_script:
|
|
13
19
|
- unset RACK_ENV
|
|
14
20
|
- unset RAILS_ENV
|
|
21
|
+
matrix:
|
|
22
|
+
allow_failures:
|
|
23
|
+
- rvm: ruby-head
|
|
24
|
+
- rvm: 2.4.0
|
|
25
|
+
gemfile: gemfiles/rails_3.gemfile
|
data/Appraisals
ADDED
data/CHANGELOG.md
CHANGED
|
@@ -1,18 +1,30 @@
|
|
|
1
|
+
# v1.2.0 (2017-03-21)
|
|
2
|
+
|
|
3
|
+
Features:
|
|
4
|
+
|
|
5
|
+
- Add `Rack::Timeout`, `Rack::SslEnforcer`, `Rack::Deflater` middleware when
|
|
6
|
+
loaded (#7).
|
|
7
|
+
- `roo_on_rails` command now checks for Github branch protection (#8).
|
|
8
|
+
|
|
9
|
+
Fixes:
|
|
10
|
+
|
|
11
|
+
- Wider build matrix; now with Rails 3, 4, 5 compatibility on various Rubies
|
|
12
|
+
(#6, #9).
|
|
13
|
+
|
|
1
14
|
# v1.1.0 (2017-02-20)
|
|
2
15
|
|
|
3
16
|
Features:
|
|
4
17
|
|
|
5
|
-
- `roo_on_rails` command, with basic Heroku app checks
|
|
18
|
+
- `roo_on_rails` command, with basic Heroku app checks (#4)
|
|
6
19
|
|
|
7
20
|
# v1.0.1 (2017-01-20)
|
|
8
21
|
|
|
9
22
|
Bug fixes:
|
|
10
23
|
|
|
11
|
-
- Do not load New Relic in test environments
|
|
24
|
+
- Do not load New Relic in test environments (#2, #3)
|
|
12
25
|
|
|
13
26
|
# v1.0.0 (2017-01-19)
|
|
14
27
|
|
|
15
28
|
Features:
|
|
16
29
|
|
|
17
|
-
- Automatic New Relic configuration, with safeguards
|
|
18
|
-
|
|
30
|
+
- Automatic New Relic configuration, with safeguards (#1)
|
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -47,7 +47,8 @@ below.
|
|
|
47
47
|
Running the `roo_on_rails` script currently checks for:
|
|
48
48
|
|
|
49
49
|
- compliant Heroku app naming;
|
|
50
|
-
- presence of the Heroku preboot flag
|
|
50
|
+
- presence of the Heroku preboot flag;
|
|
51
|
+
- correct Github master branch protection.
|
|
51
52
|
|
|
52
53
|
|
|
53
54
|
### New Relic configuration
|
|
@@ -61,8 +62,38 @@ We enforce configuration of New Relic.
|
|
|
61
62
|
variables](https://docs.newrelic.com/docs/agents/ruby-agent/installation-configuration/ruby-agent-configuration)
|
|
62
63
|
is permitted.
|
|
63
64
|
|
|
64
|
-
No further configuration is required as the gem
|
|
65
|
+
No further configuration is required for production apps as the gem configures our standard settings.
|
|
66
|
+
|
|
67
|
+
However if you have Heroku's [review apps](https://devcenter.heroku.com/articles/github-integration-review-apps) enabled then you will need to update `app.json` so that it lists `NEW_RELIC_LICENSE_KEY` in the `env` section, so that this key is copied from the parent app (only keys listed here will be created on the review app; either generated, if that is specified, or otherwise copied).
|
|
68
|
+
|
|
69
|
+
More documentation is available [directly from heroku](https://devcenter.heroku.com/articles/github-integration-review-apps#inheriting-config-vars) but the block below has been helpful in other apps:
|
|
70
|
+
|
|
71
|
+
```json
|
|
72
|
+
"env": {
|
|
73
|
+
"NEW_RELIC_LICENSE_KEY": {
|
|
74
|
+
"description": "The New Relic licence key",
|
|
75
|
+
"required": true
|
|
76
|
+
},
|
|
77
|
+
"SECRET_KEY_BASE": {
|
|
78
|
+
"description": "A secret basis for the key which verifies the integrity of signed cookies.",
|
|
79
|
+
"generator": "secret"
|
|
80
|
+
},
|
|
81
|
+
"RACK_ENV": {
|
|
82
|
+
"description": "The name of the environment for Rack."
|
|
83
|
+
},
|
|
84
|
+
"RAILS_ENV": {
|
|
85
|
+
"description": "The name of the environment for Rails."
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
### Rack middleware
|
|
65
91
|
|
|
92
|
+
We'll insert the following middlewares into the rails stack:
|
|
93
|
+
|
|
94
|
+
1. `Rack::Timeout`: sets a timeout for all requests. Use `RACK_SERVICE_TIMEOUT` (default 15) and `RACK_WAIT_TIMEOUT` (default 30) to customise.
|
|
95
|
+
2. `Rack::SslEnforcer`: enforces HTTPS.
|
|
96
|
+
3. `Rack::Deflater`: compresses responses from the application, can be disabled with `ROO_ON_RAILS_RACK_DEFLATE` (default: 'YES').
|
|
66
97
|
|
|
67
98
|
## Contributing
|
|
68
99
|
|
|
@@ -72,4 +103,3 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/delive
|
|
|
72
103
|
## License
|
|
73
104
|
|
|
74
105
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
|
75
|
-
|
data/appraise
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
#
|
|
3
|
+
# Run all appraisals, with all specified rubies
|
|
4
|
+
#
|
|
5
|
+
require 'yaml'
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
RUBIES = YAML.load_file('.travis.yml')['rvm']
|
|
9
|
+
APPRAISALS = `appraisal list`.strip.split(/\s+/)
|
|
10
|
+
|
|
11
|
+
# setup
|
|
12
|
+
RUBIES.each do |ruby|
|
|
13
|
+
ENV['RBENV_VERSION'] = ruby
|
|
14
|
+
system 'rbenv version'
|
|
15
|
+
system 'rbenv exec ruby -v'
|
|
16
|
+
system 'rbenv exec bundle check || rbenv exec bundle install'
|
|
17
|
+
system "rbenv exec appraisal install"
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
# tests
|
|
21
|
+
RUBIES.each do |ruby|
|
|
22
|
+
ENV['RBENV_VERSION'] = ruby
|
|
23
|
+
system 'rbenv exec ruby -v'
|
|
24
|
+
APPRAISALS.each do |variant|
|
|
25
|
+
puts "*** Ruby #{ruby} / variant #{variant}"
|
|
26
|
+
system "rbenv exec appraisal #{variant} rspec"
|
|
27
|
+
end
|
|
28
|
+
end
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: ../
|
|
3
|
+
specs:
|
|
4
|
+
roo_on_rails (1.1.0)
|
|
5
|
+
dotenv-rails (~> 2.1)
|
|
6
|
+
hashie (~> 3.4)
|
|
7
|
+
newrelic_rpm (~> 3.17)
|
|
8
|
+
platform-api (~> 0.8)
|
|
9
|
+
rack-ssl-enforcer
|
|
10
|
+
rack-timeout
|
|
11
|
+
rails (>= 3.2.22, < 5.1)
|
|
12
|
+
|
|
13
|
+
GEM
|
|
14
|
+
remote: https://rubygems.org/
|
|
15
|
+
specs:
|
|
16
|
+
actionmailer (3.2.22.5)
|
|
17
|
+
actionpack (= 3.2.22.5)
|
|
18
|
+
mail (~> 2.5.4)
|
|
19
|
+
actionpack (3.2.22.5)
|
|
20
|
+
activemodel (= 3.2.22.5)
|
|
21
|
+
activesupport (= 3.2.22.5)
|
|
22
|
+
builder (~> 3.0.0)
|
|
23
|
+
erubis (~> 2.7.0)
|
|
24
|
+
journey (~> 1.0.4)
|
|
25
|
+
rack (~> 1.4.5)
|
|
26
|
+
rack-cache (~> 1.2)
|
|
27
|
+
rack-test (~> 0.6.1)
|
|
28
|
+
sprockets (~> 2.2.1)
|
|
29
|
+
activemodel (3.2.22.5)
|
|
30
|
+
activesupport (= 3.2.22.5)
|
|
31
|
+
builder (~> 3.0.0)
|
|
32
|
+
activerecord (3.2.22.5)
|
|
33
|
+
activemodel (= 3.2.22.5)
|
|
34
|
+
activesupport (= 3.2.22.5)
|
|
35
|
+
arel (~> 3.0.2)
|
|
36
|
+
tzinfo (~> 0.3.29)
|
|
37
|
+
activeresource (3.2.22.5)
|
|
38
|
+
activemodel (= 3.2.22.5)
|
|
39
|
+
activesupport (= 3.2.22.5)
|
|
40
|
+
activesupport (3.2.22.5)
|
|
41
|
+
i18n (~> 0.6, >= 0.6.4)
|
|
42
|
+
multi_json (~> 1.0)
|
|
43
|
+
appraisal (2.1.0)
|
|
44
|
+
bundler
|
|
45
|
+
rake
|
|
46
|
+
thor (>= 0.14.0)
|
|
47
|
+
arel (3.0.3)
|
|
48
|
+
builder (3.0.4)
|
|
49
|
+
byebug (9.0.6)
|
|
50
|
+
coderay (1.1.1)
|
|
51
|
+
diff-lcs (1.3)
|
|
52
|
+
dotenv (2.2.0)
|
|
53
|
+
dotenv-rails (2.2.0)
|
|
54
|
+
dotenv (= 2.2.0)
|
|
55
|
+
railties (>= 3.2, < 5.1)
|
|
56
|
+
erubis (2.7.0)
|
|
57
|
+
excon (0.55.0)
|
|
58
|
+
ffi (1.9.17)
|
|
59
|
+
formatador (0.2.5)
|
|
60
|
+
guard (2.14.1)
|
|
61
|
+
formatador (>= 0.2.4)
|
|
62
|
+
listen (>= 2.7, < 4.0)
|
|
63
|
+
lumberjack (~> 1.0)
|
|
64
|
+
nenv (~> 0.1)
|
|
65
|
+
notiffany (~> 0.0)
|
|
66
|
+
pry (>= 0.9.12)
|
|
67
|
+
shellany (~> 0.0)
|
|
68
|
+
thor (>= 0.18.1)
|
|
69
|
+
guard-compat (1.2.1)
|
|
70
|
+
guard-rspec (4.7.3)
|
|
71
|
+
guard (~> 2.1)
|
|
72
|
+
guard-compat (~> 1.1)
|
|
73
|
+
rspec (>= 2.99.0, < 4.0)
|
|
74
|
+
hashie (3.5.5)
|
|
75
|
+
heroics (0.0.21)
|
|
76
|
+
erubis (~> 2.0)
|
|
77
|
+
excon
|
|
78
|
+
multi_json (>= 1.9.2)
|
|
79
|
+
hike (1.2.3)
|
|
80
|
+
i18n (0.8.1)
|
|
81
|
+
journey (1.0.4)
|
|
82
|
+
json (1.8.6)
|
|
83
|
+
listen (3.1.5)
|
|
84
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
|
85
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
|
86
|
+
ruby_dep (~> 1.2)
|
|
87
|
+
lumberjack (1.0.11)
|
|
88
|
+
mail (2.5.4)
|
|
89
|
+
mime-types (~> 1.16)
|
|
90
|
+
treetop (~> 1.4.8)
|
|
91
|
+
method_source (0.8.2)
|
|
92
|
+
mime-types (1.25.1)
|
|
93
|
+
multi_json (1.12.1)
|
|
94
|
+
nenv (0.3.0)
|
|
95
|
+
newrelic_rpm (3.18.1.330)
|
|
96
|
+
notiffany (0.1.1)
|
|
97
|
+
nenv (~> 0.1)
|
|
98
|
+
shellany (~> 0.0)
|
|
99
|
+
platform-api (0.8.0)
|
|
100
|
+
heroics (~> 0.0.17)
|
|
101
|
+
polyglot (0.3.5)
|
|
102
|
+
pry (0.10.4)
|
|
103
|
+
coderay (~> 1.1.0)
|
|
104
|
+
method_source (~> 0.8.1)
|
|
105
|
+
slop (~> 3.4)
|
|
106
|
+
pry-byebug (3.4.2)
|
|
107
|
+
byebug (~> 9.0)
|
|
108
|
+
pry (~> 0.10)
|
|
109
|
+
rack (1.4.7)
|
|
110
|
+
rack-cache (1.7.0)
|
|
111
|
+
rack (>= 0.4)
|
|
112
|
+
rack-ssl (1.3.4)
|
|
113
|
+
rack
|
|
114
|
+
rack-ssl-enforcer (0.2.9)
|
|
115
|
+
rack-test (0.6.3)
|
|
116
|
+
rack (>= 1.0)
|
|
117
|
+
rack-timeout (0.4.2)
|
|
118
|
+
rails (3.2.22.5)
|
|
119
|
+
actionmailer (= 3.2.22.5)
|
|
120
|
+
actionpack (= 3.2.22.5)
|
|
121
|
+
activerecord (= 3.2.22.5)
|
|
122
|
+
activeresource (= 3.2.22.5)
|
|
123
|
+
activesupport (= 3.2.22.5)
|
|
124
|
+
bundler (~> 1.0)
|
|
125
|
+
railties (= 3.2.22.5)
|
|
126
|
+
railties (3.2.22.5)
|
|
127
|
+
actionpack (= 3.2.22.5)
|
|
128
|
+
activesupport (= 3.2.22.5)
|
|
129
|
+
rack-ssl (~> 1.3.2)
|
|
130
|
+
rake (>= 0.8.7)
|
|
131
|
+
rdoc (~> 3.4)
|
|
132
|
+
thor (>= 0.14.6, < 2.0)
|
|
133
|
+
rake (10.5.0)
|
|
134
|
+
rb-fsevent (0.9.8)
|
|
135
|
+
rb-inotify (0.9.8)
|
|
136
|
+
ffi (>= 0.5.0)
|
|
137
|
+
rdoc (3.12.2)
|
|
138
|
+
json (~> 1.4)
|
|
139
|
+
rspec (3.5.0)
|
|
140
|
+
rspec-core (~> 3.5.0)
|
|
141
|
+
rspec-expectations (~> 3.5.0)
|
|
142
|
+
rspec-mocks (~> 3.5.0)
|
|
143
|
+
rspec-core (3.5.4)
|
|
144
|
+
rspec-support (~> 3.5.0)
|
|
145
|
+
rspec-expectations (3.5.0)
|
|
146
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
147
|
+
rspec-support (~> 3.5.0)
|
|
148
|
+
rspec-mocks (3.5.0)
|
|
149
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
150
|
+
rspec-support (~> 3.5.0)
|
|
151
|
+
rspec-support (3.5.0)
|
|
152
|
+
ruby_dep (1.5.0)
|
|
153
|
+
shellany (0.0.1)
|
|
154
|
+
slop (3.6.0)
|
|
155
|
+
sprockets (2.2.3)
|
|
156
|
+
hike (~> 1.2)
|
|
157
|
+
multi_json (~> 1.0)
|
|
158
|
+
rack (~> 1.0)
|
|
159
|
+
tilt (~> 1.1, != 1.3.0)
|
|
160
|
+
sqlite3 (1.3.13)
|
|
161
|
+
thor (0.19.4)
|
|
162
|
+
tilt (1.4.1)
|
|
163
|
+
treetop (1.4.15)
|
|
164
|
+
polyglot
|
|
165
|
+
polyglot (>= 0.3.1)
|
|
166
|
+
tzinfo (0.3.52)
|
|
167
|
+
|
|
168
|
+
PLATFORMS
|
|
169
|
+
ruby
|
|
170
|
+
|
|
171
|
+
DEPENDENCIES
|
|
172
|
+
appraisal
|
|
173
|
+
bundler (~> 1.13)
|
|
174
|
+
guard
|
|
175
|
+
guard-rspec
|
|
176
|
+
pry-byebug
|
|
177
|
+
rails (~> 3.2)
|
|
178
|
+
rake (~> 10.0)
|
|
179
|
+
roo_on_rails!
|
|
180
|
+
rspec (~> 3.0)
|
|
181
|
+
sqlite3
|
|
182
|
+
thor (~> 0.19)
|
|
183
|
+
|
|
184
|
+
BUNDLED WITH
|
|
185
|
+
1.14.6
|
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: ../
|
|
3
|
+
specs:
|
|
4
|
+
roo_on_rails (1.1.0)
|
|
5
|
+
dotenv-rails (~> 2.1)
|
|
6
|
+
hashie (~> 3.4)
|
|
7
|
+
newrelic_rpm (~> 3.17)
|
|
8
|
+
platform-api (~> 0.8)
|
|
9
|
+
rack-ssl-enforcer
|
|
10
|
+
rack-timeout
|
|
11
|
+
rails (>= 3.2.22, < 5.1)
|
|
12
|
+
|
|
13
|
+
GEM
|
|
14
|
+
remote: https://rubygems.org/
|
|
15
|
+
specs:
|
|
16
|
+
actionmailer (4.2.8)
|
|
17
|
+
actionpack (= 4.2.8)
|
|
18
|
+
actionview (= 4.2.8)
|
|
19
|
+
activejob (= 4.2.8)
|
|
20
|
+
mail (~> 2.5, >= 2.5.4)
|
|
21
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
|
22
|
+
actionpack (4.2.8)
|
|
23
|
+
actionview (= 4.2.8)
|
|
24
|
+
activesupport (= 4.2.8)
|
|
25
|
+
rack (~> 1.6)
|
|
26
|
+
rack-test (~> 0.6.2)
|
|
27
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
|
28
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
|
29
|
+
actionview (4.2.8)
|
|
30
|
+
activesupport (= 4.2.8)
|
|
31
|
+
builder (~> 3.1)
|
|
32
|
+
erubis (~> 2.7.0)
|
|
33
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
|
34
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
|
35
|
+
activejob (4.2.8)
|
|
36
|
+
activesupport (= 4.2.8)
|
|
37
|
+
globalid (>= 0.3.0)
|
|
38
|
+
activemodel (4.2.8)
|
|
39
|
+
activesupport (= 4.2.8)
|
|
40
|
+
builder (~> 3.1)
|
|
41
|
+
activerecord (4.2.8)
|
|
42
|
+
activemodel (= 4.2.8)
|
|
43
|
+
activesupport (= 4.2.8)
|
|
44
|
+
arel (~> 6.0)
|
|
45
|
+
activesupport (4.2.8)
|
|
46
|
+
i18n (~> 0.7)
|
|
47
|
+
minitest (~> 5.1)
|
|
48
|
+
thread_safe (~> 0.3, >= 0.3.4)
|
|
49
|
+
tzinfo (~> 1.1)
|
|
50
|
+
appraisal (2.1.0)
|
|
51
|
+
bundler
|
|
52
|
+
rake
|
|
53
|
+
thor (>= 0.14.0)
|
|
54
|
+
arel (6.0.4)
|
|
55
|
+
builder (3.2.3)
|
|
56
|
+
byebug (9.0.6)
|
|
57
|
+
coderay (1.1.1)
|
|
58
|
+
concurrent-ruby (1.0.5)
|
|
59
|
+
diff-lcs (1.3)
|
|
60
|
+
dotenv (2.2.0)
|
|
61
|
+
dotenv-rails (2.2.0)
|
|
62
|
+
dotenv (= 2.2.0)
|
|
63
|
+
railties (>= 3.2, < 5.1)
|
|
64
|
+
erubis (2.7.0)
|
|
65
|
+
excon (0.55.0)
|
|
66
|
+
ffi (1.9.17)
|
|
67
|
+
formatador (0.2.5)
|
|
68
|
+
globalid (0.3.7)
|
|
69
|
+
activesupport (>= 4.1.0)
|
|
70
|
+
guard (2.14.1)
|
|
71
|
+
formatador (>= 0.2.4)
|
|
72
|
+
listen (>= 2.7, < 4.0)
|
|
73
|
+
lumberjack (~> 1.0)
|
|
74
|
+
nenv (~> 0.1)
|
|
75
|
+
notiffany (~> 0.0)
|
|
76
|
+
pry (>= 0.9.12)
|
|
77
|
+
shellany (~> 0.0)
|
|
78
|
+
thor (>= 0.18.1)
|
|
79
|
+
guard-compat (1.2.1)
|
|
80
|
+
guard-rspec (4.7.3)
|
|
81
|
+
guard (~> 2.1)
|
|
82
|
+
guard-compat (~> 1.1)
|
|
83
|
+
rspec (>= 2.99.0, < 4.0)
|
|
84
|
+
hashie (3.5.5)
|
|
85
|
+
heroics (0.0.21)
|
|
86
|
+
erubis (~> 2.0)
|
|
87
|
+
excon
|
|
88
|
+
multi_json (>= 1.9.2)
|
|
89
|
+
i18n (0.8.1)
|
|
90
|
+
listen (3.1.5)
|
|
91
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
|
92
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
|
93
|
+
ruby_dep (~> 1.2)
|
|
94
|
+
loofah (2.0.3)
|
|
95
|
+
nokogiri (>= 1.5.9)
|
|
96
|
+
lumberjack (1.0.11)
|
|
97
|
+
mail (2.6.4)
|
|
98
|
+
mime-types (>= 1.16, < 4)
|
|
99
|
+
method_source (0.8.2)
|
|
100
|
+
mime-types (3.1)
|
|
101
|
+
mime-types-data (~> 3.2015)
|
|
102
|
+
mime-types-data (3.2016.0521)
|
|
103
|
+
mini_portile2 (2.1.0)
|
|
104
|
+
minitest (5.10.1)
|
|
105
|
+
multi_json (1.12.1)
|
|
106
|
+
nenv (0.3.0)
|
|
107
|
+
newrelic_rpm (3.18.1.330)
|
|
108
|
+
nokogiri (1.7.0.1)
|
|
109
|
+
mini_portile2 (~> 2.1.0)
|
|
110
|
+
notiffany (0.1.1)
|
|
111
|
+
nenv (~> 0.1)
|
|
112
|
+
shellany (~> 0.0)
|
|
113
|
+
platform-api (0.8.0)
|
|
114
|
+
heroics (~> 0.0.17)
|
|
115
|
+
pry (0.10.4)
|
|
116
|
+
coderay (~> 1.1.0)
|
|
117
|
+
method_source (~> 0.8.1)
|
|
118
|
+
slop (~> 3.4)
|
|
119
|
+
pry-byebug (3.4.2)
|
|
120
|
+
byebug (~> 9.0)
|
|
121
|
+
pry (~> 0.10)
|
|
122
|
+
rack (1.6.5)
|
|
123
|
+
rack-ssl-enforcer (0.2.9)
|
|
124
|
+
rack-test (0.6.3)
|
|
125
|
+
rack (>= 1.0)
|
|
126
|
+
rack-timeout (0.4.2)
|
|
127
|
+
rails (4.2.8)
|
|
128
|
+
actionmailer (= 4.2.8)
|
|
129
|
+
actionpack (= 4.2.8)
|
|
130
|
+
actionview (= 4.2.8)
|
|
131
|
+
activejob (= 4.2.8)
|
|
132
|
+
activemodel (= 4.2.8)
|
|
133
|
+
activerecord (= 4.2.8)
|
|
134
|
+
activesupport (= 4.2.8)
|
|
135
|
+
bundler (>= 1.3.0, < 2.0)
|
|
136
|
+
railties (= 4.2.8)
|
|
137
|
+
sprockets-rails
|
|
138
|
+
rails-deprecated_sanitizer (1.0.3)
|
|
139
|
+
activesupport (>= 4.2.0.alpha)
|
|
140
|
+
rails-dom-testing (1.0.8)
|
|
141
|
+
activesupport (>= 4.2.0.beta, < 5.0)
|
|
142
|
+
nokogiri (~> 1.6)
|
|
143
|
+
rails-deprecated_sanitizer (>= 1.0.1)
|
|
144
|
+
rails-html-sanitizer (1.0.3)
|
|
145
|
+
loofah (~> 2.0)
|
|
146
|
+
railties (4.2.8)
|
|
147
|
+
actionpack (= 4.2.8)
|
|
148
|
+
activesupport (= 4.2.8)
|
|
149
|
+
rake (>= 0.8.7)
|
|
150
|
+
thor (>= 0.18.1, < 2.0)
|
|
151
|
+
rake (10.5.0)
|
|
152
|
+
rb-fsevent (0.9.8)
|
|
153
|
+
rb-inotify (0.9.8)
|
|
154
|
+
ffi (>= 0.5.0)
|
|
155
|
+
rspec (3.5.0)
|
|
156
|
+
rspec-core (~> 3.5.0)
|
|
157
|
+
rspec-expectations (~> 3.5.0)
|
|
158
|
+
rspec-mocks (~> 3.5.0)
|
|
159
|
+
rspec-core (3.5.4)
|
|
160
|
+
rspec-support (~> 3.5.0)
|
|
161
|
+
rspec-expectations (3.5.0)
|
|
162
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
163
|
+
rspec-support (~> 3.5.0)
|
|
164
|
+
rspec-mocks (3.5.0)
|
|
165
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
166
|
+
rspec-support (~> 3.5.0)
|
|
167
|
+
rspec-support (3.5.0)
|
|
168
|
+
ruby_dep (1.5.0)
|
|
169
|
+
shellany (0.0.1)
|
|
170
|
+
slop (3.6.0)
|
|
171
|
+
sprockets (3.7.1)
|
|
172
|
+
concurrent-ruby (~> 1.0)
|
|
173
|
+
rack (> 1, < 3)
|
|
174
|
+
sprockets-rails (3.2.0)
|
|
175
|
+
actionpack (>= 4.0)
|
|
176
|
+
activesupport (>= 4.0)
|
|
177
|
+
sprockets (>= 3.0.0)
|
|
178
|
+
thor (0.19.4)
|
|
179
|
+
thread_safe (0.3.6)
|
|
180
|
+
tzinfo (1.2.2)
|
|
181
|
+
thread_safe (~> 0.1)
|
|
182
|
+
|
|
183
|
+
PLATFORMS
|
|
184
|
+
ruby
|
|
185
|
+
|
|
186
|
+
DEPENDENCIES
|
|
187
|
+
appraisal
|
|
188
|
+
bundler (~> 1.13)
|
|
189
|
+
guard
|
|
190
|
+
guard-rspec
|
|
191
|
+
pry-byebug
|
|
192
|
+
rails (~> 4.2)
|
|
193
|
+
rake (~> 10.0)
|
|
194
|
+
roo_on_rails!
|
|
195
|
+
rspec (~> 3.0)
|
|
196
|
+
thor (~> 0.19)
|
|
197
|
+
|
|
198
|
+
BUNDLED WITH
|
|
199
|
+
1.14.6
|