comma 4.2.0 → 4.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (76) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +12 -1
  3. data/.rubocop_todo.yml +3 -364
  4. data/.travis.yml +26 -57
  5. data/Appraisals +31 -1
  6. data/Gemfile +5 -1
  7. data/Gemfile.lock +54 -36
  8. data/README.md +3 -3
  9. data/Rakefile +2 -0
  10. data/comma.gemspec +13 -14
  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.0.gemfile.lock → active5.2.4.3.gemfile.lock} +48 -41
  17. data/gemfiles/active6.0.3.1.gemfile +12 -0
  18. data/gemfiles/active6.0.3.1.gemfile.lock +113 -0
  19. data/gemfiles/active6.1.0.gemfile +12 -0
  20. data/gemfiles/active6.1.0.gemfile.lock +112 -0
  21. data/gemfiles/{rails5.0.1.gemfile → rails5.0.7.2.gemfile} +5 -2
  22. data/gemfiles/rails5.0.7.2.gemfile.lock +204 -0
  23. data/gemfiles/{rails4.2.8.gemfile → rails5.1.7.gemfile} +5 -2
  24. data/gemfiles/{rails5.2.0.gemfile.lock → rails5.1.7.gemfile.lock} +97 -97
  25. data/gemfiles/rails5.2.4.3.gemfile +14 -0
  26. data/gemfiles/rails5.2.4.3.gemfile.lock +212 -0
  27. data/gemfiles/{rails4.1.16.gemfile → rails6.0.3.1.gemfile} +4 -2
  28. data/gemfiles/rails6.0.3.1.gemfile.lock +227 -0
  29. data/gemfiles/{rails4.0.13.gemfile → rails6.1.0.gemfile} +4 -2
  30. data/gemfiles/rails6.1.0.gemfile.lock +230 -0
  31. data/init.rb +2 -0
  32. data/lib/comma.rb +26 -35
  33. data/lib/comma/array.rb +2 -0
  34. data/lib/comma/data_extractor.rb +5 -5
  35. data/lib/comma/data_mapper_collection.rb +9 -3
  36. data/lib/comma/extractor.rb +3 -5
  37. data/lib/comma/generator.rb +11 -11
  38. data/lib/comma/header_extractor.rb +19 -14
  39. data/lib/comma/mongoid.rb +10 -7
  40. data/lib/comma/object.rb +5 -1
  41. data/lib/comma/relation.rb +16 -10
  42. data/lib/comma/version.rb +3 -1
  43. data/spec/comma/comma_spec.rb +71 -50
  44. data/spec/comma/data_extractor_spec.rb +13 -17
  45. data/spec/comma/header_extractor_spec.rb +7 -13
  46. data/spec/comma/rails/active_record_spec.rb +34 -33
  47. data/spec/comma/rails/data_mapper_collection_spec.rb +4 -3
  48. data/spec/comma/rails/mongoid_spec.rb +8 -7
  49. data/spec/controllers/users_controller_spec.rb +83 -70
  50. data/spec/non_rails_app/ruby_classes.rb +13 -6
  51. data/spec/rails_app/active_record/config.rb +3 -1
  52. data/spec/rails_app/active_record/models.rb +4 -2
  53. data/spec/rails_app/data_mapper/config.rb +2 -0
  54. data/spec/rails_app/mongoid/config.rb +4 -2
  55. data/spec/rails_app/rails_app.rb +12 -11
  56. data/spec/rails_app/tmp/.gitkeep +0 -0
  57. data/spec/spec_helper.rb +21 -4
  58. metadata +31 -48
  59. data/gemfiles/active4.0.13.gemfile +0 -10
  60. data/gemfiles/active4.0.13.gemfile.lock +0 -107
  61. data/gemfiles/active4.1.16.gemfile +0 -10
  62. data/gemfiles/active4.1.16.gemfile.lock +0 -106
  63. data/gemfiles/active4.2.8.gemfile +0 -10
  64. data/gemfiles/active4.2.8.gemfile.lock +0 -105
  65. data/gemfiles/active5.0.1.gemfile +0 -10
  66. data/gemfiles/active5.0.1.gemfile.lock +0 -104
  67. data/gemfiles/active5.1.0.gemfile +0 -10
  68. data/gemfiles/active5.1.0.gemfile.lock +0 -104
  69. data/gemfiles/active5.2.0.gemfile +0 -10
  70. data/gemfiles/rails4.0.13.gemfile.lock +0 -158
  71. data/gemfiles/rails4.1.16.gemfile.lock +0 -162
  72. data/gemfiles/rails4.2.8.gemfile.lock +0 -187
  73. data/gemfiles/rails5.0.1.gemfile.lock +0 -194
  74. data/gemfiles/rails5.1.0.gemfile +0 -11
  75. data/gemfiles/rails5.1.0.gemfile.lock +0 -194
  76. data/gemfiles/rails5.2.0.gemfile +0 -11
