comma 4.1.0 → 4.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. checksums.yaml +5 -5
  2. data/.rubocop.yml +12 -1
  3. data/.rubocop_todo.yml +3 -364
  4. data/.travis.yml +20 -38
  5. data/Appraisals +20 -1
  6. data/Gemfile +5 -1
  7. data/Gemfile.lock +54 -36
  8. data/README.md +59 -0
  9. data/Rakefile +2 -0
  10. data/comma.gemspec +12 -15
  11. data/gemfiles/active5.0.7.2.gemfile +12 -0
  12. data/gemfiles/active5.0.7.2.gemfile.lock +113 -0
  13. data/gemfiles/active5.1.7.gemfile +12 -0
  14. data/gemfiles/active5.1.7.gemfile.lock +113 -0
  15. data/gemfiles/active5.2.4.3.gemfile +12 -0
  16. data/gemfiles/active5.2.4.3.gemfile.lock +113 -0
  17. data/gemfiles/active6.0.3.1.gemfile +12 -0
  18. data/gemfiles/active6.0.3.1.gemfile.lock +113 -0
  19. data/gemfiles/{rails4.2.8.gemfile → rails5.0.7.2.gemfile} +5 -2
  20. data/gemfiles/rails5.0.7.2.gemfile.lock +204 -0
  21. data/gemfiles/{rails4.1.16.gemfile → rails5.1.7.gemfile} +5 -2
  22. data/gemfiles/rails5.1.7.gemfile.lock +204 -0
  23. data/gemfiles/{rails5.0.1.gemfile → rails5.2.4.3.gemfile} +5 -2
  24. data/gemfiles/rails5.2.4.3.gemfile.lock +212 -0
  25. data/gemfiles/{rails4.0.13.gemfile → rails6.0.3.1.gemfile} +4 -2
  26. data/gemfiles/rails6.0.3.1.gemfile.lock +227 -0
  27. data/init.rb +2 -0
  28. data/lib/comma.rb +26 -36
  29. data/lib/comma/array.rb +2 -0
  30. data/lib/comma/data_extractor.rb +7 -9
  31. data/lib/comma/data_mapper_collection.rb +8 -4
  32. data/lib/comma/extractor.rb +2 -6
  33. data/lib/comma/generator.rb +12 -13
  34. data/lib/comma/header_extractor.rb +19 -15
  35. data/lib/comma/mongoid.rb +10 -7
  36. data/lib/comma/object.rb +5 -2
  37. data/lib/comma/relation.rb +16 -10
  38. data/lib/comma/version.rb +3 -1
  39. data/spec/comma/comma_spec.rb +71 -50
  40. data/spec/comma/data_extractor_spec.rb +13 -18
  41. data/spec/comma/header_extractor_spec.rb +8 -15
  42. data/spec/comma/rails/active_record_spec.rb +34 -34
  43. data/spec/comma/rails/data_mapper_collection_spec.rb +4 -4
  44. data/spec/comma/rails/mongoid_spec.rb +8 -8
  45. data/spec/controllers/users_controller_spec.rb +83 -70
  46. data/spec/non_rails_app/ruby_classes.rb +13 -6
  47. data/spec/rails_app/active_record/config.rb +2 -2
  48. data/spec/rails_app/active_record/models.rb +3 -3
  49. data/spec/rails_app/data_mapper/config.rb +1 -1
  50. data/spec/rails_app/mongoid/config.rb +3 -3
  51. data/spec/rails_app/rails_app.rb +13 -13
  52. data/spec/rails_app/tmp/.gitkeep +0 -0
  53. data/spec/spec_helper.rb +21 -5
  54. metadata +29 -46
  55. data/README.markdown +0 -353
  56. data/gemfiles/active4.0.13.gemfile +0 -10
  57. data/gemfiles/active4.0.13.gemfile.lock +0 -107
  58. data/gemfiles/active4.1.16.gemfile +0 -10
  59. data/gemfiles/active4.1.16.gemfile.lock +0 -106
  60. data/gemfiles/active4.2.8.gemfile +0 -10
  61. data/gemfiles/active4.2.8.gemfile.lock +0 -105
  62. data/gemfiles/active5.0.1.gemfile +0 -10
  63. data/gemfiles/active5.0.1.gemfile.lock +0 -104
  64. data/gemfiles/active5.1.0.gemfile +0 -10
  65. data/gemfiles/active5.1.0.gemfile.lock +0 -104
  66. data/gemfiles/rails4.0.13.gemfile.lock +0 -158
  67. data/gemfiles/rails4.1.16.gemfile.lock +0 -163
  68. data/gemfiles/rails4.2.8.gemfile.lock +0 -187
  69. data/gemfiles/rails5.0.1.gemfile.lock +0 -194
  70. data/gemfiles/rails5.1.0.gemfile +0 -11
  71. data/gemfiles/rails5.1.0.gemfile.lock +0 -194
