temporal_tables 0.7.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/test.yml +53 -0
  3. data/.rubocop.yml +158 -0
  4. data/.ruby-version +1 -1
  5. data/.travis.yml +5 -7
  6. data/Gemfile +2 -0
  7. data/README.md +21 -5
  8. data/Rakefile +7 -2
  9. data/config.ru +2 -0
  10. data/gemfiles/Gemfile.6.0.mysql +1 -1
  11. data/gemfiles/Gemfile.6.0.mysql.lock +104 -104
  12. data/gemfiles/Gemfile.6.0.pg +1 -1
  13. data/gemfiles/Gemfile.6.0.pg.lock +110 -105
  14. data/gemfiles/{Gemfile.5.1.mysql → Gemfile.6.1.mysql} +2 -2
  15. data/gemfiles/Gemfile.6.1.mysql.lock +180 -0
  16. data/gemfiles/{Gemfile.5.2.pg → Gemfile.6.1.pg} +1 -1
  17. data/gemfiles/Gemfile.6.1.pg.lock +180 -0
  18. data/gemfiles/{Gemfile.5.0.mysql → Gemfile.7.0.mysql} +2 -2
  19. data/gemfiles/Gemfile.7.0.mysql.lock +173 -0
  20. data/gemfiles/{Gemfile.5.1.pg → Gemfile.7.0.pg} +1 -1
  21. data/gemfiles/Gemfile.7.0.pg.lock +173 -0
  22. data/lib/temporal_tables/arel_table.rb +11 -10
  23. data/lib/temporal_tables/association_extensions.rb +2 -0
  24. data/lib/temporal_tables/connection_adapters/mysql_adapter.rb +5 -3
  25. data/lib/temporal_tables/connection_adapters/postgresql_adapter.rb +5 -3
  26. data/lib/temporal_tables/history_hook.rb +8 -5
  27. data/lib/temporal_tables/preloader_extensions.rb +2 -0
  28. data/lib/temporal_tables/reflection_extensions.rb +11 -14
  29. data/lib/temporal_tables/relation_extensions.rb +11 -24
  30. data/lib/temporal_tables/temporal_adapter.rb +82 -88
  31. data/lib/temporal_tables/temporal_class.rb +29 -28
  32. data/lib/temporal_tables/version.rb +3 -1
  33. data/lib/temporal_tables/whodunnit.rb +5 -3
  34. data/lib/temporal_tables.rb +42 -32
  35. data/spec/basic_history_spec.rb +65 -35
  36. data/spec/internal/app/models/broom.rb +2 -0
  37. data/spec/internal/app/models/cat.rb +5 -0
  38. data/spec/internal/app/models/cat_life.rb +5 -0
  39. data/spec/internal/app/models/coven.rb +2 -0
  40. data/spec/internal/app/models/flying_machine.rb +2 -0
  41. data/spec/internal/app/models/person.rb +2 -0
  42. data/spec/internal/app/models/rocket_broom.rb +2 -0
  43. data/spec/internal/app/models/wart.rb +3 -1
  44. data/spec/internal/config/database.ci.yml +12 -0
  45. data/spec/internal/db/schema.rb +22 -0
  46. data/spec/spec_helper.rb +39 -5
  47. data/spec/support/database.rb +10 -6
  48. data/temporal_tables.gemspec +31 -18
  49. metadata +111 -41
  50. data/CHANGELOG.md +0 -73
  51. data/gemfiles/Gemfile.5.0.mysql.lock +0 -147
  52. data/gemfiles/Gemfile.5.0.pg +0 -16
  53. data/gemfiles/Gemfile.5.0.pg.lock +0 -147
  54. data/gemfiles/Gemfile.5.1.mysql.lock +0 -147
  55. data/gemfiles/Gemfile.5.1.pg.lock +0 -147
  56. data/gemfiles/Gemfile.5.2.mysql +0 -16
  57. data/gemfiles/Gemfile.5.2.mysql.lock +0 -155
  58. data/gemfiles/Gemfile.5.2.pg.lock +0 -155
  59. data/lib/temporal_tables/join_extensions.rb +0 -20
  60. data/spec/extensions/combustion.rb +0 -9
  61. data/spec/internal/config/routes.rb +0 -3
