routes_coverage 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 899581bd48d52230827553a1a8f94428f7c224cc
4
- data.tar.gz: debceb6a0e49ef3d7b313c2733fc20ce3b08d428
3
+ metadata.gz: ce83a52a40a57bfc4bd67c084dedf7c298054d20
4
+ data.tar.gz: d5b4b24b5b80b324fe541db56ecca305b74dfae6
5
5
  SHA512:
6
- metadata.gz: 452ab35f957e94c2122f89cb8c85599da67ea5ee8710c5090fe236d7b50a83d135221d42764fdb00d72309ebf85ea29b3e6047e30e1ef1b02dd4bc7e7ffd46f6
7
- data.tar.gz: d0288d1afe2888e8118d09f2758acf8847cab1567b88dad93d59cfd5a84423095f2a6a6af4f4dd2206dbbc33f50d1556b40667611e93c491d3f8313fe5e2c924
6
+ metadata.gz: 7e517401d53af0ca8c5955d1e593d54045e2334fe228331e24f9f3651ff1b1e692b3d311b72324e98b72a4d59b55ba112b383b9c70ddcbcec9d6fc8be1170af6
7
+ data.tar.gz: 78846c5906ca5fc841b099d257ca3a92d8f8984fa751baa8f5ba20775c4e8f421288902f7d38013611189ea5008b83527aa247d7ad61bee1ced477638ac3f499
data/.gitignore CHANGED
@@ -9,3 +9,4 @@
9
9
  /tmp/
10
10
  /log/
11
11
  /coverage/