data/Appraisals CHANGED
@@ -1,9 +1,17 @@
1
- ['4.1.16', '4.2.8', '5.0.1', '5.1.0', '5.2.0'].each do |version_number|
1
+ # frozen_string_literal: true
2
+
3
+ [
4
+ '5.0.7.2',
5
+ '5.1.7',
6
+ '5.2.4.3'
7
+ ].each do |version_number|
2
8
  clean_number = version_number.gsub(/[<>~=]*/, '')
3
9
 
4
10
  appraise "rails#{clean_number}" do
5
11
  gem 'rails', version_number
6
12
  gem 'rspec-rails'
13
+ gem 'sprockets', '< 4'
14
+ gem 'sqlite3', '~> 1.3.11'
7
15
  gem 'test-unit'
8
16
  end
9
17
 
@@ -12,3 +20,25 @@
12
20
  gem 'activerecord', version_number
13
21
  end
14
22
  end
23
+
24
+ appraise 'rails6.0.3.1' do
25
+ gem 'rails', '6.0.3.1'
26
+ gem 'rspec-rails'
27
+ gem 'test-unit'
28
+ end
29
+
30
+ appraise 'active6.0.3.1' do
31
+ gem 'activesupport', '6.0.3.1'
32
+ gem 'activerecord', '6.0.3.1'
33
+ end
34
+
35
+ appraise 'rails6.1.0' do
36
+ gem 'rails', '6.1.0'
37
+ gem 'rspec-rails'
38
+ gem 'test-unit'
39
+ end
40
+
41
+ appraise 'active6.1.0' do
42
+ gem 'activesupport', '6.1.0'
43
+ gem 'activerecord', '6.1.0'
44
+ end
data/Gemfile CHANGED
@@ -1,6 +1,10 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  gemspec
4
6
 
5
7
  gem 'coveralls', require: false
6
- gem 'rubocop', require: false
8
+ gem 'rubocop', '~> 0.67.2', require: false
9
+ gem 'rubocop-performance', require: false
10
+ gem 'sqlite3'
@@ -1,26 +1,27 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- comma (4.2.0)
5
- activesupport (>= 4.0.0, < 6)
4
+ comma (4.5.0)
5
+ activesupport (>= 4.2.0, < 6.2)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
- activemodel (5.0.0.1)
11
- activesupport (= 5.0.0.1)
12
- activesupport (5.0.0.1)
10
+ activemodel (6.0.3.1)
11
+ activesupport (= 6.0.3.1)
12
+ activesupport (6.0.3.1)
13
13
  concurrent-ruby (~> 1.0, >= 1.0.2)
14
- i18n (~> 0.7)
14
+ i18n (>= 0.7, < 2)
15
15
  minitest (~> 5.1)
16
16
  tzinfo (~> 1.1)
17
+ zeitwerk (~> 2.2, >= 2.2.2)
17
18
  appraisal (1.0.3)
18
19
  bundler
19
20
  rake
20
21
  thor (>= 0.14.0)
21
- ast (2.3.0)
22
+ ast (2.4.0)
22
23
  colorize (0.7.5)
23
- concurrent-ruby (1.0.2)
24
+ concurrent-ruby (1.1.6)
24
25
  coveralls (0.5.8)
25
26
  colorize
26
27
  json
@@ -29,22 +30,30 @@ GEM
29
30
  thor
30
31
  diff-lcs (1.2.5)
31
32
  docile (1.1.5)
32
- i18n (0.7.0)
33
- json (1.8.6)
34
- mime-types (1.25.1)
35
- minitest (5.9.0)
33
+ domain_name (0.5.20190701)
34
+ unf (>= 0.0.5, < 1.0.0)
35
+ http-cookie (1.0.3)
36
+ domain_name (~> 0.5)
37
+ i18n (1.8.3)
38
+ concurrent-ruby (~> 1.0)
39
+ jaro_winkler (1.5.2)
40
+ json (2.3.1)
41
+ mime-types (3.2.2)
42
+ mime-types-data (~> 3.2015)
43
+ mime-types-data (3.2019.0331)
44
+ minitest (5.14.1)
36
45
  multi_json (1.1.0)