metadata CHANGED
@@ -1,65 +1,107 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: temporal_tables
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brent Kroeker
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-29 00:00:00.000000000 Z
11
+ date: 2022-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - ">="
18
- - !ruby/object:Gem::Version
19
- version: '5.0'
20
- - - "<="
21
18
  - !ruby/object:Gem::Version
22
19
  version: '6.0'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '7.1'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - ">="
28
- - !ruby/object:Gem::Version
29
- version: '5.0'
30
- - - "<="
31
28
  - !ruby/object:Gem::Version
32
29
  version: '6.0'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '7.1'
33
33
  - !ruby/object:Gem::Dependency
34
- name: rspec
34
+ name: combustion
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '3.4'
39
+ version: '1'
40
40
  type: :development
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '3.4'
46
+ version: '1'
47
47
  - !ruby/object:Gem::Dependency
48
- name: combustion
48
+ name: database_cleaner
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ - !ruby/object:Gem::Dependency
62
+ name: gemika
49
63
  requirement: !ruby/object:Gem::Requirement
50
64
  requirements:
51
65
  - - "~>"
52
66
  - !ruby/object:Gem::Version
53
- version: 0.9.1
67
+ version: '0.6'
54
68
  type: :development
55
69
  prerelease: false
56
70
  version_requirements: !ruby/object:Gem::Requirement
57
71
  requirements:
58
72
  - - "~>"
59
73
  - !ruby/object:Gem::Version
60
- version: 0.9.1
74
+ version: '0.6'
61
75
  - !ruby/object:Gem::Dependency
62
- name: gemika
76
+ name: mysql2
77
+ requirement: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ type: :development
83
+ prerelease: false
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ - !ruby/object:Gem::Dependency
90
+ name: pg
91
+ requirement: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ type: :development
97
+ prerelease: false
98
+ version_requirements: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ - !ruby/object:Gem::Dependency
104
+ name: pry
63
105
  requirement: !ruby/object:Gem::Requirement
64
106
  requirements:
65
107
  - - ">="
@@ -72,8 +114,37 @@ dependencies:
72
114
  - - ">="
73
115
  - !ruby/object:Gem::Version
74
116
  version: '0'
75
- description: Easily recall what your data looked like at any point in the past! TemporalTables
76
- sets up and maintains history tables to track all temporal changes to to your data.
117
+ - !ruby/object:Gem::Dependency
118
+ name: rspec
119
+ requirement: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - "~>"
122
+ - !ruby/object:Gem::Version
123
+ version: '3.4'
124
+ type: :development
125
+ prerelease: false
126
+ version_requirements: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - "~>"
129
+ - !ruby/object:Gem::Version
130
+ version: '3.4'
131
+ - !ruby/object:Gem::Dependency
132
+ name: rubocop
133
+ requirement: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - ">="
136
+ - !ruby/object:Gem::Version
137
+ version: '0'
138
+ type: :development
139
+ prerelease: false
140
+ version_requirements: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - ">="
143
+ - !ruby/object:Gem::Version
144
+ version: '0'
145
+ description: |2
146
+ Easily recall what your data looked like at any point in the past!
147
+ TemporalTables sets up and maintains history tables to track all temporal changes to to your data.
77
148
  email:
78
149
  - brent@bkroeker.com
79
150
  executables: []
@@ -81,38 +152,34 @@ extensions: []
81
152
  extra_rdoc_files: []
82
153
  files:
83
154
  - ".editorconfig"
155
+ - ".github/workflows/test.yml"
84
156
  - ".gitignore"
157
+ - ".rubocop.yml"
85
158
  - ".ruby-version"
86
159
  - ".travis.yml"
87
- - CHANGELOG.md
88
160
  - Gemfile
