comma 4.2.0 → 4.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +10 -1
  3. data/.rubocop_todo.yml +3 -364
  4. data/.travis.yml +36 -55
  5. data/Appraisals +14 -1
  6. data/Gemfile +2 -0
  7. data/Gemfile.lock +19 -16
  8. data/README.md +2 -2
  9. data/Rakefile +2 -0
  10. data/comma.gemspec +13 -11
  11. data/gemfiles/{active4.1.16.gemfile → active4.2.11.1.gemfile} +2 -2
  12. data/gemfiles/{active4.2.8.gemfile.lock → active4.2.11.1.gemfile.lock} +43 -38
  13. data/gemfiles/{active4.0.13.gemfile → active5.0.7.2.gemfile} +2 -2
  14. data/gemfiles/{active5.0.1.gemfile.lock → active5.0.7.2.gemfile.lock} +44 -40
  15. data/gemfiles/{active5.1.0.gemfile → active5.1.7.gemfile} +2 -2
  16. data/gemfiles/{active5.1.0.gemfile.lock → active5.1.7.gemfile.lock} +44 -40
  17. data/gemfiles/{active4.2.8.gemfile → active5.2.3.gemfile} +2 -2
  18. data/gemfiles/active5.2.3.gemfile.lock +108 -0
  19. data/gemfiles/{active5.0.1.gemfile → active6.0.0.gemfile} +2 -2
  20. data/gemfiles/{active5.2.0.gemfile.lock → active6.0.0.gemfile.lock} +31 -29
  21. data/gemfiles/{rails4.1.16.gemfile → rails4.2.11.1.gemfile} +1 -1
  22. data/gemfiles/{rails4.2.8.gemfile.lock → rails4.2.11.1.gemfile.lock} +84 -80
  23. data/gemfiles/{rails4.0.13.gemfile → rails5.0.7.2.gemfile} +1 -1
  24. data/gemfiles/rails5.0.7.2.gemfile.lock +198 -0
  25. data/gemfiles/{rails5.1.0.gemfile → rails5.1.7.gemfile} +1 -1
  26. data/gemfiles/rails5.1.7.gemfile.lock +198 -0
  27. data/gemfiles/{rails5.2.0.gemfile → rails5.2.3.gemfile} +1 -1
  28. data/gemfiles/{rails5.2.0.gemfile.lock → rails5.2.3.gemfile.lock} +82 -80
  29. data/gemfiles/{rails4.2.8.gemfile → rails6.0.0.gemfile} +1 -1
  30. data/gemfiles/rails6.0.0.gemfile.lock +237 -0
  31. data/init.rb +2 -0
  32. data/lib/comma.rb +23 -33
  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 +18 -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 +68 -47
  44. data/spec/comma/data_extractor_spec.rb +6 -10
  45. data/spec/comma/header_extractor_spec.rb +2 -8
  46. data/spec/comma/rails/active_record_spec.rb +28 -26
  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 +48 -47
  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 +7 -3
  58. metadata +27 -30
  59. data/gemfiles/active4.0.13.gemfile.lock +0 -107
  60. data/gemfiles/active4.1.16.gemfile.lock +0 -106
  61. data/gemfiles/active5.2.0.gemfile +0 -10
  62. data/gemfiles/rails4.0.13.gemfile.lock +0 -158
  63. data/gemfiles/rails4.1.16.gemfile.lock +0 -162
  64. data/gemfiles/rails5.0.1.gemfile +0 -11
  65. data/gemfiles/rails5.0.1.gemfile.lock +0 -194
  66. data/gemfiles/rails5.1.0.gemfile.lock +0 -194
@@ -1,17 +1,21 @@
1
+ # frozen_string_literal: true
2
+
1
3
  class Book
2
4
  attr_accessor :name, :description, :isbn
3
5
 
4
6
  def initialize(name, description, isbn)
5
- @name, @description, @isbn = name, description, isbn
7
+ @name = name
8
+ @description = description
9
+ @isbn = isbn
6
10
  end
7
11
 
8
12
  comma do
9
13
  name 'Title'
10
14
  description
11
15
 
12
- isbn :authority => :issuer
13
- isbn :number_10 => 'ISBN-10'
14
- isbn :number_13 => 'ISBN-13'
16
+ isbn authority: :issuer
17
+ isbn number_10: 'ISBN-10'
18
+ isbn number_13: 'ISBN-13'
15
19
  end
16
20
 
17
21
  comma :brief do
@@ -24,8 +28,11 @@ class Isbn
24
28
  attr_accessor :number_10, :number_13
