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
data/Appraisals CHANGED
@@ -1,9 +1,17 @@
1
- ['4.1.16', '4.2.8', '5.0.1', '5.1.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,14 @@
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
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.1.0)
5
- activesupport (>= 4.0.0, < 5.2)
4
+ comma (4.4.0)
5
+ activesupport (>= 4.2.0, < 6.1)
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.2)
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.2.0)
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
@@ -0,0 +1,59 @@
1
+ # Comma
2
+
3
+ A library to generate comma seperated value (CSV) for Ruby objects like ActiveRecord and Array
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)
6
+
7
+ ## Getting Started
8
+
9
+ ### Prerequisites
10
+
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
+
13
+ ### Installing
14
+
15
+ Comma is distributed as a gem, best installed via Bundler.
16
+
17
+ Include the gem in your Gemfile:
18
+
19
+ ```ruby
20
+ gem 'comma', '~> 4.4.0'
21
+ ```
22
+
23
+ Or, if you want to live life on the edge, you can get master from the main comma repository:
24
+
25
+ ```ruby
26
+ gem 'comma', git: 'git://github.com/comma-csv/comma.git'
27
+ ```
28
+
29
+ Then, run `bundle install`.
30
+
31
+ ### Usage
32
+
33
+ See [this page](https://github.com/comma-csv/comma/wiki) for usages.
34
+
35
+ ## Running the tests
36
+
37
+ To run the test suite across multiple gem file sets, we're using [Appraisal](https://github.com/thoughtbot/appraisal), use the following commands:
38
+
39
+ ```sh
40
+ $ bundle exec appraisal install
41
+ $ bundle exec appraisal rake spec
42
+
43
+ ```
44
+
45
+ ## Contributing
46
+
47
+ ## Versioning
48
+
49
+ We use [SemVer](http://semver.org/) for versioning. For the versions available, see the [tags on this repository](https://github.com/comma-csv/comma/tags).
50
+
51
+ ## Authors
52
+
53
+ * Marcus Crafter - Initial work
54
+ * Tom Meier - Initial work
55
+ * Eito Katagiri
56
+
57
+ ## License
58
+
59
+ This project is licensed under the MIT License - see the [MIT-LICENSE](https://github.com/comma-csv/comma/blob/master/MIT-LICENSE) file fore details.
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,31 +1,28 @@
1
- # -*- encoding: utf-8 -*-
1
+ # frozen_string_literal: true
2
2
 
3
- $:.push File.expand_path("../lib", __FILE__)
4
- require "comma/version"
3
+ $LOAD_PATH.push File.expand_path('lib', __dir__)
4
+ require 'comma/version'
5
5
 
6
6
  Gem::Specification.new do |s|
7
- s.name = "comma"
7
+ s.name = 'comma'
8
8
  s.version = Comma::VERSION
9
- s.authors = ["Marcus Crafter", "Tom Meier"]
10
- s.email = ["crafterm@redartisan.com", "tom@venombytes.com"]
11
- s.homepage = "http://github.com/crafterm/comma"
12
- s.summary = %q{Ruby Comma Seperated Values generation library}
13
- s.description = %q{Ruby Comma Seperated Values generation library}
14
-
15
- 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)
16
14
 
17
15
  s.files = `git ls-files`.split("\n")
18
16
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19
- s.require_paths = ["lib"]
17
+ s.require_paths = ['lib']
20
18
 
21
19
  s.licenses = ['MIT']
22
20
 
23
- s.add_dependency 'activesupport', ['>= 4.0.0', '< 5.2']
21
+ s.add_dependency 'activesupport', ['>= 4.2.0', '< 6.1']
24
22
 
25
23
  s.add_development_dependency 'appraisal', ['~> 1.0.0']
26
- s.add_development_dependency 'rake', ['~> 10.5.0']
24
+ s.add_development_dependency 'rake', '~> 13.0.1'
27
25
  s.add_development_dependency 'rspec', ['~> 3.5.0']
28
26
  s.add_development_dependency 'rspec-activemodel-mocks'
29
27
  s.add_development_dependency 'rspec-its'
30
- s.add_development_dependency 'sqlite3', ['~> 1.3.11']
31
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.4.0)
5
+ activesupport (>= 4.2.0, < 6.1)
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.4.0)
5
+ activesupport (>= 4.2.0, < 6.1)
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