12
+ /gemfiles/*.lock
@@ -1,3 +1,5 @@
1
+ require 'rspec/core'
2
+
1
3
  RSpec.configure do |config|
2
4
  config.add_setting :routes_coverage
3
5
  config.routes_coverage = RoutesCoverage.settings
@@ -3,8 +3,10 @@ module RoutesCoverage
3
3
  class SimpleCov
4
4
  def self.use
5
5
  RoutesCoverage.reset!
6
+ prev_block = ::SimpleCov.at_exit
6
7
  ::SimpleCov.at_exit{
7
8
  RoutesCoverage.perform_report
9
+ prev_block.call
8
10
  }
9
11
  end
10
12
  end
@@ -1,3 +1,3 @@
1
1
  module RoutesCoverage
2
- VERSION = "0.4.0"
2
+ VERSION = "0.4.1"
3
3
  end
@@ -151,14 +151,15 @@ module RoutesCoverage
151
151
  end
152
152
 
153
153
  if RoutesCoverage.enabled?
154
- if defined? SimpleCov
155
- #TODO: use SimpleCov.at_exit
156
- end
157
-
158
- if defined? RSpec
159
- require "routes_coverage/adapters/rspec"
154
+ if defined?(SimpleCov) && SimpleCov.running
155
+ require 'routes_coverage/adapters/simplecov'
156
+ RoutesCoverage::Adapters::SimpleCov.use
160
157
  else
161
- require "routes_coverage/adapters/atexit"
162
- RoutesCoverage::Adapters::AtExit.use
158
+ if defined? RSpec
159
+ require "routes_coverage/adapters/rspec"
160
+ else
161
+ require "routes_coverage/adapters/atexit"
162
+ RoutesCoverage::Adapters::AtExit.use
163
+ end
163
164
  end
164
165
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: routes_coverage
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vasily Fedoseyev
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-06-26 00:00:00.000000000 Z
11
+ date: 2017-09-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -88,19 +88,12 @@ files:
88
88
  - compiled_assets/routes.js
89
89
  - gemfiles/.bundle/config
90
90
  - gemfiles/rails_3.gemfile
91
- - gemfiles/rails_3.gemfile.lock
92
91
  - gemfiles/rails_40.gemfile
93
- - gemfiles/rails_40.gemfile.lock
94
92
  - gemfiles/rails_40_rspec.gemfile
95
- - gemfiles/rails_40_rspec.gemfile.lock
96
93
  - gemfiles/rails_40_simplecov.gemfile
97
- - gemfiles/rails_40_simplecov.gemfile.lock
98
94
  - gemfiles/rails_42.gemfile
99
- - gemfiles/rails_42.gemfile.lock
100
95
  - gemfiles/rails_5.gemfile
101
- - gemfiles/rails_5.gemfile.lock
102
96
  - gemfiles/rails_51.gemfile
103
- - gemfiles/rails_51.gemfile.lock
104
97
  - lib/routes_coverage.rb
105
98
  - lib/routes_coverage/adapters/atexit.rb
106
99
  - lib/routes_coverage/adapters/rspec.rb
@@ -135,7 +128,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
135
128
  version: '0'
136
129
  requirements: []
137
130
  rubyforge_project:
138
- rubygems_version: 2.5.1
131
+ rubygems_version: 2.6.12
139
132
  signing_key:
140
133
  specification_version: 4
141
134
  summary: Provides coverage report for your rails routes
@@ -1,117 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- routes_coverage (0.4.0)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- actionmailer (3.2.22.5)
10
- actionpack (= 3.2.22.5)
11
- mail (~> 2.5.4)
12
- actionpack (3.2.22.5)
13
- activemodel (= 3.2.22.5)
14
- activesupport (= 3.2.22.5)
15
- builder (~> 3.0.0)
16
- erubis (~> 2.7.0)
17
- journey (~> 1.0.4)
18
- rack (~> 1.4.5)
19
- rack-cache (~> 1.2)
20
- rack-test (~> 0.6.1)
21
- sprockets (~> 2.2.1)
22
- activemodel (3.2.22.5)
23
- activesupport (= 3.2.22.5)
24
- builder (~> 3.0.0)
25
- activerecord (3.2.22.5)
26
- activemodel (= 3.2.22.5)
27
- activesupport (= 3.2.22.5)
28
- arel (~> 3.0.2)
29
- tzinfo (~> 0.3.29)
30
- activeresource (3.2.22.5)
31
- activemodel (= 3.2.22.5)
32
- activesupport (= 3.2.22.5)
33
- activesupport (3.2.22.5)
34
- i18n (~> 0.6, >= 0.6.4)
35
- multi_json (~> 1.0)
36
- appraisal (2.2.0)
37
- bundler
38
- rake
39
- thor (>= 0.14.0)
40
- arel (3.0.3)
41
- builder (3.0.4)
42
- docile (1.1.5)
43
- erubis (2.7.0)
44
- hike (1.2.3)
45
- i18n (0.8.4)
46
- journey (1.0.4)
47
- json (1.8.6)
48
- mail (2.5.4)
49
- mime-types (~> 1.16)
50
- treetop (~> 1.4.8)
51
- mime-types (1.25.1)
52
- minitest (5.10.2)
53
- multi_json (1.12.1)
54
- polyglot (0.3.5)
55
- power_assert (0.3.1)
56
- rack (1.4.7)
57
- rack-cache (1.6.1)
58
- rack (>= 0.4)
59
- rack-ssl (1.3.4)
60
- rack
61
- rack-test (0.6.3)
62
- rack (>= 1.0)
63
- rails (3.2.22.5)
64
- actionmailer (= 3.2.22.5)
65
- actionpack (= 3.2.22.5)
66
- activerecord (= 3.2.22.5)
67
- activeresource (= 3.2.22.5)
68
- activesupport (= 3.2.22.5)
69
- bundler (~> 1.0)
70
- railties (= 3.2.22.5)
71
- railties (3.2.22.5)
72
- actionpack (= 3.2.22.5)
73
- activesupport (= 3.2.22.5)
74
- rack-ssl (~> 1.3.2)
75
- rake (>= 0.8.7)
76
- rdoc (~> 3.4)
77
- thor (>= 0.14.6, < 2.0)
78
- rake (10.5.0)
79
- rdoc (3.12.2)
80
- json (~> 1.4)
81
- sass (3.4.24)
82
- simplecov (0.14.1)
83
- docile (~> 1.1.0)
84
- json (>= 1.8, < 3)
85
- simplecov-html (~> 0.10.0)
86
- simplecov-html (0.10.1)
87
- sprockets (2.2.3)
88
- hike (~> 1.2)
89
- multi_json (~> 1.0)
90
- rack (~> 1.0)
91
- tilt (~> 1.1, != 1.3.0)
92
- test-unit (3.2.2)
93
- power_assert
94
- thor (0.19.4)
95
- tilt (1.4.1)
96
- treetop (1.4.15)
97
- polyglot
98
- polyglot (>= 0.3.1)
99
- tzinfo (0.3.53)
100
-
101
- PLATFORMS
102
- ruby
103
-
104
- DEPENDENCIES
105
- appraisal
106
- bundler (~> 1.14)
107
- minitest
108
- rails (~> 3.2.22)
109
- rake (~> 10.0)
110
- routes_coverage!
111
- sass
112
- simplecov
113
- sprockets
114
- test-unit
115
-
116
- BUNDLED WITH
117
- 1.15.1
@@ -1,100 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- routes_coverage (0.4.0)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- actionmailer (4.0.13)
10
- actionpack (= 4.0.13)
11
- mail (~> 2.5, >= 2.5.4)
12
- actionpack (4.0.13)
13
- activesupport (= 4.0.13)
14
- builder (~> 3.1.0)
15
- erubis (~> 2.7.0)
16
- rack (~> 1.5.2)
17
- rack-test (~> 0.6.2)
18
- activemodel (4.0.13)
19
- activesupport (= 4.0.13)
20
- builder (~> 3.1.0)
21
- activerecord (4.0.13)
22
- activemodel (= 4.0.13)
23
- activerecord-deprecated_finders (~> 1.0.2)
24
- activesupport (= 4.0.13)
25
- arel (~> 4.0.0)
26
- activerecord-deprecated_finders (1.0.4)
27
- activesupport (4.0.13)
28
- i18n (~> 0.6, >= 0.6.9)
29
- minitest (~> 4.2)
30
- multi_json (~> 1.3)
31
- thread_safe (~> 0.1)
32
- tzinfo (~> 0.3.37)
33
- appraisal (2.1.0)
34
- bundler
35
- rake
36
- thor (>= 0.14.0)
37
- arel (4.0.2)
38
- builder (3.1.4)
39
- concurrent-ruby (1.0.5)
40
- docile (1.1.5)
41
- erubis (2.7.0)
42
- i18n (0.8.1)
43
- json (2.0.2)
44
- mail (2.6.5)
45
- mime-types (>= 1.16, < 4)
46
- mime-types (3.1)
47
- mime-types-data (~> 3.2015)
48
- mime-types-data (3.2016.0521)
49
- minitest (4.7.5)
50
- multi_json (1.12.1)
51
- rack (1.5.5)
52
- rack-test (0.6.3)
53
- rack (>= 1.0)
54
- rails (4.0.13)
55
- actionmailer (= 4.0.13)
56
- actionpack (= 4.0.13)
57
- activerecord (= 4.0.13)
58
- activesupport (= 4.0.13)
59
- bundler (>= 1.3.0, < 2.0)
60
- railties (= 4.0.13)
61
- sprockets-rails (~> 2.0)
62
- railties (4.0.13)
63
- actionpack (= 4.0.13)
64
- activesupport (= 4.0.13)
65
- rake (>= 0.8.7)
66
- thor (>= 0.18.1, < 2.0)
67
- rake (10.5.0)
68
- sass (3.4.22)
69
- simplecov (0.14.1)
70
- docile (~> 1.1.0)
71
- json (>= 1.8, < 3)
72
- simplecov-html (~> 0.10.0)
73
- simplecov-html (0.10.0)
74
- sprockets (3.7.1)
75
- concurrent-ruby (~> 1.0)
76
- rack (> 1, < 3)
77
- sprockets-rails (2.3.3)
78
- actionpack (>= 3.0)
79
- activesupport (>= 3.0)
80
- sprockets (>= 2.8, < 4.0)
81
- thor (0.19.4)
82
- thread_safe (0.3.6)
83
- tzinfo (0.3.53)
84
-
85
- PLATFORMS
86
- ruby
87
-
88
- DEPENDENCIES
89
- appraisal
90
- bundler (~> 1.14)
91
- minitest
92
- rails (~> 4.0.0)
93
- rake (~> 10.0)
94
- routes_coverage!
95
- sass
96
- simplecov
97
- sprockets
98
-
99
- BUNDLED WITH
100
- 1.15.1
@@ -1,119 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- routes_coverage (0.4.0)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- actionmailer (4.0.13)
10
- actionpack (= 4.0.13)
11
- mail (~> 2.5, >= 2.5.4)
12
- actionpack (4.0.13)
13
- activesupport (= 4.0.13)
14
- builder (~> 3.1.0)
15
- erubis (~> 2.7.0)
16
- rack (~> 1.5.2)
17
- rack-test (~> 0.6.2)
18
- activemodel (4.0.13)
19
- activesupport (= 4.0.13)
20
- builder (~> 3.1.0)
21
- activerecord (4.0.13)
22
- activemodel (= 4.0.13)
23
- activerecord-deprecated_finders (~> 1.0.2)
24
- activesupport (= 4.0.13)
25
- arel (~> 4.0.0)
26
- activerecord-deprecated_finders (1.0.4)
27
- activesupport (4.0.13)
28
- i18n (~> 0.6, >= 0.6.9)
29
- minitest (~> 4.2)
30
- multi_json (~> 1.3)
31
- thread_safe (~> 0.1)
32
- tzinfo (~> 0.3.37)
33
- appraisal (2.2.0)
34
- bundler
35
- rake
36
- thor (>= 0.14.0)
37
- arel (4.0.2)
38
- builder (3.1.4)
39
- concurrent-ruby (1.0.5)
40
- diff-lcs (1.2.5)
41
- docile (1.1.5)
42
- erubis (2.7.0)
43
- i18n (0.8.1)
44
- json (2.0.2)
45
- mail (2.6.5)
46
- mime-types (>= 1.16, < 4)
47
- mime-types (3.1)
48
- mime-types-data (~> 3.2015)
49
- mime-types-data (3.2016.0521)
50
- minitest (4.7.5)
51
- multi_json (1.12.1)
52
- rack (1.5.5)
53
- rack-test (0.6.3)
54
- rack (>= 1.0)
55
- rails (4.0.13)
56
- actionmailer (= 4.0.13)
57
- actionpack (= 4.0.13)
58
- activerecord (= 4.0.13)
59
- activesupport (= 4.0.13)
60
- bundler (>= 1.3.0, < 2.0)
61
- railties (= 4.0.13)
62
- sprockets-rails (~> 2.0)
63
- railties (4.0.13)
64
- actionpack (= 4.0.13)
65
- activesupport (= 4.0.13)
66
- rake (>= 0.8.7)
67
- thor (>= 0.18.1, < 2.0)
68
- rake (10.5.0)
69
- rspec-core (3.5.4)
70
- rspec-support (~> 3.5.0)
71
- rspec-expectations (3.5.0)
72
- diff-lcs (>= 1.2.0, < 2.0)
73
- rspec-support (~> 3.5.0)
74
- rspec-mocks (3.5.0)
75
- diff-lcs (>= 1.2.0, < 2.0)
76
- rspec-support (~> 3.5.0)
77
- rspec-rails (3.5.2)
78
- actionpack (>= 3.0)
79
- activesupport (>= 3.0)
80
- railties (>= 3.0)
81
- rspec-core (~> 3.5.0)
82
- rspec-expectations (~> 3.5.0)
83
- rspec-mocks (~> 3.5.0)
84
- rspec-support (~> 3.5.0)
85
- rspec-support (3.5.0)
86
- sass (3.4.22)
87
- simplecov (0.14.1)
88
- docile (~> 1.1.0)
89
- json (>= 1.8, < 3)
90
- simplecov-html (~> 0.10.0)
91
- simplecov-html (0.10.0)
92
- sprockets (3.7.1)
93
- concurrent-ruby (~> 1.0)
94
- rack (> 1, < 3)
95
- sprockets-rails (2.3.3)
96
- actionpack (>= 3.0)
97
- activesupport (>= 3.0)
98
- sprockets (>= 2.8, < 4.0)
99
- thor (0.19.4)
100
- thread_safe (0.3.6)
101
- tzinfo (0.3.53)
102
-
103
- PLATFORMS
104
- ruby
105
-
106
- DEPENDENCIES
107
- appraisal
108
- bundler (~> 1.14)
109
- minitest
110
- rails (~> 4.0.0)
111
- rake (~> 10.0)
112
- routes_coverage!
113
- rspec-rails
114
- sass
115
- simplecov
116
- sprockets
117
-
118
- BUNDLED WITH
119
- 1.15.1
@@ -1,100 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- routes_coverage (0.4.0)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- actionmailer (4.0.13)
10
- actionpack (= 4.0.13)
11
- mail (~> 2.5, >= 2.5.4)
12
- actionpack (4.0.13)
13
- activesupport (= 4.0.13)
14
- builder (~> 3.1.0)
15
- erubis (~> 2.7.0)
16
- rack (~> 1.5.2)
17
- rack-test (~> 0.6.2)
18
- activemodel (4.0.13)
19
- activesupport (= 4.0.13)
20
- builder (~> 3.1.0)
21
- activerecord (4.0.13)
22
- activemodel (= 4.0.13)
23
- activerecord-deprecated_finders (~> 1.0.2)
24
- activesupport (= 4.0.13)
25
- arel (~> 4.0.0)
26
- activerecord-deprecated_finders (1.0.4)
27
- activesupport (4.0.13)
28
- i18n (~> 0.6, >= 0.6.9)
29
- minitest (~> 4.2)
30
- multi_json (~> 1.3)
31
- thread_safe (~> 0.1)
32
- tzinfo (~> 0.3.37)
33
- appraisal (2.2.0)
34
- bundler
35
- rake
36
- thor (>= 0.14.0)
37
- arel (4.0.2)
38
- builder (3.1.4)
39
- concurrent-ruby (1.0.5)
40
- docile (1.1.5)
41
- erubis (2.7.0)
42
- i18n (0.8.1)
43
- json (1.8.6)
44
- mail (2.6.5)
45
- mime-types (>= 1.16, < 4)
46
- mime-types (3.1)
47
- mime-types-data (~> 3.2015)
48
- mime-types-data (3.2016.0521)
49
- minitest (4.7.5)
50
- multi_json (1.12.1)
51
- rack (1.5.5)
52
- rack-test (0.6.3)
53
- rack (>= 1.0)
54
- rails (4.0.13)
55
- actionmailer (= 4.0.13)
56
- actionpack (= 4.0.13)
57
- activerecord (= 4.0.13)
58
- activesupport (= 4.0.13)
59
- bundler (>= 1.3.0, < 2.0)
60
- railties (= 4.0.13)
61
- sprockets-rails (~> 2.0)
62
- railties (4.0.13)
63
- actionpack (= 4.0.13)
64
- activesupport (= 4.0.13)
65
- rake (>= 0.8.7)
66
- thor (>= 0.18.1, < 2.0)
67
- rake (10.5.0)
68
- sass (3.4.22)
69
- simplecov (0.14.1)
70
- docile (~> 1.1.0)
71
- json (>= 1.8, < 3)
72
- simplecov-html (~> 0.10.0)
73
- simplecov-html (0.10.0)
74
- sprockets (3.7.1)
75
- concurrent-ruby (~> 1.0)
76
- rack (> 1, < 3)
77
- sprockets-rails (2.3.3)
78
- actionpack (>= 3.0)
79
- activesupport (>= 3.0)
80
- sprockets (>= 2.8, < 4.0)
81
- thor (0.19.4)
82
- thread_safe (0.3.6)
83
- tzinfo (0.3.53)
84
-
85
- PLATFORMS
86
- ruby
87
-
88
- DEPENDENCIES
89
- appraisal
90
- bundler (~> 1.14)
91
- minitest
92
- rails (~> 4.0.0)
93
- rake (~> 10.0)
94
- routes_coverage!
95
- sass
96
- simplecov
97
- sprockets
98
-
99
- BUNDLED WITH
100
- 1.15.1
@@ -1,129 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- routes_coverage (0.4.0)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- actionmailer (4.2.7.1)
10
- actionpack (= 4.2.7.1)
11
- actionview (= 4.2.7.1)
12
- activejob (= 4.2.7.1)
13
- mail (~> 2.5, >= 2.5.4)
14
- rails-dom-testing (~> 1.0, >= 1.0.5)
15
- actionpack (4.2.7.1)
16
- actionview (= 4.2.7.1)
17
- activesupport (= 4.2.7.1)
18
- rack (~> 1.6)
19
- rack-test (~> 0.6.2)
20
- rails-dom-testing (~> 1.0, >= 1.0.5)
21
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
22
- actionview (4.2.7.1)
23
- activesupport (= 4.2.7.1)
24
- builder (~> 3.1)
25
- erubis (~> 2.7.0)
26
- rails-dom-testing (~> 1.0, >= 1.0.5)
27
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- activejob (4.2.7.1)
29
- activesupport (= 4.2.7.1)
30
- globalid (>= 0.3.0)
31
- activemodel (4.2.7.1)
32
- activesupport (= 4.2.7.1)
33
- builder (~> 3.1)
34
- activerecord (4.2.7.1)
35
- activemodel (= 4.2.7.1)
36
- activesupport (= 4.2.7.1)
37
- arel (~> 6.0)
38
- activesupport (4.2.7.1)
39
- i18n (~> 0.7)
40
- json (~> 1.7, >= 1.7.7)
41
- minitest (~> 5.1)
42
- thread_safe (~> 0.3, >= 0.3.4)
43
- tzinfo (~> 1.1)
44
- appraisal (2.1.0)
45
- bundler
46
- rake
47
- thor (>= 0.14.0)
48
- arel (6.0.3)
49
- builder (3.2.3)
50
- concurrent-ruby (1.0.5)
51
- docile (1.1.5)
52
- erubis (2.7.0)
53
- globalid (0.3.7)
54
- activesupport (>= 4.1.0)
55
- i18n (0.8.1)
56
- json (1.8.6)
57
- loofah (2.0.3)
58
- nokogiri (>= 1.5.9)
59
- mail (2.6.5)
60
- mime-types (>= 1.16, < 4)
61
- mime-types (3.1)
62
- mime-types-data (~> 3.2015)
63
- mime-types-data (3.2016.0521)
64
- mini_portile2 (2.1.0)
65
- minitest (5.10.1)
66
- nokogiri (1.6.8.1)
67
- mini_portile2 (~> 2.1.0)
68
- rack (1.6.4)
69
- rack-test (0.6.3)
70
- rack (>= 1.0)
71
- rails (4.2.7.1)
72
- actionmailer (= 4.2.7.1)
73
- actionpack (= 4.2.7.1)
74
- actionview (= 4.2.7.1)
75
- activejob (= 4.2.7.1)
76
- activemodel (= 4.2.7.1)
77
- activerecord (= 4.2.7.1)
78
- activesupport (= 4.2.7.1)
79
- bundler (>= 1.3.0, < 2.0)
80
- railties (= 4.2.7.1)
81
- sprockets-rails
82
- rails-deprecated_sanitizer (1.0.3)
83
- activesupport (>= 4.2.0.alpha)
84
- rails-dom-testing (1.0.7)
85
- activesupport (>= 4.2.0.beta, < 5.0)
86
- nokogiri (~> 1.6.0)
87
- rails-deprecated_sanitizer (>= 1.0.1)
88
- rails-html-sanitizer (1.0.3)
89
- loofah (~> 2.0)
90
- railties (4.2.7.1)
91
- actionpack (= 4.2.7.1)
92
- activesupport (= 4.2.7.1)
93
- rake (>= 0.8.7)
94
- thor (>= 0.18.1, < 2.0)
95
- rake (10.5.0)
96
- sass (3.4.22)
97
- simplecov (0.14.1)
98
- docile (~> 1.1.0)
99
- json (>= 1.8, < 3)
100
- simplecov-html (~> 0.10.0)
101
- simplecov-html (0.10.0)
102
- sprockets (3.7.1)
103
- concurrent-ruby (~> 1.0)
104
- rack (> 1, < 3)
105
- sprockets-rails (3.2.0)
106
- actionpack (>= 4.0)
107
- activesupport (>= 4.0)
108
- sprockets (>= 3.0.0)
109
- thor (0.19.4)
110
- thread_safe (0.3.6)
111
- tzinfo (1.2.2)
112
- thread_safe (~> 0.1)
113
-
114
- PLATFORMS
115
- ruby
116
-
117
- DEPENDENCIES
118
- appraisal
119
- bundler (~> 1.14)
120
- minitest
121
- rails (~> 4.2.0)
122
- rake (~> 10.0)
123
- routes_coverage!
124
- sass
125
- simplecov
126
- sprockets
127
-
128
- BUNDLED WITH
129
- 1.15.1
@@ -1,135 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- routes_coverage (0.4.0)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- actioncable (5.0.2)
10
- actionpack (= 5.0.2)
11
- nio4r (>= 1.2, < 3.0)
12
- websocket-driver (~> 0.6.1)
13
- actionmailer (5.0.2)
14
- actionpack (= 5.0.2)
15
- actionview (= 5.0.2)
16
- activejob (= 5.0.2)
17
- mail (~> 2.5, >= 2.5.4)
18
- rails-dom-testing (~> 2.0)
19
- actionpack (5.0.2)
20
- actionview (= 5.0.2)
21
- activesupport (= 5.0.2)
22
- rack (~> 2.0)
23
- rack-test (~> 0.6.3)
24
- rails-dom-testing (~> 2.0)
25
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
26
- actionview (5.0.2)
27
- activesupport (= 5.0.2)
28
- builder (~> 3.1)
29
- erubis (~> 2.7.0)
30
- rails-dom-testing (~> 2.0)
31
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
32
- activejob (5.0.2)
33
- activesupport (= 5.0.2)
34
- globalid (>= 0.3.6)
35
- activemodel (5.0.2)
36
- activesupport (= 5.0.2)
37
- activerecord (5.0.2)
38
- activemodel (= 5.0.2)
39
- activesupport (= 5.0.2)
40
- arel (~> 7.0)
41
- activesupport (5.0.2)
42
- concurrent-ruby (~> 1.0, >= 1.0.2)
43
- i18n (~> 0.7)
44
- minitest (~> 5.1)
45
- tzinfo (~> 1.1)
46
- appraisal (2.2.0)
47
- bundler
48
- rake
49
- thor (>= 0.14.0)
50
- arel (7.1.4)
51
- builder (3.2.3)
52
- concurrent-ruby (1.0.5)
53
- docile (1.1.5)
54
- erubis (2.7.0)
55
- globalid (0.4.0)
56
- activesupport (>= 4.2.0)
57
- i18n (0.8.1)
58
- json (2.0.2)
59
- loofah (2.0.3)
60
- nokogiri (>= 1.5.9)
61
- mail (2.6.5)
62
- mime-types (>= 1.16, < 4)
63
- method_source (0.8.2)
64
- mime-types (3.1)
65
- mime-types-data (~> 3.2015)
66
- mime-types-data (3.2016.0521)
67
- mini_portile2 (2.1.0)
68
- minitest (5.10.2)
69
- nio4r (2.0.0)
70
- nokogiri (1.7.2)
71
- mini_portile2 (~> 2.1.0)
72
- rack (2.0.2)
73
- rack-test (0.6.3)
74
- rack (>= 1.0)
75
- rails (5.0.2)
76
- actioncable (= 5.0.2)
77
- actionmailer (= 5.0.2)
78
- actionpack (= 5.0.2)
79
- actionview (= 5.0.2)
80
- activejob (= 5.0.2)
81
- activemodel (= 5.0.2)
82
- activerecord (= 5.0.2)
83
- activesupport (= 5.0.2)
84
- bundler (>= 1.3.0, < 2.0)
85
- railties (= 5.0.2)
86
- sprockets-rails (>= 2.0.0)
87
- rails-dom-testing (2.0.3)
88
- activesupport (>= 4.2.0)
89
- nokogiri (>= 1.6)
90
- rails-html-sanitizer (1.0.3)
91
- loofah (~> 2.0)
92
- railties (5.0.2)
93
- actionpack (= 5.0.2)
94
- activesupport (= 5.0.2)
95
- method_source
96
- rake (>= 0.8.7)
97
- thor (>= 0.18.1, < 2.0)
98
- rake (10.5.0)
99
- sass (3.4.22)
100
- simplecov (0.14.1)
101
- docile (~> 1.1.0)
102
- json (>= 1.8, < 3)
103
- simplecov-html (~> 0.10.0)
104
- simplecov-html (0.10.0)
105
- sprockets (3.7.1)
106
- concurrent-ruby (~> 1.0)
107
- rack (> 1, < 3)
108
- sprockets-rails (3.2.0)
109
- actionpack (>= 4.0)
110
- activesupport (>= 4.0)
111
- sprockets (>= 3.0.0)
112
- thor (0.19.4)
113
- thread_safe (0.3.6)
114
- tzinfo (1.2.3)
115
- thread_safe (~> 0.1)
116
- websocket-driver (0.6.5)
117
- websocket-extensions (>= 0.1.0)
118
- websocket-extensions (0.1.2)
119
-
120
- PLATFORMS
121
- ruby
122
-
123
- DEPENDENCIES
124
- appraisal
125
- bundler (~> 1.14)
126
- minitest
127
- rails (~> 5.0.0)
128
- rake (~> 10.0)
129
- routes_coverage!
130
- sass
131
- simplecov
132
- sprockets
133
-
134
- BUNDLED WITH
135
- 1.15.1
@@ -1,135 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- routes_coverage (0.4.0)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- actioncable (5.1.0)
10
- actionpack (= 5.1.0)
11
- nio4r (~> 2.0)
12
- websocket-driver (~> 0.6.1)
13
- actionmailer (5.1.0)
14
- actionpack (= 5.1.0)
15
- actionview (= 5.1.0)
16
- activejob (= 5.1.0)
17
- mail (~> 2.5, >= 2.5.4)
18
- rails-dom-testing (~> 2.0)
19
- actionpack (5.1.0)
20
- actionview (= 5.1.0)
21
- activesupport (= 5.1.0)
22
- rack (~> 2.0)
23
- rack-test (~> 0.6.3)
24
- rails-dom-testing (~> 2.0)
25
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
26
- actionview (5.1.0)
27
- activesupport (= 5.1.0)
28
- builder (~> 3.1)
29
- erubi (~> 1.4)
30
- rails-dom-testing (~> 2.0)
31
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
32
- activejob (5.1.0)
33
- activesupport (= 5.1.0)
34
- globalid (>= 0.3.6)
35
- activemodel (5.1.0)
36
- activesupport (= 5.1.0)
37
- activerecord (5.1.0)
38
- activemodel (= 5.1.0)
39
- activesupport (= 5.1.0)
40
- arel (~> 8.0)
41
- activesupport (5.1.0)
42
- concurrent-ruby (~> 1.0, >= 1.0.2)
43
- i18n (~> 0.7)
44
- minitest (~> 5.1)
45
- tzinfo (~> 1.1)
46
- appraisal (2.2.0)
47
- bundler
48
- rake
49
- thor (>= 0.14.0)
50
- arel (8.0.0)
51
- builder (3.2.3)
52
- concurrent-ruby (1.0.5)
53
- docile (1.1.5)
54
- erubi (1.6.0)
55
- globalid (0.4.0)
56
- activesupport (>= 4.2.0)
57
- i18n (0.8.1)
58
- json (2.0.2)
59
- loofah (2.0.3)
60
- nokogiri (>= 1.5.9)
61
- mail (2.6.5)
62
- mime-types (>= 1.16, < 4)
63
- method_source (0.8.2)
64
- mime-types (3.1)
65
- mime-types-data (~> 3.2015)
66
- mime-types-data (3.2016.0521)
67
- mini_portile2 (2.1.0)
68
- minitest (5.10.2)
69
- nio4r (2.0.0)
70
- nokogiri (1.7.2)
71
- mini_portile2 (~> 2.1.0)
72
- rack (2.0.2)
73
- rack-test (0.6.3)
74
- rack (>= 1.0)
75
- rails (5.1.0)
76
- actioncable (= 5.1.0)
77
- actionmailer (= 5.1.0)
78
- actionpack (= 5.1.0)
79
- actionview (= 5.1.0)
80
- activejob (= 5.1.0)
81
- activemodel (= 5.1.0)
82
- activerecord (= 5.1.0)
83
- activesupport (= 5.1.0)
84
- bundler (>= 1.3.0, < 2.0)
85
- railties (= 5.1.0)
86
- sprockets-rails (>= 2.0.0)
87
- rails-dom-testing (2.0.3)
88
- activesupport (>= 4.2.0)
89
- nokogiri (>= 1.6)
90
- rails-html-sanitizer (1.0.3)
91
- loofah (~> 2.0)
92
- railties (5.1.0)
93
- actionpack (= 5.1.0)
94
- activesupport (= 5.1.0)
95
- method_source
96
- rake (>= 0.8.7)
97
- thor (>= 0.18.1, < 2.0)
98
- rake (10.5.0)
99
- sass (3.4.22)
100
- simplecov (0.14.1)
101
- docile (~> 1.1.0)
102
- json (>= 1.8, < 3)
103
- simplecov-html (~> 0.10.0)
104
- simplecov-html (0.10.0)
105
- sprockets (3.7.1)
106
- concurrent-ruby (~> 1.0)
107
- rack (> 1, < 3)
108
- sprockets-rails (3.2.0)
109
- actionpack (>= 4.0)
110
- activesupport (>= 4.0)
111
- sprockets (>= 3.0.0)
112
- thor (0.19.4)
113
- thread_safe (0.3.6)
114
- tzinfo (1.2.3)
115
- thread_safe (~> 0.1)
116
- websocket-driver (0.6.5)
117
- websocket-extensions (>= 0.1.0)
118
- websocket-extensions (0.1.2)
119
-
120
- PLATFORMS
121
- ruby
122
-
123
- DEPENDENCIES
124
- appraisal
125
- bundler (~> 1.14)
126
- minitest
127
- rails (~> 5.1.0)
128
- rake (~> 10.0)
129
- routes_coverage!
130
- sass
131
- simplecov
132
- sprockets
133
-
134
- BUNDLED WITH
135
- 1.15.1