37
- parser (2.4.0.0)
38
- ast (~> 2.2)
39
- powerpack (0.1.1)
40
- rainbow (2.2.2)
41
- rake
42
- rake (10.5.0)
43
- rdoc (4.2.0)
44
- json (~> 1.4)
45
- rest-client (1.6.8)
46
- mime-types (~> 1.16)
47
- rdoc (>= 2.4.2)
46
+ netrc (0.11.0)
47
+ parallel (1.17.0)
48
+ parser (2.6.2.1)
49
+ ast (~> 2.4.0)
50
+ psych (3.1.0)
51
+ rainbow (3.0.0)
52
+ rake (13.0.1)
53
+ rest-client (2.0.2)
54
+ http-cookie (>= 1.0.2, < 2.0)
55
+ mime-types (>= 1.16, < 4.0)
56
+ netrc (~> 0.8)
48
57
  rspec (3.5.0)
49
58
  rspec-core (~> 3.5.0)
50
59
  rspec-expectations (~> 3.5.0)
@@ -65,13 +74,17 @@ GEM
65
74
  diff-lcs (>= 1.2.0, < 2.0)
66
75
  rspec-support (~> 3.5.0)
67
76
  rspec-support (3.5.0)
68
- rubocop (0.48.1)
69
- parser (>= 2.3.3.1, < 3.0)
70
- powerpack (~> 0.1)
71
- rainbow (>= 1.99.1, < 3.0)
77
+ rubocop (0.67.2)
78
+ jaro_winkler (~> 1.5.1)
79
+ parallel (~> 1.10)
80
+ parser (>= 2.5, != 2.5.1.1)
81
+ psych (>= 3.1.0)
82
+ rainbow (>= 2.2.2, < 4.0)
72
83
  ruby-progressbar (~> 1.7)
73
- unicode-display_width (~> 1.0, >= 1.0.1)
74
- ruby-progressbar (1.8.1)
84
+ unicode-display_width (>= 1.4.0, < 1.6)
85
+ rubocop-performance (1.1.0)
86
+ rubocop (>= 0.67.0)
87
+ ruby-progressbar (1.10.0)
75
88
  simplecov (0.9.2)
76
89
  docile (~> 1.1.0)
77
90
  multi_json (~> 1.0)
@@ -79,10 +92,14 @@ GEM
79
92
  simplecov-html (0.9.0)
80
93
  sqlite3 (1.3.11)
81
94
  thor (0.19.1)
82
- thread_safe (0.3.5)
83
- tzinfo (1.2.2)
95
+ thread_safe (0.3.6)
96
+ tzinfo (1.2.7)
84
97
  thread_safe (~> 0.1)
85
- unicode-display_width (1.2.1)
98
+ unf (0.1.4)
99
+ unf_ext
100
+ unf_ext (0.0.7.6)
101
+ unicode-display_width (1.5.0)
102
+ zeitwerk (2.3.0)
86
103
 
87
104
  PLATFORMS
88
105
  ruby
@@ -91,12 +108,13 @@ DEPENDENCIES
91
108
  appraisal (~> 1.0.0)
92
109
  comma!
93
110
  coveralls
94
- rake (~> 10.5.0)
111
+ rake (~> 13.0.1)
95
112
  rspec (~> 3.5.0)
96
113
  rspec-activemodel-mocks
97
114
  rspec-its
98
- rubocop
99
- sqlite3 (~> 1.3.11)
115
+ rubocop (~> 0.67.2)
116
+ rubocop-performance
117
+ sqlite3
100
118
 
101
119
  BUNDLED WITH
102
- 1.14.6
120
+ 1.17.3
data/README.md CHANGED
@@ -2,13 +2,13 @@
2
2
 
3
3
  A library to generate comma seperated value (CSV) for Ruby objects like ActiveRecord and Array
4
4
 
