comma 4.2.0 → 4.3.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/.rubocop.yml +10 -1
- data/.rubocop_todo.yml +3 -364
- data/.travis.yml +36 -55
- data/Appraisals +14 -1
- data/Gemfile +2 -0
- data/Gemfile.lock +19 -16
- data/README.md +2 -2
- data/Rakefile +2 -0
- data/comma.gemspec +13 -11
- data/gemfiles/{active4.1.16.gemfile → active4.2.11.1.gemfile} +2 -2
- data/gemfiles/{active4.2.8.gemfile.lock → active4.2.11.1.gemfile.lock} +43 -38
- data/gemfiles/{active4.0.13.gemfile → active5.0.7.2.gemfile} +2 -2
- data/gemfiles/{active5.0.1.gemfile.lock → active5.0.7.2.gemfile.lock} +44 -40
- data/gemfiles/{active5.1.0.gemfile → active5.1.7.gemfile} +2 -2
- data/gemfiles/{active5.1.0.gemfile.lock → active5.1.7.gemfile.lock} +44 -40
- data/gemfiles/{active4.2.8.gemfile → active5.2.3.gemfile} +2 -2
- data/gemfiles/active5.2.3.gemfile.lock +108 -0
- data/gemfiles/{active5.0.1.gemfile → active6.0.0.gemfile} +2 -2
- data/gemfiles/{active5.2.0.gemfile.lock → active6.0.0.gemfile.lock} +31 -29
- data/gemfiles/{rails4.1.16.gemfile → rails4.2.11.1.gemfile} +1 -1
- data/gemfiles/{rails4.2.8.gemfile.lock → rails4.2.11.1.gemfile.lock} +84 -80
- data/gemfiles/{rails4.0.13.gemfile → rails5.0.7.2.gemfile} +1 -1
- data/gemfiles/rails5.0.7.2.gemfile.lock +198 -0
- data/gemfiles/{rails5.1.0.gemfile → rails5.1.7.gemfile} +1 -1
- data/gemfiles/rails5.1.7.gemfile.lock +198 -0
- data/gemfiles/{rails5.2.0.gemfile → rails5.2.3.gemfile} +1 -1
- data/gemfiles/{rails5.2.0.gemfile.lock → rails5.2.3.gemfile.lock} +82 -80
- data/gemfiles/{rails4.2.8.gemfile → rails6.0.0.gemfile} +1 -1
- data/gemfiles/rails6.0.0.gemfile.lock +237 -0
- data/init.rb +2 -0
- data/lib/comma.rb +23 -33
- data/lib/comma/array.rb +2 -0
- data/lib/comma/data_extractor.rb +5 -5
- data/lib/comma/data_mapper_collection.rb +9 -3
- data/lib/comma/extractor.rb +3 -5
- data/lib/comma/generator.rb +11 -11
- data/lib/comma/header_extractor.rb +18 -14
- data/lib/comma/mongoid.rb +10 -7
- data/lib/comma/object.rb +5 -1
- data/lib/comma/relation.rb +16 -10
- data/lib/comma/version.rb +3 -1
- data/spec/comma/comma_spec.rb +68 -47
- data/spec/comma/data_extractor_spec.rb +6 -10
- data/spec/comma/header_extractor_spec.rb +2 -8
- data/spec/comma/rails/active_record_spec.rb +28 -26
- data/spec/comma/rails/data_mapper_collection_spec.rb +4 -3
- data/spec/comma/rails/mongoid_spec.rb +8 -7
- data/spec/controllers/users_controller_spec.rb +48 -47
- data/spec/non_rails_app/ruby_classes.rb +13 -6
- data/spec/rails_app/active_record/config.rb +3 -1
- data/spec/rails_app/active_record/models.rb +4 -2
- data/spec/rails_app/data_mapper/config.rb +2 -0
- data/spec/rails_app/mongoid/config.rb +4 -2
- data/spec/rails_app/rails_app.rb +12 -11
- data/spec/rails_app/tmp/.gitkeep +0 -0
- data/spec/spec_helper.rb +7 -3
- metadata +27 -30
- data/gemfiles/active4.0.13.gemfile.lock +0 -107
- data/gemfiles/active4.1.16.gemfile.lock +0 -106
- data/gemfiles/active5.2.0.gemfile +0 -10
- data/gemfiles/rails4.0.13.gemfile.lock +0 -158
- data/gemfiles/rails4.1.16.gemfile.lock +0 -162
- data/gemfiles/rails5.0.1.gemfile +0 -11
- data/gemfiles/rails5.0.1.gemfile.lock +0 -194
- data/gemfiles/rails5.1.0.gemfile.lock +0 -194
data/Appraisals
CHANGED
@@ -1,4 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
['4.2.11.1', '5.0.7.2', '5.1.7', '5.2.3'].each do |version_number|
|
2
4
|
clean_number = version_number.gsub(/[<>~=]*/, '')
|
3
5
|
|
4
6
|
appraise "rails#{clean_number}" do
|
@@ -12,3 +14,14 @@
|
|
12
14
|
gem 'activerecord', version_number
|
13
15
|
end
|
14
16
|
end
|
17
|
+
|
18
|
+
appraise 'rails6.0.0' do
|
19
|
+
gem 'rails', '6.0.0.beta3'
|
20
|
+
gem 'rspec-rails'
|
21
|
+
gem 'test-unit'
|
22
|
+
end
|
23
|
+
|
24
|
+
appraise 'active6.0.0' do
|
25
|
+
gem 'activesupport', '6.0.0.beta3'
|
26
|
+
gem 'activerecord', '6.0.0.beta3'
|
27
|
+
end
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
comma (4.
|
5
|
-
activesupport (>= 4.0.0, < 6)
|
4
|
+
comma (4.3.0)
|
5
|
+
activesupport (>= 4.0.0, < 6.1)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
@@ -18,7 +18,7 @@ GEM
|
|
18
18
|
bundler
|
19
19
|
rake
|
20
20
|
thor (>= 0.14.0)
|
21
|
-
ast (2.
|
21
|
+
ast (2.4.0)
|
22
22
|
colorize (0.7.5)
|
23
23
|
concurrent-ruby (1.0.2)
|
24
24
|
coveralls (0.5.8)
|
@@ -30,15 +30,16 @@ GEM
|
|
30
30
|
diff-lcs (1.2.5)
|
31
31
|
docile (1.1.5)
|
32
32
|
i18n (0.7.0)
|
33
|
+
jaro_winkler (1.5.2)
|
33
34
|
json (1.8.6)
|
34
35
|
mime-types (1.25.1)
|
35
36
|
minitest (5.9.0)
|
36
37
|
multi_json (1.1.0)
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
38
|
+
parallel (1.17.0)
|
39
|
+
parser (2.6.2.1)
|
40
|
+
ast (~> 2.4.0)
|
41
|
+
psych (3.1.0)
|
42
|
+
rainbow (3.0.0)
|
42
43
|
rake (10.5.0)
|
43
44
|
rdoc (4.2.0)
|
44
45
|
json (~> 1.4)
|
@@ -65,13 +66,15 @@ GEM
|
|
65
66
|
diff-lcs (>= 1.2.0, < 2.0)
|
66
67
|
rspec-support (~> 3.5.0)
|
67
68
|
rspec-support (3.5.0)
|
68
|
-
rubocop (0.
|
69
|
-
|
70
|
-
|
71
|
-
|
69
|
+
rubocop (0.67.2)
|
70
|
+
jaro_winkler (~> 1.5.1)
|
71
|
+
parallel (~> 1.10)
|
72
|
+
parser (>= 2.5, != 2.5.1.1)
|
73
|
+
psych (>= 3.1.0)
|
74
|
+
rainbow (>= 2.2.2, < 4.0)
|
72
75
|
ruby-progressbar (~> 1.7)
|
73
|
-
unicode-display_width (
|
74
|
-
ruby-progressbar (1.
|
76
|
+
unicode-display_width (>= 1.4.0, < 1.6)
|
77
|
+
ruby-progressbar (1.10.0)
|
75
78
|
simplecov (0.9.2)
|
76
79
|
docile (~> 1.1.0)
|
77
80
|
multi_json (~> 1.0)
|
@@ -82,7 +85,7 @@ GEM
|
|
82
85
|
thread_safe (0.3.5)
|
83
86
|
tzinfo (1.2.2)
|
84
87
|
thread_safe (~> 0.1)
|
85
|
-
unicode-display_width (1.
|
88
|
+
unicode-display_width (1.5.0)
|
86
89
|
|
87
90
|
PLATFORMS
|
88
91
|
ruby
|
@@ -99,4 +102,4 @@ DEPENDENCIES
|
|
99
102
|
sqlite3 (~> 1.3.11)
|
100
103
|
|
101
104
|
BUNDLED WITH
|
102
|
-
1.
|
105
|
+
1.17.3
|
data/README.md
CHANGED
@@ -8,7 +8,7 @@ A library to generate comma seperated value (CSV) for Ruby objects like ActiveRe
|
|
8
8
|
|
9
9
|
### Prerequisites
|
10
10
|
|
11
|
-
You need to use ruby 2.
|
11
|
+
You need to use ruby 2.3 or later. If you generate CSV from ActiveRecord models, you need to have ActiveRecord 4.2 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.
|
20
|
+
gem 'comma', '~> 4.3.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
data/comma.gemspec
CHANGED
@@ -1,24 +1,26 @@
|
|
1
|
-
|
2
|
-
|
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 =
|
7
|
+
s.name = 'comma'
|
6
8
|
s.version = Comma::VERSION
|
7
|
-
s.authors = [
|
8
|
-
s.email = [
|
9
|
-
s.homepage =
|
10
|
-
s.summary = %
|
11
|
-
s.description = %
|
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)
|
12
14
|
|
13
|
-
s.rubyforge_project =
|
15
|
+
s.rubyforge_project = 'comma'
|
14
16
|
|
15
17
|
s.files = `git ls-files`.split("\n")
|
16
18
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
17
|
-
s.require_paths = [
|
19
|
+
s.require_paths = ['lib']
|
18
20
|
|
19
21
|
s.licenses = ['MIT']
|
20
22
|
|
21
|
-
s.add_dependency 'activesupport', ['>= 4.0.0', '< 6']
|
23
|
+
s.add_dependency 'activesupport', ['>= 4.0.0', '< 6.1']
|
22
24
|
|
23
25
|
s.add_development_dependency 'appraisal', ['~> 1.0.0']
|
24
26
|
s.add_development_dependency 'rake', ['~> 10.5.0']
|
@@ -1,20 +1,20 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
comma (4.
|
5
|
-
activesupport (>= 4.0.0, < 6)
|
4
|
+
comma (4.3.0)
|
5
|
+
activesupport (>= 4.0.0, < 6.1)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
activemodel (4.2.
|
11
|
-
activesupport (= 4.2.
|
10
|
+
activemodel (4.2.11.1)
|
11
|
+
activesupport (= 4.2.11.1)
|
12
12
|
builder (~> 3.1)
|
13
|
-
activerecord (4.2.
|
14
|
-
activemodel (= 4.2.
|
15
|
-
activesupport (= 4.2.
|
13
|
+
activerecord (4.2.11.1)
|
14
|
+
activemodel (= 4.2.11.1)
|
15
|
+
activesupport (= 4.2.11.1)
|
16
16
|
arel (~> 6.0)
|
17
|
-
activesupport (4.2.
|
17
|
+
activesupport (4.2.11.1)
|
18
18
|
i18n (~> 0.7)
|
19
19
|
minitest (~> 5.1)
|
20
20
|
thread_safe (~> 0.3, >= 0.3.4)
|
@@ -24,30 +24,33 @@ GEM
|
|
24
24
|
rake
|
25
25
|
thor (>= 0.14.0)
|
26
26
|
arel (6.0.4)
|
27
|
-
ast (2.
|
27
|
+
ast (2.4.0)
|
28
28
|
builder (3.2.3)
|
29
|
-
|
29
|
+
concurrent-ruby (1.1.5)
|
30
|
+
coveralls (0.8.22)
|
30
31
|
json (>= 1.8, < 3)
|
31
|
-
simplecov (~> 0.
|
32
|
+
simplecov (~> 0.16.1)
|
32
33
|
term-ansicolor (~> 1.3)
|
33
34
|
thor (~> 0.19.4)
|
34
35
|
tins (~> 1.6)
|
35
36
|
diff-lcs (1.3)
|
36
|
-
docile (1.1
|
37
|
-
i18n (0.
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
37
|
+
docile (1.3.1)
|
38
|
+
i18n (0.9.5)
|
39
|
+
concurrent-ruby (~> 1.0)
|
40
|
+
jaro_winkler (1.5.2)
|
41
|
+
json (2.2.0)
|
42
|
+
minitest (5.11.3)
|
43
|
+
parallel (1.17.0)
|
44
|
+
parser (2.6.2.1)
|
45
|
+
ast (~> 2.4.0)
|
46
|
+
psych (3.1.0)
|
47
|
+
rainbow (3.0.0)
|
45
48
|
rake (10.5.0)
|
46
49
|
rspec (3.5.0)
|
47
50
|
rspec-core (~> 3.5.0)
|
48
51
|
rspec-expectations (~> 3.5.0)
|
49
52
|
rspec-mocks (~> 3.5.0)
|
50
|
-
rspec-activemodel-mocks (1.0
|
53
|
+
rspec-activemodel-mocks (1.1.0)
|
51
54
|
activemodel (>= 3.0)
|
52
55
|
activesupport (>= 3.0)
|
53
56
|
rspec-mocks (>= 2.99, < 4.0)
|
@@ -56,41 +59,43 @@ GEM
|
|
56
59
|
rspec-expectations (3.5.0)
|
57
60
|
diff-lcs (>= 1.2.0, < 2.0)
|
58
61
|
rspec-support (~> 3.5.0)
|
59
|
-
rspec-its (1.
|
62
|
+
rspec-its (1.3.0)
|
60
63
|
rspec-core (>= 3.0.0)
|
61
64
|
rspec-expectations (>= 3.0.0)
|
62
65
|
rspec-mocks (3.5.0)
|
63
66
|
diff-lcs (>= 1.2.0, < 2.0)
|
64
67
|
rspec-support (~> 3.5.0)
|
65
68
|
rspec-support (3.5.0)
|
66
|
-
rubocop (0.
|
67
|
-
|
68
|
-
|
69
|
-
|
69
|
+
rubocop (0.67.2)
|
70
|
+
jaro_winkler (~> 1.5.1)
|
71
|
+
parallel (~> 1.10)
|
72
|
+
parser (>= 2.5, != 2.5.1.1)
|
73
|
+
psych (>= 3.1.0)
|
74
|
+
rainbow (>= 2.2.2, < 4.0)
|
70
75
|
ruby-progressbar (~> 1.7)
|
71
|
-
unicode-display_width (
|
72
|
-
ruby-progressbar (1.
|
73
|
-
simplecov (0.
|
74
|
-
docile (~> 1.1
|
76
|
+
unicode-display_width (>= 1.4.0, < 1.6)
|
77
|
+
ruby-progressbar (1.10.0)
|
78
|
+
simplecov (0.16.1)
|
79
|
+
docile (~> 1.1)
|
75
80
|
json (>= 1.8, < 3)
|
76
81
|
simplecov-html (~> 0.10.0)
|
77
|
-
simplecov-html (0.10.
|
82
|
+
simplecov-html (0.10.2)
|
78
83
|
sqlite3 (1.3.13)
|
79
|
-
term-ansicolor (1.
|
84
|
+
term-ansicolor (1.7.1)
|
80
85
|
tins (~> 1.0)
|
81
86
|
thor (0.19.4)
|
82
87
|
thread_safe (0.3.6)
|
83
|
-
tins (1.
|
84
|
-
tzinfo (1.2.
|
88
|
+
tins (1.20.2)
|
89
|
+
tzinfo (1.2.5)
|
85
90
|
thread_safe (~> 0.1)
|
86
|
-
unicode-display_width (1.
|
91
|
+
unicode-display_width (1.5.0)
|
87
92
|
|
88
93
|
PLATFORMS
|
89
94
|
ruby
|
90
95
|
|
91
96
|
DEPENDENCIES
|
92
|
-
activerecord (= 4.2.
|
93
|
-
activesupport (= 4.2.
|
97
|
+
activerecord (= 4.2.11.1)
|
98
|
+
activesupport (= 4.2.11.1)
|
94
99
|
appraisal (~> 1.0.0)
|
95
100
|
comma!
|
96
101
|
coveralls
|
@@ -102,4 +107,4 @@ DEPENDENCIES
|
|
102
107
|
sqlite3 (~> 1.3.11)
|
103
108
|
|
104
109
|
BUNDLED WITH
|
105
|
-
1.
|
110
|
+
1.17.3
|
@@ -1,21 +1,21 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
comma (4.
|
5
|
-
activesupport (>= 4.0.0, < 6)
|
4
|
+
comma (4.3.0)
|
5
|
+
activesupport (>= 4.0.0, < 6.1)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
activemodel (5.0.
|
11
|
-
activesupport (= 5.0.
|
12
|
-
activerecord (5.0.
|
13
|
-
activemodel (= 5.0.
|
14
|
-
activesupport (= 5.0.
|
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
15
|
arel (~> 7.0)
|
16
|
-
activesupport (5.0.
|
16
|
+
activesupport (5.0.7.2)
|
17
17
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
18
|
-
i18n (
|
18
|
+
i18n (>= 0.7, < 2)
|
19
19
|
minitest (~> 5.1)
|
20
20
|
tzinfo (~> 1.1)
|
21
21
|
appraisal (1.0.3)
|
@@ -23,30 +23,32 @@ GEM
|
|
23
23
|
rake
|
24
24
|
thor (>= 0.14.0)
|
25
25
|
arel (7.1.4)
|
26
|
-
ast (2.
|
27
|
-
concurrent-ruby (1.
|
28
|
-
coveralls (0.8.
|
26
|
+
ast (2.4.0)
|
27
|
+
concurrent-ruby (1.1.5)
|
28
|
+
coveralls (0.8.22)
|
29
29
|
json (>= 1.8, < 3)
|
30
|
-
simplecov (~> 0.
|
30
|
+
simplecov (~> 0.16.1)
|
31
31
|
term-ansicolor (~> 1.3)
|
32
32
|
thor (~> 0.19.4)
|
33
33
|
tins (~> 1.6)
|
34
34
|
diff-lcs (1.3)
|
35
|
-
docile (1.1
|
36
|
-
i18n (
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
35
|
+
docile (1.3.1)
|
36
|
+
i18n (1.6.0)
|
37
|
+
concurrent-ruby (~> 1.0)
|
38
|
+
jaro_winkler (1.5.2)
|
39
|
+
json (2.2.0)
|
40
|
+
minitest (5.11.3)
|
41
|
+
parallel (1.17.0)
|
42
|
+
parser (2.6.2.1)
|
43
|
+
ast (~> 2.4.0)
|
44
|
+
psych (3.1.0)
|
45
|
+
rainbow (3.0.0)
|
44
46
|
rake (10.5.0)
|
45
47
|
rspec (3.5.0)
|
46
48
|
rspec-core (~> 3.5.0)
|
47
49
|
rspec-expectations (~> 3.5.0)
|
48
50
|
rspec-mocks (~> 3.5.0)
|
49
|
-
rspec-activemodel-mocks (1.0
|
51
|
+
rspec-activemodel-mocks (1.1.0)
|
50
52
|
activemodel (>= 3.0)
|
51
53
|
activesupport (>= 3.0)
|
52
54
|
rspec-mocks (>= 2.99, < 4.0)
|
@@ -55,41 +57,43 @@ GEM
|
|
55
57
|
rspec-expectations (3.5.0)
|
56
58
|
diff-lcs (>= 1.2.0, < 2.0)
|
57
59
|
rspec-support (~> 3.5.0)
|
58
|
-
rspec-its (1.
|
60
|
+
rspec-its (1.3.0)
|
59
61
|
rspec-core (>= 3.0.0)
|
60
62
|
rspec-expectations (>= 3.0.0)
|
61
63
|
rspec-mocks (3.5.0)
|
62
64
|
diff-lcs (>= 1.2.0, < 2.0)
|
63
65
|
rspec-support (~> 3.5.0)
|
64
66
|
rspec-support (3.5.0)
|
65
|
-
rubocop (0.
|
66
|
-
|
67
|
-
|
68
|
-
|
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)
|
69
73
|
ruby-progressbar (~> 1.7)
|
70
|
-
unicode-display_width (
|
71
|
-
ruby-progressbar (1.
|
72
|
-
simplecov (0.
|
73
|
-
docile (~> 1.1
|
74
|
+
unicode-display_width (>= 1.4.0, < 1.6)
|
75
|
+
ruby-progressbar (1.10.0)
|
76
|
+
simplecov (0.16.1)
|
77
|
+
docile (~> 1.1)
|
74
78
|
json (>= 1.8, < 3)
|
75
79
|
simplecov-html (~> 0.10.0)
|
76
|
-
simplecov-html (0.10.
|
80
|
+
simplecov-html (0.10.2)
|
77
81
|
sqlite3 (1.3.13)
|
78
|
-
term-ansicolor (1.
|
82
|
+
term-ansicolor (1.7.1)
|
79
83
|
tins (~> 1.0)
|
80
84
|
thor (0.19.4)
|
81
85
|
thread_safe (0.3.6)
|
82
|
-
tins (1.
|
83
|
-
tzinfo (1.2.
|
86
|
+
tins (1.20.2)
|
87
|
+
tzinfo (1.2.5)
|
84
88
|
thread_safe (~> 0.1)
|
85
|
-
unicode-display_width (1.
|
89
|
+
unicode-display_width (1.5.0)
|
86
90
|
|
87
91
|
PLATFORMS
|
88
92
|
ruby
|
89
93
|
|
90
94
|
DEPENDENCIES
|
91
|
-
activerecord (= 5.0.
|
92
|
-
activesupport (= 5.0.
|
95
|
+
activerecord (= 5.0.7.2)
|
96
|
+
activesupport (= 5.0.7.2)
|
93
97
|
appraisal (~> 1.0.0)
|
94
98
|
comma!
|
95
99
|
coveralls
|
@@ -101,4 +105,4 @@ DEPENDENCIES
|
|
101
105
|
sqlite3 (~> 1.3.11)
|
102
106
|
|
103
107
|
BUNDLED WITH
|
104
|
-
1.
|
108
|
+
1.17.3
|