@@ -1,10 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "coveralls", :require => false
6
- gem "rubocop", :require => false
7
- gem "activesupport", "5.1.0"
8
- gem "activerecord", "5.1.0"
9
-
10
- gemspec :path => "../"
@@ -1,104 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- comma (4.1.0)
5
- activesupport (>= 4.0.0, < 5.2)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- activemodel (5.1.0)
11
- activesupport (= 5.1.0)
12
- activerecord (5.1.0)
13
- activemodel (= 5.1.0)
14
- activesupport (= 5.1.0)
15
- arel (~> 8.0)
16
- activesupport (5.1.0)
17
- concurrent-ruby (~> 1.0, >= 1.0.2)
18
- i18n (~> 0.7)
19
- minitest (~> 5.1)
20
- tzinfo (~> 1.1)
21
- appraisal (1.0.3)
22
- bundler
23
- rake
24
- thor (>= 0.14.0)
25
- arel (8.0.0)
26
- ast (2.3.0)
27
- concurrent-ruby (1.0.5)
28
- coveralls (0.8.21)
29
- json (>= 1.8, < 3)
30
- simplecov (~> 0.14.1)
31
- term-ansicolor (~> 1.3)
32
- thor (~> 0.19.4)
33
- tins (~> 1.6)
34
- diff-lcs (1.3)
35
- docile (1.1.5)
36
- i18n (0.8.1)
37
- json (2.1.0)
38
- minitest (5.10.1)
39
- parser (2.4.0.0)
40
- ast (~> 2.2)
41
- powerpack (0.1.1)
42
- rainbow (2.2.2)
43
- rake
44
- rake (10.5.0)
45
- rspec (3.5.0)
46
- rspec-core (~> 3.5.0)
47
- rspec-expectations (~> 3.5.0)
48
- rspec-mocks (~> 3.5.0)
49
- rspec-activemodel-mocks (1.0.3)
50
- activemodel (>= 3.0)
51
- activesupport (>= 3.0)
52
- rspec-mocks (>= 2.99, < 4.0)
53
- rspec-core (3.5.4)
54
- rspec-support (~> 3.5.0)
55
- rspec-expectations (3.5.0)
56
- diff-lcs (>= 1.2.0, < 2.0)
57
- rspec-support (~> 3.5.0)
58
- rspec-its (1.2.0)
59
- rspec-core (>= 3.0.0)
60
- rspec-expectations (>= 3.0.0)
61
- rspec-mocks (3.5.0)
62
- diff-lcs (>= 1.2.0, < 2.0)
63
- rspec-support (~> 3.5.0)
64
- rspec-support (3.5.0)
65
- rubocop (0.48.1)
66
- parser (>= 2.3.3.1, < 3.0)
67
- powerpack (~> 0.1)
68
- rainbow (>= 1.99.1, < 3.0)
69
- ruby-progressbar (~> 1.7)
70
- unicode-display_width (~> 1.0, >= 1.0.1)
71
- ruby-progressbar (1.8.1)
72
- simplecov (0.14.1)
73
- docile (~> 1.1.0)
74
- json (>= 1.8, < 3)
75
- simplecov-html (~> 0.10.0)
76
- simplecov-html (0.10.0)
77
- sqlite3 (1.3.13)
78
- term-ansicolor (1.6.0)
79
- tins (~> 1.0)
80
- thor (0.19.4)
81
- thread_safe (0.3.6)
82
- tins (1.13.2)
83
- tzinfo (1.2.3)
84
- thread_safe (~> 0.1)
85
- unicode-display_width (1.2.1)
86
-
87
- PLATFORMS
88
- ruby
89
-
90
- DEPENDENCIES
91
- activerecord (= 5.1.0)
92
- activesupport (= 5.1.0)
93
- appraisal (~> 1.0.0)
94
- comma!
95
- coveralls
96
- rake (~> 10.5.0)
97
- rspec (~> 3.5.0)
98
- rspec-activemodel-mocks
99
- rspec-its
100
- rubocop
101
- sqlite3 (~> 1.3.11)
102
-
103
- BUNDLED WITH
104
- 1.14.6
@@ -1,158 +0,0 @@
1
- PATH
2
- remote: ../
3
- specs:
4
- comma (4.0.1)
5
- activesupport (>= 4.0.0, < 5.1)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actionmailer (4.0.13)
11
- actionpack (= 4.0.13)
12
- mail (~> 2.5, >= 2.5.4)
13
- actionpack (4.0.13)
14
- activesupport (= 4.0.13)
15
- builder (~> 3.1.0)
16
- erubis (~> 2.7.0)
17
- rack (~> 1.5.2)
18
- rack-test (~> 0.6.2)
19
- activemodel (4.0.13)
20
- activesupport (= 4.0.13)
21
- builder (~> 3.1.0)
22
- activerecord (4.0.13)
23
- activemodel (= 4.0.13)
24
- activerecord-deprecated_finders (~> 1.0.2)
25
- activesupport (= 4.0.13)
26
- arel (~> 4.0.0)
27
- activerecord-deprecated_finders (1.0.4)
28
- activesupport (4.0.13)
29
- i18n (~> 0.6, >= 0.6.9)
30
- minitest (~> 4.2)
31
- multi_json (~> 1.3)
32
- thread_safe (~> 0.1)
33
- tzinfo (~> 0.3.37)
34
- appraisal (1.0.3)
35
- bundler
36
- rake
37
- thor (>= 0.14.0)
38
- arel (4.0.2)
39
- ast (2.3.0)
40
- builder (3.1.4)
41
- concurrent-ruby (1.0.2)
42
- coveralls (0.8.14)
43
- json (>= 1.8, < 3)
44
- simplecov (~> 0.12.0)
45
- term-ansicolor (~> 1.3)
46
- thor (~> 0.19.1)
47
- tins (~> 1.6.0)
48
- diff-lcs (1.2.5)
49
- docile (1.1.5)
50
- erubis (2.7.0)
51
- i18n (0.7.0)
52
- json (2.0.1)
53
- mail (2.6.4)
54
- mime-types (>= 1.16, < 4)
55
- mime-types (3.1)
56
- mime-types-data (~> 3.2015)
57
- mime-types-data (3.2016.0521)
58
- minitest (4.7.5)
59
- multi_json (1.12.1)
60
- parser (2.3.1.4)
61
- ast (~> 2.2)
62
- power_assert (0.2.6)
63
- powerpack (0.1.1)
64
- rack (1.5.5)
65
- rack-test (0.6.3)
66
- rack (>= 1.0)
67
- rails (4.0.13)
68
- actionmailer (= 4.0.13)
69
- actionpack (= 4.0.13)
70
- activerecord (= 4.0.13)
71
- activesupport (= 4.0.13)
72
- bundler (>= 1.3.0, < 2.0)
73
- railties (= 4.0.13)
74
- sprockets-rails (~> 2.0)
75
- railties (4.0.13)
76
- actionpack (= 4.0.13)
77
- activesupport (= 4.0.13)
78
- rake (>= 0.8.7)
79
- thor (>= 0.18.1, < 2.0)
80
- rainbow (2.1.0)
81
- rake (10.5.0)
82
- rspec (3.5.0)
83
- rspec-core (~> 3.5.0)
84
- rspec-expectations (~> 3.5.0)
85
- rspec-mocks (~> 3.5.0)
86
- rspec-activemodel-mocks (1.0.3)
87
- activemodel (>= 3.0)
88
- activesupport (>= 3.0)
89
- rspec-mocks (>= 2.99, < 4.0)
90
- rspec-core (3.5.2)
91
- rspec-support (~> 3.5.0)
92
- rspec-expectations (3.5.0)
93
- diff-lcs (>= 1.2.0, < 2.0)
94
- rspec-support (~> 3.5.0)
95
- rspec-its (1.2.0)
96
- rspec-core (>= 3.0.0)
97
- rspec-expectations (>= 3.0.0)
98
- rspec-mocks (3.5.0)
99
- diff-lcs (>= 1.2.0, < 2.0)
100
- rspec-support (~> 3.5.0)
101
- rspec-rails (3.5.1)
102
- actionpack (>= 3.0)
103
- activesupport (>= 3.0)
104
- railties (>= 3.0)
105
- rspec-core (~> 3.5.0)
106
- rspec-expectations (~> 3.5.0)
107
- rspec-mocks (~> 3.5.0)
108
- rspec-support (~> 3.5.0)
109
- rspec-support (3.5.0)
110
- rubocop (0.43.0)
111
- parser (>= 2.3.1.1, < 3.0)
112
- powerpack (~> 0.1)
113
- rainbow (>= 1.99.1, < 3.0)
114
- ruby-progressbar (~> 1.7)
115
- unicode-display_width (~> 1.0, >= 1.0.1)
116
- ruby-progressbar (1.8.1)
117
- simplecov (0.12.0)
118
- docile (~> 1.1.0)
119
- json (>= 1.8, < 3)
120
- simplecov-html (~> 0.10.0)
121
- simplecov-html (0.10.0)
122
- sprockets (3.6.3)
123
- concurrent-ruby (~> 1.0)
124
- rack (> 1, < 3)
125
- sprockets-rails (2.3.3)
126
- actionpack (>= 3.0)
127
- activesupport (>= 3.0)
128
- sprockets (>= 2.8, < 4.0)
129
- sqlite3 (1.3.11)
130
- term-ansicolor (1.3.2)
131
- tins (~> 1.0)
132
- test-unit (3.1.5)
133
- power_assert
134
- thor (0.19.1)
135
- thread_safe (0.3.5)
136
- tins (1.6.0)
137
- tzinfo (0.3.51)
138
- unicode-display_width (1.1.1)
139
-
140
- PLATFORMS
141
- ruby
142
-
143
- DEPENDENCIES
144
- appraisal (~> 1.0.0)
145
- comma!
146
- coveralls
147
- rails (= 4.0.13)
148
- rake (~> 10.5.0)
149
- rspec (~> 3.5.0)
150
- rspec-activemodel-mocks
151
- rspec-its
152
- rspec-rails
153
- rubocop
154
- sqlite3 (~> 1.3.11)
155
- test-unit
156
-
157
- BUNDLED WITH
158
- 1.13.2
@@ -1,163 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- comma (4.1.0)
5
- activesupport (>= 4.0.0, < 5.2)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actionmailer (4.1.16)
11
- actionpack (= 4.1.16)
12
- actionview (= 4.1.16)
13
- mail (~> 2.5, >= 2.5.4)
14
- actionpack (4.1.16)
15
- actionview (= 4.1.16)
16
- activesupport (= 4.1.16)
17
- rack (~> 1.5.2)
18
- rack-test (~> 0.6.2)
19
- actionview (4.1.16)
20
- activesupport (= 4.1.16)
21
- builder (~> 3.1)
22
- erubis (~> 2.7.0)
23
- activemodel (4.1.16)
24
- activesupport (= 4.1.16)
25
- builder (~> 3.1)
26
- activerecord (4.1.16)
27
- activemodel (= 4.1.16)
28
- activesupport (= 4.1.16)
29
- arel (~> 5.0.0)
30
- activesupport (4.1.16)
31
- i18n (~> 0.6, >= 0.6.9)
32
- json (~> 1.7, >= 1.7.7)
33
- minitest (~> 5.1)
34
- thread_safe (~> 0.1)
35
- tzinfo (~> 1.1)
36
- appraisal (1.0.3)
37
- bundler
38
- rake
39
- thor (>= 0.14.0)
40
- arel (5.0.1.20140414130214)
41
- ast (2.3.0)
42
- builder (3.2.2)
43
- concurrent-ruby (1.0.2)
44
- coveralls (0.8.15)
45
- json (>= 1.8, < 3)
46
- simplecov (~> 0.12.0)
47
- term-ansicolor (~> 1.3)
48
- thor (~> 0.19.1)
49
- tins (>= 1.6.0, < 2)
50
- diff-lcs (1.2.5)
51
- docile (1.1.5)
52
- erubis (2.7.0)
53
- i18n (0.7.0)
54
- json (1.8.3)
55
- mail (2.6.4)
56
- mime-types (>= 1.16, < 4)
57
- mime-types (3.1)
58
- mime-types-data (~> 3.2015)
59
- mime-types-data (3.2016.0521)
60
- minitest (5.9.0)
61
- parser (2.4.0.0)
62
- ast (~> 2.2)
63
- power_assert (0.3.0)
64
- powerpack (0.1.1)
65
- rack (1.5.5)
66
- rack-test (0.6.3)
67
- rack (>= 1.0)
68
- rails (4.1.16)
69
- actionmailer (= 4.1.16)
70
- actionpack (= 4.1.16)
71
- actionview (= 4.1.16)
72
- activemodel (= 4.1.16)
73
- activerecord (= 4.1.16)
74
- activesupport (= 4.1.16)
75
- bundler (>= 1.3.0, < 2.0)
76
- railties (= 4.1.16)
77
- sprockets-rails (~> 2.0)
78
- railties (4.1.16)
79
- actionpack (= 4.1.16)
80
- activesupport (= 4.1.16)
81
- rake (>= 0.8.7)
82
- thor (>= 0.18.1, < 2.0)
83
- rainbow (2.2.2)
84
- rake
85
- rake (10.5.0)
86
- rspec (3.5.0)
87
- rspec-core (~> 3.5.0)
88
- rspec-expectations (~> 3.5.0)
89
- rspec-mocks (~> 3.5.0)
90
- rspec-activemodel-mocks (1.0.3)
91
- activemodel (>= 3.0)
92
- activesupport (>= 3.0)
93
- rspec-mocks (>= 2.99, < 4.0)
94
- rspec-core (3.5.2)
95
- rspec-support (~> 3.5.0)
96
- rspec-expectations (3.5.0)
97
- diff-lcs (>= 1.2.0, < 2.0)
98
- rspec-support (~> 3.5.0)
99
- rspec-its (1.2.0)
100
- rspec-core (>= 3.0.0)
101
- rspec-expectations (>= 3.0.0)
102
- rspec-mocks (3.5.0)
103
- diff-lcs (>= 1.2.0, < 2.0)
104
- rspec-support (~> 3.5.0)
105
- rspec-rails (3.5.1)
106
- actionpack (>= 3.0)
107
- activesupport (>= 3.0)
108
- railties (>= 3.0)
109
- rspec-core (~> 3.5.0)
110
- rspec-expectations (~> 3.5.0)
111
- rspec-mocks (~> 3.5.0)
112
- rspec-support (~> 3.5.0)
113
- rspec-support (3.5.0)
114
- rubocop (0.48.1)
115
- parser (>= 2.3.3.1, < 3.0)
116
- powerpack (~> 0.1)
117
- rainbow (>= 1.99.1, < 3.0)
118
- ruby-progressbar (~> 1.7)
119
- unicode-display_width (~> 1.0, >= 1.0.1)
120
- ruby-progressbar (1.8.1)
121
- simplecov (0.12.0)
122
- docile (~> 1.1.0)
123
- json (>= 1.8, < 3)
124
- simplecov-html (~> 0.10.0)
125
- simplecov-html (0.10.0)
126
- sprockets (3.7.0)
127
- concurrent-ruby (~> 1.0)
128
- rack (> 1, < 3)
129
- sprockets-rails (2.3.3)
130
- actionpack (>= 3.0)
131
- activesupport (>= 3.0)
132
- sprockets (>= 2.8, < 4.0)
133
- sqlite3 (1.3.11)
134
- term-ansicolor (1.3.2)
135
- tins (~> 1.0)
136
- test-unit (3.2.1)
137
- power_assert
138
- thor (0.19.1)
139
- thread_safe (0.3.5)
140
- tins (1.12.0)
141
- tzinfo (1.2.2)
142
- thread_safe (~> 0.1)
143
- unicode-display_width (1.2.1)
144
-
145
- PLATFORMS
146
- ruby
147
-
148
- DEPENDENCIES
149
- appraisal (~> 1.0.0)
150
- comma!
151
- coveralls
152
- rails (= 4.1.16)
153
- rake (~> 10.5.0)
154
- rspec (~> 3.5.0)
155
- rspec-activemodel-mocks
156
- rspec-its
157
- rspec-rails
158
- rubocop
159
- sqlite3 (~> 1.3.11)
160
- test-unit
161
-
162
- BUNDLED WITH
163
- 1.14.6
@@ -1,187 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- comma (4.1.0)
5
- activesupport (>= 4.0.0, < 5.2)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actionmailer (4.2.8)
11
- actionpack (= 4.2.8)
12
- actionview (= 4.2.8)
13
- activejob (= 4.2.8)
14
- mail (~> 2.5, >= 2.5.4)
15
- rails-dom-testing (~> 1.0, >= 1.0.5)
16
- actionpack (4.2.8)
17
- actionview (= 4.2.8)
18
- activesupport (= 4.2.8)
19
- rack (~> 1.6)
20
- rack-test (~> 0.6.2)
21
- rails-dom-testing (~> 1.0, >= 1.0.5)
22
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
23
- actionview (4.2.8)
24
- activesupport (= 4.2.8)
25
- builder (~> 3.1)
26
- erubis (~> 2.7.0)
27
- rails-dom-testing (~> 1.0, >= 1.0.5)
28
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
29
- activejob (4.2.8)
30
- activesupport (= 4.2.8)
31
- globalid (>= 0.3.0)
32
- activemodel (4.2.8)
33
- activesupport (= 4.2.8)
34
- builder (~> 3.1)
35
- activerecord (4.2.8)
36
- activemodel (= 4.2.8)
37
- activesupport (= 4.2.8)
38
- arel (~> 6.0)
39
- activesupport (4.2.8)
40
- i18n (~> 0.7)
41
- minitest (~> 5.1)
42
- thread_safe (~> 0.3, >= 0.3.4)
43
- tzinfo (~> 1.1)
44
- appraisal (1.0.3)
45
- bundler
46
- rake
47
- thor (>= 0.14.0)
48
- arel (6.0.4)
49
- ast (2.3.0)
50
- builder (3.2.3)
51
- concurrent-ruby (1.0.5)
52
- coveralls (0.8.21)
53
- json (>= 1.8, < 3)
54
- simplecov (~> 0.14.1)
55
- term-ansicolor (~> 1.3)
56
- thor (~> 0.19.4)
57
- tins (~> 1.6)
58
- diff-lcs (1.3)
59
- docile (1.1.5)
60
- erubis (2.7.0)
61
- globalid (0.4.0)
62
- activesupport (>= 4.2.0)
63
- i18n (0.8.1)
64
- json (2.1.0)
65
- loofah (2.0.3)
66
- nokogiri (>= 1.5.9)
67
- mail (2.6.5)
68
- mime-types (>= 1.16, < 4)
69
- mime-types (3.1)
70
- mime-types-data (~> 3.2015)
71
- mime-types-data (3.2016.0521)
72
- mini_portile2 (2.1.0)
73
- minitest (5.10.1)
74
- nokogiri (1.7.1)
75
- mini_portile2 (~> 2.1.0)
76
- parser (2.4.0.0)
77
- ast (~> 2.2)
78
- power_assert (1.0.2)
79
- powerpack (0.1.1)
80
- rack (1.6.5)
81
- rack-test (0.6.3)
82
- rack (>= 1.0)
83
- rails (4.2.8)
84
- actionmailer (= 4.2.8)
85
- actionpack (= 4.2.8)
86
- actionview (= 4.2.8)
87
- activejob (= 4.2.8)
88
- activemodel (= 4.2.8)
89
- activerecord (= 4.2.8)
90
- activesupport (= 4.2.8)
91
- bundler (>= 1.3.0, < 2.0)
92
- railties (= 4.2.8)
93
- sprockets-rails
94
- rails-deprecated_sanitizer (1.0.3)
95
- activesupport (>= 4.2.0.alpha)
96
- rails-dom-testing (1.0.8)
97
- activesupport (>= 4.2.0.beta, < 5.0)
98
- nokogiri (~> 1.6)
99
- rails-deprecated_sanitizer (>= 1.0.1)
100
- rails-html-sanitizer (1.0.3)
101
- loofah (~> 2.0)
102
- railties (4.2.8)
103
- actionpack (= 4.2.8)
104
- activesupport (= 4.2.8)
105
- rake (>= 0.8.7)
106
- thor (>= 0.18.1, < 2.0)
107
- rainbow (2.2.2)
108
- rake
109
- rake (10.5.0)
110
- rspec (3.5.0)
111
- rspec-core (~> 3.5.0)
112
- rspec-expectations (~> 3.5.0)
113
- rspec-mocks (~> 3.5.0)
114
- rspec-activemodel-mocks (1.0.3)
115
- activemodel (>= 3.0)
116
- activesupport (>= 3.0)
117
- rspec-mocks (>= 2.99, < 4.0)
118
- rspec-core (3.5.4)
119
- rspec-support (~> 3.5.0)
120
- rspec-expectations (3.5.0)
121
- diff-lcs (>= 1.2.0, < 2.0)
122
- rspec-support (~> 3.5.0)
123
- rspec-its (1.2.0)
124
- rspec-core (>= 3.0.0)
125
- rspec-expectations (>= 3.0.0)
126
- rspec-mocks (3.5.0)
127
- diff-lcs (>= 1.2.0, < 2.0)
128
- rspec-support (~> 3.5.0)
129
- rspec-rails (3.5.2)
130
- actionpack (>= 3.0)
131
- activesupport (>= 3.0)
132
- railties (>= 3.0)
133
- rspec-core (~> 3.5.0)
134
- rspec-expectations (~> 3.5.0)
135
- rspec-mocks (~> 3.5.0)
136
- rspec-support (~> 3.5.0)
137
- rspec-support (3.5.0)
138
- rubocop (0.48.1)
139
- parser (>= 2.3.3.1, < 3.0)
140
- powerpack (~> 0.1)
141
- rainbow (>= 1.99.1, < 3.0)
142
- ruby-progressbar (~> 1.7)
143
- unicode-display_width (~> 1.0, >= 1.0.1)
144
- ruby-progressbar (1.8.1)
145
- simplecov (0.14.1)
146
- docile (~> 1.1.0)
147
- json (>= 1.8, < 3)
148
- simplecov-html (~> 0.10.0)
149
- simplecov-html (0.10.0)
150
- sprockets (3.7.1)
151
- concurrent-ruby (~> 1.0)
152
- rack (> 1, < 3)
153
- sprockets-rails (3.2.0)
154
- actionpack (>= 4.0)
155
- activesupport (>= 4.0)
156
- sprockets (>= 3.0.0)
157
- sqlite3 (1.3.13)
158
- term-ansicolor (1.6.0)
159
- tins (~> 1.0)
160
- test-unit (3.2.3)
161
- power_assert
162
- thor (0.19.4)
163
- thread_safe (0.3.6)
164
- tins (1.13.2)
165
- tzinfo (1.2.3)
166
- thread_safe (~> 0.1)
167
- unicode-display_width (1.2.1)
168
-
169
- PLATFORMS
170
- ruby
171
-
172
- DEPENDENCIES
173
- appraisal (~> 1.0.0)
174
- comma!
175
- coveralls
176
- rails (= 4.2.8)
177
- rake (~> 10.5.0)
178
- rspec (~> 3.5.0)
179
- rspec-activemodel-mocks
180
- rspec-its
181
- rspec-rails
182
- rubocop
183
- sqlite3 (~> 1.3.11)
184
- test-unit
185
-
186
- BUNDLED WITH
187
- 1.14.6