5
- [![Gem Version](https://badge.fury.io/rb/comma.png)](http://badge.fury.io/rb/comma) [![Build Status](https://travis-ci.org/comma-csv/comma.png?branch=master)](https://travis-ci.org/comma-csv/comma) [![Code Climate](https://codeclimate.com/github/comma-csv/comma.png)](https://codeclimate.com/github/comma-csv/comma)
5
+ [![Gem Version](https://badge.fury.io/rb/comma.svg)](http://badge.fury.io/rb/comma) [![Build Status](https://travis-ci.org/comma-csv/comma.svg?branch=master)](https://travis-ci.org/comma-csv/comma) [![Code Climate](https://codeclimate.com/github/comma-csv/comma.svg)](https://codeclimate.com/github/comma-csv/comma)
6
6
 
7
7
  ## Getting Started
8
8
 
9
9
  ### Prerequisites
10
10
 
11
- You need to use ruby 2.1 or later. If you generate CSV from ActiveRecord models, you need to have ActiveRecord 4.x or later.
11
+ You need to use ruby 2.4 or later. If you generate CSV from ActiveRecord models, you need to have ActiveRecord 5.0 or later.
12
12
 
13
13
  ### Installing
14
14
 
@@ -17,7 +17,7 @@ Comma is distributed as a gem, best installed via Bundler.
17
17
  Include the gem in your Gemfile:
18
18
 
19
19
  ```ruby
20
- gem 'comma', '~> 4.2.0'
20
+ gem 'comma', '~> 4.5.0'
21
21
  ```
22
22
 
23
23
  Or, if you want to live life on the edge, you can get master from the main comma repository:
data/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'bundler/setup'
2
4
  require 'bundler/gem_tasks'
3
5
 
@@ -1,29 +1,28 @@
1
- $:.push File.expand_path("lib", __dir__)
2
- require "comma/version"
1
+ # frozen_string_literal: true
2
+
3
+ $LOAD_PATH.push File.expand_path('lib', __dir__)
4
+ require 'comma/version'
3
5
 
4
6
  Gem::Specification.new do |s|
5
- s.name = "comma"
7
+ s.name = 'comma'
6
8
  s.version = Comma::VERSION
7
- s.authors = ["Marcus Crafter", "Tom Meier"]
8
- s.email = ["crafterm@redartisan.com", "tom@venombytes.com"]
9
- s.homepage = "http://github.com/comma-csv/comma"
10
- s.summary = %q{Ruby Comma Seperated Values generation library}
11
- s.description = %q{Ruby Comma Seperated Values generation library}
12
-
13
- s.rubyforge_project = "comma"
9
+ s.authors = ['Marcus Crafter', 'Tom Meier']
10
+ s.email = ['crafterm@redartisan.com', 'tom@venombytes.com']
11
+ s.homepage = 'http://github.com/comma-csv/comma'
12
+ s.summary = %(Ruby Comma Seperated Values generation library)
13
+ s.description = %(Ruby Comma Seperated Values generation library)
14
14
 
15
15
  s.files = `git ls-files`.split("\n")
16
16
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
- s.require_paths = ["lib"]
17
+ s.require_paths = ['lib']
18
18
 
19
19
  s.licenses = ['MIT']
20
20
 
21
- s.add_dependency 'activesupport', ['>= 4.0.0', '< 6']
21
+ s.add_dependency 'activesupport', ['>= 4.2.0', '< 6.2']
22
22
 
23
23
  s.add_development_dependency 'appraisal', ['~> 1.0.0']
24
- s.add_development_dependency 'rake', ['~> 10.5.0']
24
+ s.add_development_dependency 'rake', '~> 13.0.1'
25
25
  s.add_development_dependency 'rspec', ['~> 3.5.0']
26
26
  s.add_development_dependency 'rspec-activemodel-mocks'
27
27
  s.add_development_dependency 'rspec-its'
28
- s.add_development_dependency 'sqlite3', ['~> 1.3.11']
29
28
  end
@@ -0,0 +1,12 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "coveralls", :require => false
6
+ gem "rubocop", "~> 0.67.2", :require => false
7
+ gem "rubocop-performance", :require => false
8
+ gem "sqlite3"
9
+ gem "activesupport", "5.0.7.2"
10
+ gem "activerecord", "5.0.7.2"
11
+
12
+ gemspec :path => "../"
@@ -0,0 +1,113 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ comma (4.5.0)
5
+ activesupport (>= 4.2.0, < 6.2)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ activemodel (5.0.7.2)
11
+ activesupport (= 5.0.7.2)
12
+ activerecord (5.0.7.2)
13
+ activemodel (= 5.0.7.2)
14
+ activesupport (= 5.0.7.2)
15
+ arel (~> 7.0)
16
+ activesupport (5.0.7.2)
17
+ concurrent-ruby (~> 1.0, >= 1.0.2)
18
+ i18n (>= 0.7, < 2)
19
+ minitest (~> 5.1)
20
+ tzinfo (~> 1.1)
21
+ appraisal (1.0.3)
22
+ bundler
23
+ rake
24
+ thor (>= 0.14.0)
25
+ arel (7.1.4)
26
+ ast (2.4.1)
27
+ concurrent-ruby (1.1.6)
28
+ coveralls (0.8.23)
29
+ json (>= 1.8, < 3)
30
+ simplecov (~> 0.16.1)
31
+ term-ansicolor (~> 1.3)
32
+ thor (>= 0.19.4, < 2.0)
33
+ tins (~> 1.6)
34
+ diff-lcs (1.3)
35
+ docile (1.3.2)
36
+ i18n (1.8.3)
37
+ concurrent-ruby (~> 1.0)
38
+ jaro_winkler (1.5.4)
39
+ json (2.3.0)
40
+ minitest (5.14.1)
41
+ parallel (1.19.1)
42
+ parser (2.7.1.3)
43
+ ast (~> 2.4.0)
44
+ psych (3.1.0)
45
+ rainbow (3.0.0)
46
+ rake (13.0.1)
47
+ rspec (3.5.0)
48
+ rspec-core (~> 3.5.0)
49
+ rspec-expectations (~> 3.5.0)
50
+ rspec-mocks (~> 3.5.0)
51
+ rspec-activemodel-mocks (1.1.0)
52
+ activemodel (>= 3.0)
53
+ activesupport (>= 3.0)
54
+ rspec-mocks (>= 2.99, < 4.0)
55
+ rspec-core (3.5.4)
56
+ rspec-support (~> 3.5.0)
57
+ rspec-expectations (3.5.0)
58
+ diff-lcs (>= 1.2.0, < 2.0)
59
+ rspec-support (~> 3.5.0)
60
+ rspec-its (1.3.0)
61
+ rspec-core (>= 3.0.0)
62
+ rspec-expectations (>= 3.0.0)
63
+ rspec-mocks (3.5.0)
64
+ diff-lcs (>= 1.2.0, < 2.0)
65
+ rspec-support (~> 3.5.0)
66
+ rspec-support (3.5.0)
67
+ rubocop (0.67.2)
68
+ jaro_winkler (~> 1.5.1)
69
+ parallel (~> 1.10)
70
+ parser (>= 2.5, != 2.5.1.1)
71
+ psych (>= 3.1.0)
72
+ rainbow (>= 2.2.2, < 4.0)
73
+ ruby-progressbar (~> 1.7)
74
+ unicode-display_width (>= 1.4.0, < 1.6)
75
+ rubocop-performance (1.1.0)
76
+ rubocop (>= 0.67.0)
77
+ ruby-progressbar (1.10.1)
78
+ simplecov (0.16.1)
79
+ docile (~> 1.1)
80
+ json (>= 1.8, < 3)
81
+ simplecov-html (~> 0.10.0)
82
+ simplecov-html (0.10.2)
83
+ sqlite3 (1.3.11)
84
+ sync (0.5.0)
85
+ term-ansicolor (1.7.1)
86
+ tins (~> 1.0)
87
+ thor (1.0.1)
88
+ thread_safe (0.3.6)
89
+ tins (1.25.0)
90
+ sync
91
+ tzinfo (1.2.7)
92
+ thread_safe (~> 0.1)
93
+ unicode-display_width (1.5.0)
94
+
95
+ PLATFORMS
96
+ ruby
97
+
98
+ DEPENDENCIES
99
+ activerecord (= 5.0.7.2)
100
+ activesupport (= 5.0.7.2)
101
+ appraisal (~> 1.0.0)
102
+ comma!
103
+ coveralls
104
+ rake (~> 13.0.1)
105
+ rspec (~> 3.5.0)
106
+ rspec-activemodel-mocks
107
+ rspec-its
108
+ rubocop (~> 0.67.2)
109
+ rubocop-performance
110
+ sqlite3
111
+
112
+ BUNDLED WITH
113
+ 1.17.3
@@ -0,0 +1,12 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "coveralls", :require => false
6
+ gem "rubocop", "~> 0.67.2", :require => false
7
+ gem "rubocop-performance", :require => false
8
+ gem "sqlite3"
9
+ gem "activesupport", "5.1.7"
10
+ gem "activerecord", "5.1.7"
11
+
12
+ gemspec :path => "../"
@@ -0,0 +1,113 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ comma (4.5.0)
5
+ activesupport (>= 4.2.0, < 6.2)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ activemodel (5.1.7)
11
+ activesupport (= 5.1.7)
12
+ activerecord (5.1.7)
13
+ activemodel (= 5.1.7)
14
+ activesupport (= 5.1.7)
15
+ arel (~> 8.0)
16
+ activesupport (5.1.7)
17
+ concurrent-ruby (~> 1.0, >= 1.0.2)
18
+ i18n (>= 0.7, < 2)
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.4.1)
27
+ concurrent-ruby (1.1.6)
28
+ coveralls (0.8.23)
29
+ json (>= 1.8, < 3)
30
+ simplecov (~> 0.16.1)
31
+ term-ansicolor (~> 1.3)
32
+ thor (>= 0.19.4, < 2.0)
33
+ tins (~> 1.6)
34
+ diff-lcs (1.3)
35
+ docile (1.3.2)
36
+ i18n (1.8.3)
37
+ concurrent-ruby (~> 1.0)
38
+ jaro_winkler (1.5.4)
39
+ json (2.3.0)
40
+ minitest (5.14.1)
41
+ parallel (1.19.1)
42
+ parser (2.7.1.3)
43
+ ast (~> 2.4.0)
44
+ psych (3.1.0)
45
+ rainbow (3.0.0)
46
+ rake (13.0.1)
47
+ rspec (3.5.0)
48
+ rspec-core (~> 3.5.0)
49
+ rspec-expectations (~> 3.5.0)
50
+ rspec-mocks (~> 3.5.0)
51
+ rspec-activemodel-mocks (1.1.0)
52
+ activemodel (>= 3.0)
53
+ activesupport (>= 3.0)
54
+ rspec-mocks (>= 2.99, < 4.0)
55
+ rspec-core (3.5.4)
56
+ rspec-support (~> 3.5.0)
57
+ rspec-expectations (3.5.0)
58
+ diff-lcs (>= 1.2.0, < 2.0)
59
+ rspec-support (~> 3.5.0)
60
+ rspec-its (1.3.0)
61
+ rspec-core (>= 3.0.0)
62
+ rspec-expectations (>= 3.0.0)
63
+ rspec-mocks (3.5.0)
64
+ diff-lcs (>= 1.2.0, < 2.0)
65
+ rspec-support (~> 3.5.0)
66
+ rspec-support (3.5.0)
67
+ rubocop (0.67.2)
68
+ jaro_winkler (~> 1.5.1)
69
+ parallel (~> 1.10)
70
+ parser (>= 2.5, != 2.5.1.1)
71
+ psych (>= 3.1.0)
72
+ rainbow (>= 2.2.2, < 4.0)
73
+ ruby-progressbar (~> 1.7)
74
+ unicode-display_width (>= 1.4.0, < 1.6)
75
+ rubocop-performance (1.1.0)
76
+ rubocop (>= 0.67.0)
77
+ ruby-progressbar (1.10.1)
78
+ simplecov (0.16.1)
79
+ docile (~> 1.1)
80
+ json (>= 1.8, < 3)
81
+ simplecov-html (~> 0.10.0)
82
+ simplecov-html (0.10.2)
83
+ sqlite3 (1.4.2)
84
+ sync (0.5.0)
85
+ term-ansicolor (1.7.1)
86
+ tins (~> 1.0)
87
+ thor (1.0.1)
88
+ thread_safe (0.3.6)
89
+ tins (1.25.0)
90
+ sync
91
+ tzinfo (1.2.7)
92
+ thread_safe (~> 0.1)
93
+ unicode-display_width (1.5.0)
94
+
95
+ PLATFORMS
96
+ ruby
97
+
98
+ DEPENDENCIES
99
+ activerecord (= 5.1.7)
100
+ activesupport (= 5.1.7)
101
+ appraisal (~> 1.0.0)
102
+ comma!
103
+ coveralls
104
+ rake (~> 13.0.1)
105
+ rspec (~> 3.5.0)
106
+ rspec-activemodel-mocks
107
+ rspec-its
108
+ rubocop (~> 0.67.2)
109
+ rubocop-performance
110
+ sqlite3
111
+
112
+ BUNDLED WITH
113
+ 1.17.3