25
29
 
26
30
  def initialize(isbn_10, isbn_13)
27
- @number_10, @number_13 = isbn_10, isbn_13
31
+ @number_10 = isbn_10
32
+ @number_13 = isbn_13
28
33
  end
29
34
 
30
- def authority; 'ISBN'; end
35
+ def authority
36
+ 'ISBN'
37
+ end
31
38
  end
@@ -1,2 +1,4 @@
1
- ActiveRecord::Base.configurations = {'test' => {'adapter' => 'sqlite3', 'database' => ':memory:'}}
1
+ # frozen_string_literal: true
2
+
3
+ ActiveRecord::Base.configurations = { 'test' => { 'adapter' => 'sqlite3', 'database' => ':memory:' } }
2
4
  ActiveRecord::Base.establish_connection(:test)
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  class Post < ActiveRecord::Base
2
4
  has_one :user
3
5
 
@@ -13,7 +15,7 @@ class User < ActiveRecord::Base
13
15
  comma do
14
16
  first_name
15
17
  last_name
16
- full_name "Name"
18
+ full_name 'Name'
17
19
  end
18
20
 
19
21
  comma :shortened do
@@ -27,7 +29,7 @@ class User < ActiveRecord::Base
27
29
  end
28
30
 
29
31
  MIGRATION_CLASS =
30
- if Rails::VERSION::STRING =~ /^5.*/
32
+ if Rails::VERSION::STRING =~ /^[56].*/
31
33
  ActiveRecord::Migration[4.2]
32
34
  else
33
35
  ActiveRecord::Migration
@@ -1 +1,3 @@
1
+ # frozen_string_literal: true
2
+
1
3
  DataMapper.setup(:default, 'sqlite::memory:')
@@ -1,7 +1,9 @@
1
+ # frozen_string_literal: true
2
+
1
3
  Mongoid.configure do |config|