89
161
  - LICENSE.txt
90
162
  - README.md
91
163
  - Rakefile
92
164
  - config.ru
93
- - gemfiles/Gemfile.5.0.mysql
94
- - gemfiles/Gemfile.5.0.mysql.lock
95
- - gemfiles/Gemfile.5.0.pg
96
- - gemfiles/Gemfile.5.0.pg.lock
97
- - gemfiles/Gemfile.5.1.mysql
98
- - gemfiles/Gemfile.5.1.mysql.lock
99
- - gemfiles/Gemfile.5.1.pg
100
- - gemfiles/Gemfile.5.1.pg.lock
101
- - gemfiles/Gemfile.5.2.mysql
102
- - gemfiles/Gemfile.5.2.mysql.lock
103
- - gemfiles/Gemfile.5.2.pg
104
- - gemfiles/Gemfile.5.2.pg.lock
105
165
  - gemfiles/Gemfile.6.0.mysql
106
166
  - gemfiles/Gemfile.6.0.mysql.lock
107
167
  - gemfiles/Gemfile.6.0.pg
108
168
  - gemfiles/Gemfile.6.0.pg.lock
169
+ - gemfiles/Gemfile.6.1.mysql
170
+ - gemfiles/Gemfile.6.1.mysql.lock
171
+ - gemfiles/Gemfile.6.1.pg
172
+ - gemfiles/Gemfile.6.1.pg.lock
173
+ - gemfiles/Gemfile.7.0.mysql
174
+ - gemfiles/Gemfile.7.0.mysql.lock
175
+ - gemfiles/Gemfile.7.0.pg
176
+ - gemfiles/Gemfile.7.0.pg.lock
109
177
  - lib/temporal_tables.rb
110
178
  - lib/temporal_tables/arel_table.rb
111
179
  - lib/temporal_tables/association_extensions.rb
112
180
  - lib/temporal_tables/connection_adapters/mysql_adapter.rb
113
181
  - lib/temporal_tables/connection_adapters/postgresql_adapter.rb
114
182
  - lib/temporal_tables/history_hook.rb
115
- - lib/temporal_tables/join_extensions.rb
116
183
  - lib/temporal_tables/preloader_extensions.rb
117
184
  - lib/temporal_tables/reflection_extensions.rb
118
185
  - lib/temporal_tables/relation_extensions.rb
@@ -121,15 +188,16 @@ files:
121
188
  - lib/temporal_tables/version.rb
122
189
  - lib/temporal_tables/whodunnit.rb
123
190
  - spec/basic_history_spec.rb
124
- - spec/extensions/combustion.rb
125
191
  - spec/internal/app/models/broom.rb
192
+ - spec/internal/app/models/cat.rb
193
+ - spec/internal/app/models/cat_life.rb
126
194
  - spec/internal/app/models/coven.rb
127
195
  - spec/internal/app/models/flying_machine.rb
128
196
  - spec/internal/app/models/person.rb
129
197
  - spec/internal/app/models/rocket_broom.rb
130
198
  - spec/internal/app/models/wart.rb
199
+ - spec/internal/config/database.ci.yml
131
200
  - spec/internal/config/database.sample.yml
132
- - spec/internal/config/routes.rb
133
201
  - spec/internal/db/schema.rb
134
202
  - spec/internal/log/.gitignore
135
203
  - spec/internal/public/favicon.ico
@@ -138,8 +206,9 @@ files:
138
206
  - temporal_tables.gemspec
139
207
  homepage: ''
140
208
  licenses: []
141
- metadata: {}
142
- post_install_message:
209
+ metadata:
210
+ rubygems_mfa_required: 'true'
211
+ post_install_message:
143
212
  rdoc_options: []
144
213
  require_paths:
145
214
  - lib
@@ -147,28 +216,29 @@ required_ruby_version: !ruby/object:Gem::Requirement
147
216
  requirements:
148
217
  - - ">="
149
218
  - !ruby/object:Gem::Version