2
4
  config.sessions = {
3
- :default => {
4
- :hosts => ['localhost:27017'], :database => 'comma_test'
5
+ default: {
6
+ hosts: ['localhost:27017'], database: 'comma_test'
5
7
  }
6
8
  }
7
9
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'action_controller/railtie'
2
4
  require 'action_view/railtie'
3
5
 
@@ -6,7 +8,7 @@ require 'rails_app/active_record/config' if defined?(ActiveRecord)
6
8
 
7
9
  app = CommaTestApp = Class.new(Rails::Application)
8
10
  app.config.secret_token = '6f6acf0443f74fd0aa8ff07a7c2fbe0a'
9
- app.config.session_store :cookie_store, :key => '_rails_app_session'
11
+ app.config.session_store :cookie_store, key: '_rails_app_session'
10
12
  app.config.active_support.deprecation = :log
11
13
  app.config.eager_load = false
12
14
  app.config.root = File.dirname(__FILE__)
@@ -14,10 +16,10 @@ Rails.backtrace_cleaner.remove_silencers!
14
16
  app.initialize!
15
17
 
16
18
  app.routes.draw do
17
- resources :users, :only => [:index]
18
- get 'with_custom_options', :to => 'users#with_custom_options'
19
- get 'with_custom_style', :to => 'users#with_custom_style'
20
- root :to => 'users#index'
19
+ resources :users, only: [:index]
20
+ get 'with_custom_options', to: 'users#with_custom_options'
21
+ get 'with_custom_style', to: 'users#with_custom_style'
22
+ root to: 'users#index'
21
23
  end
22
24
 
23
25
  # models
@@ -48,17 +50,17 @@ class UsersController < ApplicationController
48
50
  respond_to do |format|
49
51
  format.html do
50
52
  if is_rails_4?
51
- render :text => 'Users!'
53
+ render text: 'Users!'
52
54
  else
53
- render :plain => 'Users!'
55
+ render plain: 'Users!'
54
56
  end
55
57
  end
56
- format.csv { render :csv => User.all }
58
+ format.csv { render csv: User.all }
57
59
  end
58
60
  end
59
61
 
60
62
  def with_custom_options
61
- render_options = {:csv => User.all}.update(symbolize_param_keys(params[:custom_options]))
63
+ render_options = { csv: User.all }.update(symbolize_param_keys(params[:custom_options]))
62
64
 
63
65
  respond_to do |format|
64
66
  format.csv { render render_options }
@@ -67,10 +69,9 @@ class UsersController < ApplicationController
67
69
 
68
70
  def with_custom_style
69
71
  respond_to do |format|
70
- format.csv { render :csv => User.all, :style => :shortened }
72
+ format.csv { render csv: User.all, style: :shortened }
71
73
  end
72
74
  end
73
-
74
75
  end
75
76
 
76
77
  # helpers
File without changes
data/spec/spec_helper.rb CHANGED
@@ -1,5 +1,7 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'rubygems'
2
- $LOAD_PATH.unshift(File.expand_path(File.join(*%w{.. .. lib}), __FILE__))
4
+ $LOAD_PATH.unshift(File.expand_path(File.join('..', '..', 'lib'), __FILE__))
3
5
 
4
6
  require 'coveralls'
5
7
  Coveralls.wear!
@@ -13,13 +15,15 @@ require 'rspec/its'
13
15
  begin
14
16
  require 'rails'
15
17
  rescue LoadError
18
+ warn 'rails not loaded'
16
19
  end
17
20
 
18
- %w{data_mapper mongoid active_record}.each do |orm|
21
+ %w[data_mapper mongoid active_record].each do |orm|
19
22
  begin
20
23
  require orm
21
24
  break
22
25
  rescue LoadError
26
+ warn "#{orm} not loaded"
23
27
  end
24
28
  end
25
29
 
@@ -34,4 +38,4 @@ end
34
38
 
35
39
  Dir[File.dirname(__FILE__) + '/support/**/*.rb'].each { |file| require file }
36
40
 
37
- require File.expand_path('../spec/non_rails_app/ruby_classes' , __dir__)
41
+ require File.expand_path('../spec/non_rails_app/ruby_classes', __dir__)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: comma
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.0
4
+ version: 4.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcus Crafter
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-04-11 00:00:00.000000000 Z
12
+ date: 2019-04-21 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport
@@ -20,7 +20,7 @@ dependencies:
20
20
  version: 4.0.0
21
21
  - - "<"
22
22
  - !ruby/object:Gem::Version
23
- version: '6'
23
+ version: '6.1'
24
24
  type: :runtime
25
25
  prerelease: false
26
26
  version_requirements: !ruby/object:Gem::Requirement
@@ -30,7 +30,7 @@ dependencies:
30
30
  version: 4.0.0
31
31
  - - "<"
32
32
  - !ruby/object:Gem::Version
33
- version: '6'
33
+ version: '6.1'
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: appraisal
36
36
  requirement: !ruby/object:Gem::Requirement
@@ -136,30 +136,26 @@ files:
136
136
  - README.md
137
137
  - Rakefile
138
138
  - comma.gemspec
139
- - gemfiles/active4.0.13.gemfile
140
- - gemfiles/active4.0.13.gemfile.lock
141
- - gemfiles/active4.1.16.gemfile
142
- - gemfiles/active4.1.16.gemfile.lock
143
- - gemfiles/active4.2.8.gemfile
144
- - gemfiles/active4.2.8.gemfile.lock
145
- - gemfiles/active5.0.1.gemfile
146
- - gemfiles/active5.0.1.gemfile.lock
147
- - gemfiles/active5.1.0.gemfile
148
- - gemfiles/active5.1.0.gemfile.lock
149
- - gemfiles/active5.2.0.gemfile
150
- - gemfiles/active5.2.0.gemfile.lock
151
- - gemfiles/rails4.0.13.gemfile
152
- - gemfiles/rails4.0.13.gemfile.lock
153
- - gemfiles/rails4.1.16.gemfile
154
- - gemfiles/rails4.1.16.gemfile.lock
155
- - gemfiles/rails4.2.8.gemfile
156
- - gemfiles/rails4.2.8.gemfile.lock
157
- - gemfiles/rails5.0.1.gemfile
158
- - gemfiles/rails5.0.1.gemfile.lock
159
- - gemfiles/rails5.1.0.gemfile
160
- - gemfiles/rails5.1.0.gemfile.lock
161
- - gemfiles/rails5.2.0.gemfile
162
- - gemfiles/rails5.2.0.gemfile.lock
139
+ - gemfiles/active4.2.11.1.gemfile
140
+ - gemfiles/active4.2.11.1.gemfile.lock
141
+ - gemfiles/active5.0.7.2.gemfile
142
+ - gemfiles/active5.0.7.2.gemfile.lock
143
+ - gemfiles/active5.1.7.gemfile
144
+ - gemfiles/active5.1.7.gemfile.lock
145
+ - gemfiles/active5.2.3.gemfile
146
+ - gemfiles/active5.2.3.gemfile.lock
147
+ - gemfiles/active6.0.0.gemfile
148
+ - gemfiles/active6.0.0.gemfile.lock
149
+ - gemfiles/rails4.2.11.1.gemfile
150
+ - gemfiles/rails4.2.11.1.gemfile.lock
151
+ - gemfiles/rails5.0.7.2.gemfile
152
+ - gemfiles/rails5.0.7.2.gemfile.lock
153
+ - gemfiles/rails5.1.7.gemfile
154
+ - gemfiles/rails5.1.7.gemfile.lock
155
+ - gemfiles/rails5.2.3.gemfile
156
+ - gemfiles/rails5.2.3.gemfile.lock
157
+ - gemfiles/rails6.0.0.gemfile
158
+ - gemfiles/rails6.0.0.gemfile.lock
163
159
  - init.rb
164
160
  - lib/comma.rb
165
161
  - lib/comma/array.rb
@@ -185,6 +181,7 @@ files:
185
181
  - spec/rails_app/data_mapper/config.rb
186
182
  - spec/rails_app/mongoid/config.rb
187
183
  - spec/rails_app/rails_app.rb
184
+ - spec/rails_app/tmp/.gitkeep
188
185
  - spec/spec_helper.rb
189
186
  homepage: http://github.com/comma-csv/comma
190
187
  licenses:
@@ -205,8 +202,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
205
202
  - !ruby/object:Gem::Version
206
203
  version: '0'
207
204
  requirements: []
208
- rubyforge_project: comma
209
- rubygems_version: 2.7.6
205
+ rubygems_version: 3.0.3
210
206
  signing_key:
211
207
  specification_version: 4
212
208
  summary: Ruby Comma Seperated Values generation library
@@ -224,4 +220,5 @@ test_files:
224
220
  - spec/rails_app/data_mapper/config.rb
225
221
  - spec/rails_app/mongoid/config.rb
226
222
  - spec/rails_app/rails_app.rb
223
+ - spec/rails_app/tmp/.gitkeep
227
224
  - spec/spec_helper.rb
@@ -1,107 +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
- activemodel (4.0.13)
11
- activesupport (= 4.0.13)
12
- builder (~> 3.1.0)
13
- activerecord (4.0.13)
14
- activemodel (= 4.0.13)
15
- activerecord-deprecated_finders (~> 1.0.2)
16
- activesupport (= 4.0.13)
17
- arel (~> 4.0.0)
18
- activerecord-deprecated_finders (1.0.4)
19
- activesupport (4.0.13)
20
- i18n (~> 0.6, >= 0.6.9)
21
- minitest (~> 4.2)
22
- multi_json (~> 1.3)
23
- thread_safe (~> 0.1)
24
- tzinfo (~> 0.3.37)
25
- appraisal (1.0.3)
26
- bundler
27
- rake
28
- thor (>= 0.14.0)
29
- arel (4.0.2)
30
- ast (2.3.0)
31
- builder (3.1.4)
32
- coveralls (0.8.14)
33
- json (>= 1.8, < 3)
34
- simplecov (~> 0.12.0)
35
- term-ansicolor (~> 1.3)
36
- thor (~> 0.19.1)
37
- tins (~> 1.6.0)
38
- diff-lcs (1.2.5)
39
- docile (1.1.5)
40
- i18n (0.7.0)
41
- json (2.0.1)
42
- minitest (4.7.5)
43
- multi_json (1.12.1)
44
- parser (2.3.1.4)
45
- ast (~> 2.2)
46
- powerpack (0.1.1)
47
- rainbow (2.1.0)
48
- rake (10.5.0)
49
- rspec (3.5.0)
50
- rspec-core (~> 3.5.0)
51
- rspec-expectations (~> 3.5.0)
52
- rspec-mocks (~> 3.5.0)
53
- rspec-activemodel-mocks (1.0.3)
54
- activemodel (>= 3.0)
55
- activesupport (>= 3.0)
56
- rspec-mocks (>= 2.99, < 4.0)
57
- rspec-core (3.5.2)
58
- rspec-support (~> 3.5.0)
59
- rspec-expectations (3.5.0)
60
- diff-lcs (>= 1.2.0, < 2.0)
61
- rspec-support (~> 3.5.0)
62
- rspec-its (1.2.0)
63
- rspec-core (>= 3.0.0)
64
- rspec-expectations (>= 3.0.0)
65
- rspec-mocks (3.5.0)
66
- diff-lcs (>= 1.2.0, < 2.0)
67
- rspec-support (~> 3.5.0)
68
- rspec-support (3.5.0)
69
- rubocop (0.43.0)
70
- parser (>= 2.3.1.1, < 3.0)
71
- powerpack (~> 0.1)
72
- rainbow (>= 1.99.1, < 3.0)
73
- ruby-progressbar (~> 1.7)
74
- unicode-display_width (~> 1.0, >= 1.0.1)
75
- ruby-progressbar (1.8.1)
76
- simplecov (0.12.0)
77
- docile (~> 1.1.0)
78
- json (>= 1.8, < 3)
79
- simplecov-html (~> 0.10.0)
80
- simplecov-html (0.10.0)
81
- sqlite3 (1.3.11)
82
- term-ansicolor (1.3.2)
83
- tins (~> 1.0)
84
- thor (0.19.1)
85
- thread_safe (0.3.5)
86
- tins (1.6.0)
87
- tzinfo (0.3.51)
88
- unicode-display_width (1.1.1)
89
-
90
- PLATFORMS
91
- ruby
92
-
93
- DEPENDENCIES
94
- activerecord (= 4.0.13)
95
- activesupport (= 4.0.13)
96
- appraisal (~> 1.0.0)
97
- comma!
98
- coveralls
99
- rake (~> 10.5.0)
100
- rspec (~> 3.5.0)
101
- rspec-activemodel-mocks
102
- rspec-its
103
- rubocop
104
- sqlite3 (~> 1.3.11)
105
-
106
- BUNDLED WITH
107
- 1.13.2
@@ -1,106 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- comma (4.2.0)
5
- activesupport (>= 4.0.0, < 6)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- activemodel (4.1.16)
11
- activesupport (= 4.1.16)
12
- builder (~> 3.1)
13
- activerecord (4.1.16)
14
- activemodel (= 4.1.16)
15
- activesupport (= 4.1.16)
16
- arel (~> 5.0.0)
17
- activesupport (4.1.16)
18
- i18n (~> 0.6, >= 0.6.9)
19
- json (~> 1.7, >= 1.7.7)
20
- minitest (~> 5.1)
21
- thread_safe (~> 0.1)
22
- tzinfo (~> 1.1)
23
- appraisal (1.0.3)
24
- bundler
25
- rake
26
- thor (>= 0.14.0)
27
- arel (5.0.1.20140414130214)
28
- ast (2.3.0)
29
- builder (3.2.2)
30
- coveralls (0.8.15)
31
- json (>= 1.8, < 3)
32
- simplecov (~> 0.12.0)
33
- term-ansicolor (~> 1.3)
34
- thor (~> 0.19.1)
35
- tins (>= 1.6.0, < 2)
36
- diff-lcs (1.2.5)
37
- docile (1.1.5)
38
- i18n (0.7.0)
39
- json (1.8.6)
40
- minitest (5.9.0)
41
- parser (2.4.0.0)
42
- ast (~> 2.2)
43
- powerpack (0.1.1)
44
- rainbow (2.2.2)
45
- rake
46
- rake (10.5.0)
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.0.3)
52
- activemodel (>= 3.0)
53
- activesupport (>= 3.0)
54
- rspec-mocks (>= 2.99, < 4.0)
55
- rspec-core (3.5.2)
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.2.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.48.1)
68
- parser (>= 2.3.3.1, < 3.0)
69
- powerpack (~> 0.1)
70
- rainbow (>= 1.99.1, < 3.0)
71
- ruby-progressbar (~> 1.7)
72
- unicode-display_width (~> 1.0, >= 1.0.1)
73
- ruby-progressbar (1.8.1)
74
- simplecov (0.12.0)
75
- docile (~> 1.1.0)
76
- json (>= 1.8, < 3)
77
- simplecov-html (~> 0.10.0)
78
- simplecov-html (0.10.0)
79
- sqlite3 (1.3.11)
80
- term-ansicolor (1.3.2)
81
- tins (~> 1.0)
82
- thor (0.19.1)
83
- thread_safe (0.3.5)
84
- tins (1.12.0)
85
- tzinfo (1.2.2)
86
- thread_safe (~> 0.1)
87
- unicode-display_width (1.2.1)
88
-
89
- PLATFORMS
90
- ruby
91
-
92
- DEPENDENCIES
93
- activerecord (= 4.1.16)
94
- activesupport (= 4.1.16)
95
- appraisal (~> 1.0.0)
96
- comma!
97
- coveralls
98
- rake (~> 10.5.0)
99
- rspec (~> 3.5.0)
100
- rspec-activemodel-mocks
101
- rspec-its
102
- rubocop
103
- sqlite3 (~> 1.3.11)
104
-
105
- BUNDLED WITH
106
- 1.16.1