150
- version: '0'
219
+ version: 2.5.0
151
220
  required_rubygems_version: !ruby/object:Gem::Requirement
152
221
  requirements:
153
222
  - - ">="
154
223
  - !ruby/object:Gem::Version
155
224
  version: '0'
156
225
  requirements: []
157
- rubygems_version: 3.0.3
158
- signing_key:
226
+ rubygems_version: 3.2.3
227
+ signing_key:
159
228
  specification_version: 4
160
229
  summary: Tracks all history of changes to a table automatically in a history table.
161
230
  test_files:
162
231
  - spec/basic_history_spec.rb
163
- - spec/extensions/combustion.rb
164
232
  - spec/internal/app/models/broom.rb
233
+ - spec/internal/app/models/cat.rb
234
+ - spec/internal/app/models/cat_life.rb
165
235
  - spec/internal/app/models/coven.rb
166
236
  - spec/internal/app/models/flying_machine.rb
167
237
  - spec/internal/app/models/person.rb
168
238
  - spec/internal/app/models/rocket_broom.rb
169
239
  - spec/internal/app/models/wart.rb
240
+ - spec/internal/config/database.ci.yml
170
241
  - spec/internal/config/database.sample.yml
171
- - spec/internal/config/routes.rb
172
242
  - spec/internal/db/schema.rb
173
243
  - spec/internal/log/.gitignore
174
244
  - spec/internal/public/favicon.ico
data/CHANGELOG.md DELETED
@@ -1,73 +0,0 @@
1
- # CHANGELOG
2
-
3
- ## 0.4.0 (2016-12-13)
4
-
5
- * added multi-environment spec framework
6
- * bug fix: mysql2 gem should now be functional
7
-
8
- ## 0.3.1 (2015-10-08)
9
-
10
- * bug fix: accepts reserved keywords for postgres column names, like "default"
11
- * bug fix: correctly handles models nested within modules
12
-
13
- ## 0.3.0 (2014-07-04)
14
-
15
- * Updated for Rails 4
16
-
17
- ## 0.2.7 (2013-07-10)
18
-
19
- * bug fix: fix problems with STI instantiation
20
-
21
- ## 0.2.6 (2013-05-23)
22
-
23
- * bug fix: explicitly set sti_name on history classes of STI subclasses
24
-
25
- ## 0.2.5 (2013-04-24)
26
-
27
- * bug fix: rename_column wasn't linked in correctly
28
-
29
- ## 0.2.4 (2013-03-07)
30
-
31
- * bug fix: another fix for removing indexes
32
-
33
- # 0.2.3 (2013-02-25)
34
-
35
- * bug fix: history classes did not have the correct primary key set, which could provide unexpected results in certain use cases
36
- * added a history method to ActiveRecord::Base objects to return a sorted list of all historical versions of that object.
37
- * added prev and next methods to history objects to aid in traversing the historical versions of an object.
38
- * added orig_obj method to history objects to return their non-historical objects
39
-
40
- ## 0.2.2 (2013-02-25)
41
-
42
- * bug fix: add_index with specified name caused an index collision
43
-
44
- ## 0.2.1 (2013-02-21)
45
-
46
- * bug fix: removing indexes didn't work
47
-
48
- ## 0.2.0 (2013-02-21)
49
-
50
- * added support for indexes
51
-
52
- ## 0.1.0 (2013-01-10)
53
-
54
- * added history querying
55
-
56
- ## 0.0.6 (2012-11-29)
57
-
58
- * optimized the history table index
59
-
60
- ## 0.0.5 (2012-11-29)
61
-
62
- * added indexes to history tables
63
-
64
- ## 0.0.4 (2012-10-19)
65
-
66
- * added updated_by support
67
- * added some configuration options
68
-
69
- ## 0.0.2 (2012-10-12)
70
-
71
- * added support for rename_table
72
- * added add_temporal_table(table_name) method
73
- * added remove_temporal_table(table_name) method
@@ -1,147 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- temporal_tables (0.7.0)
5
- rails (>= 5.0, <= 6.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actioncable (5.0.7.1)
11
- actionpack (= 5.0.7.1)
12
- nio4r (>= 1.2, < 3.0)
13
- websocket-driver (~> 0.6.1)
14
- actionmailer (5.0.7.1)
15
- actionpack (= 5.0.7.1)
16
- actionview (= 5.0.7.1)
17
- activejob (= 5.0.7.1)
18
- mail (~> 2.5, >= 2.5.4)
19
- rails-dom-testing (~> 2.0)
20
- actionpack (5.0.7.1)
21
- actionview (= 5.0.7.1)
22
- activesupport (= 5.0.7.1)
23
- rack (~> 2.0)
24
- rack-test (~> 0.6.3)
25
- rails-dom-testing (~> 2.0)
26
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
- actionview (5.0.7.1)
28
- activesupport (= 5.0.7.1)
29
- builder (~> 3.1)
30
- erubis (~> 2.7.0)
31
- rails-dom-testing (~> 2.0)
32
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
- activejob (5.0.7.1)
34
- activesupport (= 5.0.7.1)
35
- globalid (>= 0.3.6)
36
- activemodel (5.0.7.1)
37
- activesupport (= 5.0.7.1)
38
- activerecord (5.0.7.1)
39
- activemodel (= 5.0.7.1)
40
- activesupport (= 5.0.7.1)
41
- arel (~> 7.0)
42
- activesupport (5.0.7.1)
43
- concurrent-ruby (~> 1.0, >= 1.0.2)
44
- i18n (>= 0.7, < 2)
45
- minitest (~> 5.1)
46
- tzinfo (~> 1.1)
47
- arel (7.1.4)
48
- builder (3.2.3)
49
- byebug (10.0.2)
50
- combustion (1.0.0)
51
- activesupport (>= 3.0.0)
52
- railties (>= 3.0.0)
53
- thor (>= 0.14.6)
54
- concurrent-ruby (1.1.4)
55
- crass (1.0.4)
56
- database_cleaner (1.7.0)
57
- diff-lcs (1.3)
58
- erubis (2.7.0)
59
- gemika (0.3.4)
60
- globalid (0.4.1)
61
- activesupport (>= 4.2.0)
62
- i18n (1.5.1)
63
- concurrent-ruby (~> 1.0)
64
- loofah (2.2.3)
65
- crass (~> 1.0.2)
66
- nokogiri (>= 1.5.9)
67
- mail (2.7.1)
68
- mini_mime (>= 0.1.1)
69
- method_source (0.9.2)
70
- mini_mime (1.0.1)
71
- mini_portile2 (2.4.0)
72
- minitest (5.11.3)
73
- mysql2 (0.4.10)
74
- nio4r (2.3.1)
75
- nokogiri (1.10.0)
76
- mini_portile2 (~> 2.4.0)
77
- rack (2.0.6)
78
- rack-test (0.6.3)
79
- rack (>= 1.0)
80
- rails (5.0.7.1)
81
- actioncable (= 5.0.7.1)
82
- actionmailer (= 5.0.7.1)
83
- actionpack (= 5.0.7.1)
84
- actionview (= 5.0.7.1)
85
- activejob (= 5.0.7.1)
86
- activemodel (= 5.0.7.1)
87
- activerecord (= 5.0.7.1)
88
- activesupport (= 5.0.7.1)
89
- bundler (>= 1.3.0)
90
- railties (= 5.0.7.1)
91
- sprockets-rails (>= 2.0.0)
92
- rails-dom-testing (2.0.3)
93
- activesupport (>= 4.2.0)
94
- nokogiri (>= 1.6)
95
- rails-html-sanitizer (1.0.4)
96
- loofah (~> 2.2, >= 2.2.2)
97
- railties (5.0.7.1)
98
- actionpack (= 5.0.7.1)
99
- activesupport (= 5.0.7.1)
100
- method_source
101
- rake (>= 0.8.7)
102
- thor (>= 0.18.1, < 2.0)
103
- rake (12.3.2)
104
- rspec (3.8.0)
105
- rspec-core (~> 3.8.0)
106
- rspec-expectations (~> 3.8.0)
107
- rspec-mocks (~> 3.8.0)
108
- rspec-core (3.8.0)
109
- rspec-support (~> 3.8.0)
110
- rspec-expectations (3.8.2)
111
- diff-lcs (>= 1.2.0, < 2.0)
112
- rspec-support (~> 3.8.0)
113
- rspec-mocks (3.8.0)
114
- diff-lcs (>= 1.2.0, < 2.0)
115
- rspec-support (~> 3.8.0)
116
- rspec-support (3.8.0)
117
- sprockets (3.7.2)
118
- concurrent-ruby (~> 1.0)
119
- rack (> 1, < 3)
120
- sprockets-rails (3.2.1)
121
- actionpack (>= 4.0)
122
- activesupport (>= 4.0)
123
- sprockets (>= 3.0.0)
124
- thor (0.20.3)
125
- thread_safe (0.3.6)
126
- tzinfo (1.2.5)
127
- thread_safe (~> 0.1)
128
- websocket-driver (0.6.5)
129
- websocket-extensions (>= 0.1.0)
130
- websocket-extensions (0.1.3)
131
-
132
- PLATFORMS
133
- ruby
134
-
135
- DEPENDENCIES
136
- byebug
137
- combustion
138
- database_cleaner
139
- gemika
140
- mysql2 (~> 0.4.4)
141
- rails (~> 5.0.0)
142
- rake
143
- rspec (~> 3.4)
144
- temporal_tables!
145
-
146
- BUNDLED WITH
147
- 1.17.3
@@ -1,16 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Runtime dependencies
4
- gem 'rails', '~> 5.0.0'
5
- gem 'pg', '>= 0.18', '< 2.0'
6
-
7
- # Development dependencies
8
- gem 'rspec', '~> 3.4'
9
- gem 'rake'
10
- gem 'byebug'
11
- gem 'database_cleaner'
12
- gem 'combustion'
13
- gem 'gemika'
14
-
15
- # Gem under test
16
- gem 'temporal_tables', :path => '..'
@@ -1,147 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- temporal_tables (0.7.0)
5
- rails (>= 5.0, <= 6.0)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actioncable (5.0.7.1)
11
- actionpack (= 5.0.7.1)
12
- nio4r (>= 1.2, < 3.0)
13
- websocket-driver (~> 0.6.1)
14
- actionmailer (5.0.7.1)
15
- actionpack (= 5.0.7.1)
16
- actionview (= 5.0.7.1)
17
- activejob (= 5.0.7.1)
18
- mail (~> 2.5, >= 2.5.4)
19
- rails-dom-testing (~> 2.0)
20
- actionpack (5.0.7.1)
21
- actionview (= 5.0.7.1)
22
- activesupport (= 5.0.7.1)
23
- rack (~> 2.0)
24
- rack-test (~> 0.6.3)
25
- rails-dom-testing (~> 2.0)
26
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
- actionview (5.0.7.1)
28
- activesupport (= 5.0.7.1)
29
- builder (~> 3.1)
30
- erubis (~> 2.7.0)
31
- rails-dom-testing (~> 2.0)
32
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
- activejob (5.0.7.1)
34
- activesupport (= 5.0.7.1)
35
- globalid (>= 0.3.6)
36
- activemodel (5.0.7.1)
37
- activesupport (= 5.0.7.1)
38
- activerecord (5.0.7.1)
39
- activemodel (= 5.0.7.1)
40
- activesupport (= 5.0.7.1)
41
- arel (~> 7.0)
42
- activesupport (5.0.7.1)
43
- concurrent-ruby (~> 1.0, >= 1.0.2)
44
- i18n (>= 0.7, < 2)
45
- minitest (~> 5.1)
46
- tzinfo (~> 1.1)
47
- arel (7.1.4)
48
- builder (3.2.3)
49
- byebug (10.0.2)
50
- combustion (1.0.0)
51
- activesupport (>= 3.0.0)
52
- railties (>= 3.0.0)
53
- thor (>= 0.14.6)
54
- concurrent-ruby (1.1.4)
55
- crass (1.0.4)
56
- database_cleaner (1.7.0)
57
- diff-lcs (1.3)
58
- erubis (2.7.0)
59
- gemika (0.3.4)
60
- globalid (0.4.1)
61
- activesupport (>= 4.2.0)
62
- i18n (1.5.1)
63
- concurrent-ruby (~> 1.0)
64
- loofah (2.2.3)
65
- crass (~> 1.0.2)
66
- nokogiri (>= 1.5.9)
67
- mail (2.7.1)
68
- mini_mime (>= 0.1.1)
69
- method_source (0.9.2)
70
- mini_mime (1.0.1)
71
- mini_portile2 (2.4.0)
72
- minitest (5.11.3)
73
- nio4r (2.3.1)
74
- nokogiri (1.10.0)
75
- mini_portile2 (~> 2.4.0)
76
- pg (1.1.3)
77
- rack (2.0.6)
78
- rack-test (0.6.3)
79
- rack (>= 1.0)
80
- rails (5.0.7.1)
81
- actioncable (= 5.0.7.1)
82
- actionmailer (= 5.0.7.1)
83
- actionpack (= 5.0.7.1)
84
- actionview (= 5.0.7.1)
85
- activejob (= 5.0.7.1)
86
- activemodel (= 5.0.7.1)
87
- activerecord (= 5.0.7.1)
88
- activesupport (= 5.0.7.1)
89
- bundler (>= 1.3.0)
90
- railties (= 5.0.7.1)
91
- sprockets-rails (>= 2.0.0)
92
- rails-dom-testing (2.0.3)
93
- activesupport (>= 4.2.0)
94
- nokogiri (>= 1.6)
95
- rails-html-sanitizer (1.0.4)
96
- loofah (~> 2.2, >= 2.2.2)
97
- railties (5.0.7.1)
98
- actionpack (= 5.0.7.1)
99
- activesupport (= 5.0.7.1)
100
- method_source
101
- rake (>= 0.8.7)
102
- thor (>= 0.18.1, < 2.0)
103
- rake (12.3.2)
104
- rspec (3.8.0)
105
- rspec-core (~> 3.8.0)
106
- rspec-expectations (~> 3.8.0)
107
- rspec-mocks (~> 3.8.0)
108
- rspec-core (3.8.0)
109
- rspec-support (~> 3.8.0)
110
- rspec-expectations (3.8.2)
111
- diff-lcs (>= 1.2.0, < 2.0)
112
- rspec-support (~> 3.8.0)
113
- rspec-mocks (3.8.0)
114
- diff-lcs (>= 1.2.0, < 2.0)
115
- rspec-support (~> 3.8.0)
116
- rspec-support (3.8.0)
117
- sprockets (3.7.2)
118
- concurrent-ruby (~> 1.0)
119
- rack (> 1, < 3)
120
- sprockets-rails (3.2.1)
121
- actionpack (>= 4.0)
122
- activesupport (>= 4.0)
123
- sprockets (>= 3.0.0)
124
- thor (0.20.3)
125
- thread_safe (0.3.6)
126
- tzinfo (1.2.5)
127
- thread_safe (~> 0.1)
128
- websocket-driver (0.6.5)
129
- websocket-extensions (>= 0.1.0)
130
- websocket-extensions (0.1.3)
131
-
132
- PLATFORMS
133
- ruby
134
-
135
- DEPENDENCIES
136
- byebug
137
- combustion
138
- database_cleaner
139
- gemika
140
- pg (>= 0.18, < 2.0)
141
- rails (~> 5.0.0)
142
- rake
143
- rspec (~> 3.4)
144
- temporal_tables!
145
-
146
- BUNDLED WITH
147
- 1.17.3