temporal_tables 0.8.1 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (55) 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 -5
  6. data/Gemfile +2 -0
  7. data/README.md +15 -5
  8. data/Rakefile +7 -2
  9. data/config.ru +2 -0
  10. data/gemfiles/Gemfile.6.0.mysql.lock +84 -84
  11. data/gemfiles/Gemfile.6.0.pg.lock +103 -98
  12. data/gemfiles/Gemfile.6.1.mysql.lock +180 -0
  13. data/gemfiles/Gemfile.6.1.pg.lock +180 -0
  14. data/gemfiles/{Gemfile.5.2.mysql → Gemfile.7.0.mysql} +2 -2
  15. data/gemfiles/Gemfile.7.0.mysql.lock +173 -0
  16. data/gemfiles/{Gemfile.5.2.pg → Gemfile.7.0.pg} +1 -1
  17. data/gemfiles/Gemfile.7.0.pg.lock +173 -0
  18. data/lib/temporal_tables/arel_table.rb +10 -9
  19. data/lib/temporal_tables/association_extensions.rb +2 -0
  20. data/lib/temporal_tables/connection_adapters/mysql_adapter.rb +5 -3
  21. data/lib/temporal_tables/connection_adapters/postgresql_adapter.rb +5 -3
  22. data/lib/temporal_tables/history_hook.rb +8 -5
  23. data/lib/temporal_tables/preloader_extensions.rb +2 -0
  24. data/lib/temporal_tables/reflection_extensions.rb +11 -14
  25. data/lib/temporal_tables/relation_extensions.rb +11 -24
  26. data/lib/temporal_tables/temporal_adapter.rb +77 -90
  27. data/lib/temporal_tables/temporal_class.rb +29 -28
  28. data/lib/temporal_tables/version.rb +3 -1
  29. data/lib/temporal_tables/whodunnit.rb +5 -3
  30. data/lib/temporal_tables.rb +42 -32
  31. data/spec/basic_history_spec.rb +52 -43
  32. data/spec/internal/app/models/broom.rb +2 -0
  33. data/spec/internal/app/models/cat.rb +3 -1
  34. data/spec/internal/app/models/cat_life.rb +2 -0
  35. data/spec/internal/app/models/coven.rb +2 -0
  36. data/spec/internal/app/models/flying_machine.rb +2 -0
  37. data/spec/internal/app/models/person.rb +2 -0
  38. data/spec/internal/app/models/rocket_broom.rb +2 -0
  39. data/spec/internal/app/models/wart.rb +3 -1
  40. data/spec/internal/config/database.ci.yml +12 -0
  41. data/spec/internal/db/schema.rb +8 -4
  42. data/spec/spec_helper.rb +39 -5
  43. data/spec/support/database.rb +10 -6
  44. data/temporal_tables.gemspec +31 -18
  45. metadata +103 -35
  46. data/.github/workflow/test.yml +0 -44
  47. data/gemfiles/Gemfile.5.1.mysql +0 -16
  48. data/gemfiles/Gemfile.5.1.mysql.lock +0 -147
  49. data/gemfiles/Gemfile.5.1.pg +0 -16
  50. data/gemfiles/Gemfile.5.1.pg.lock +0 -147
  51. data/gemfiles/Gemfile.5.2.mysql.lock +0 -155
  52. data/gemfiles/Gemfile.5.2.pg.lock +0 -155
  53. data/lib/temporal_tables/join_extensions.rb +0 -20
  54. data/spec/extensions/combustion.rb +0 -9
  55. data/spec/internal/config/routes.rb +0 -3
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: temporal_tables
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
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: 2020-03-20 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
@@ -16,50 +16,92 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '5.0'
19
+ version: '6.0'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '6.1'
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
28
  - !ruby/object:Gem::Version
29
- version: '5.0'
29
+ version: '6.0'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '6.1'
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,8 +152,9 @@ extensions: []
81
152
  extra_rdoc_files: []
82
153
  files:
83
154
  - ".editorconfig"
84
- - ".github/workflow/test.yml"
155
+ - ".github/workflows/test.yml"
85
156
  - ".gitignore"
157
+ - ".rubocop.yml"
86
158
  - ".ruby-version"
87
159
  - ".travis.yml"
88
160
  - Gemfile
@@ -90,27 +162,24 @@ files:
90
162
  - README.md
91
163
  - Rakefile
92
164
  - config.ru
93
- - gemfiles/Gemfile.5.1.mysql
94
- - gemfiles/Gemfile.5.1.mysql.lock
95
- - gemfiles/Gemfile.5.1.pg
96
- - gemfiles/Gemfile.5.1.pg.lock
97
- - gemfiles/Gemfile.5.2.mysql
98
- - gemfiles/Gemfile.5.2.mysql.lock
99
- - gemfiles/Gemfile.5.2.pg
100
- - gemfiles/Gemfile.5.2.pg.lock
101
165
  - gemfiles/Gemfile.6.0.mysql
102
166
  - gemfiles/Gemfile.6.0.mysql.lock
103
167
  - gemfiles/Gemfile.6.0.pg
104
168
  - gemfiles/Gemfile.6.0.pg.lock
105
169
  - gemfiles/Gemfile.6.1.mysql
170
+ - gemfiles/Gemfile.6.1.mysql.lock
106
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
107
177
  - lib/temporal_tables.rb
108
178
  - lib/temporal_tables/arel_table.rb
109
179
  - lib/temporal_tables/association_extensions.rb
110
180
  - lib/temporal_tables/connection_adapters/mysql_adapter.rb
111
181
  - lib/temporal_tables/connection_adapters/postgresql_adapter.rb
112
182
  - lib/temporal_tables/history_hook.rb
113
- - lib/temporal_tables/join_extensions.rb
114
183
  - lib/temporal_tables/preloader_extensions.rb
115
184
  - lib/temporal_tables/reflection_extensions.rb
116
185
  - lib/temporal_tables/relation_extensions.rb
@@ -119,7 +188,6 @@ files:
119
188
  - lib/temporal_tables/version.rb
120
189
  - lib/temporal_tables/whodunnit.rb
121
190
  - spec/basic_history_spec.rb
122
- - spec/extensions/combustion.rb
123
191
  - spec/internal/app/models/broom.rb
124
192
  - spec/internal/app/models/cat.rb
125
193
  - spec/internal/app/models/cat_life.rb
@@ -128,8 +196,8 @@ files:
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,20 +216,19 @@ 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
165
233
  - spec/internal/app/models/cat.rb
166
234
  - spec/internal/app/models/cat_life.rb
@@ -169,8 +237,8 @@ test_files:
169
237
  - spec/internal/app/models/person.rb
170
238
  - spec/internal/app/models/rocket_broom.rb
171
239
  - spec/internal/app/models/wart.rb
240
+ - spec/internal/config/database.ci.yml
172
241
  - spec/internal/config/database.sample.yml
173
- - spec/internal/config/routes.rb
174
242
  - spec/internal/db/schema.rb
175
243
  - spec/internal/log/.gitignore
176
244
  - spec/internal/public/favicon.ico
@@ -1,44 +0,0 @@
1
- on:
2
- push:
3
- branches:
4
- - '**'
5
-
6
- jobs:
7
- build:
8
- runs-on: ubuntu-latest
9
-
10
- services:
11
- postgres:
12
- image: postgres:11.5
13
- ports: ["5432:5432"]
14
- options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
15
-
16
- steps:
17
- - uses: actions/checkout@v1
18
-
19
- - name: Set up Ruby 2.5.4
20
- uses: actions/setup-ruby@v1
21
- with:
22
- ruby-version: 2.5.4
23
-
24
- - name: Install PostgreSQL 11 client
25
- run: |
26
- sudo apt-get -yqq install libpq-dev
27
-
28
- - name: Build App
29
- env:
30
- PGHOST: localhost
31
- PGUSER: postgres
32
- RAILS_ENV: test
33
- run: |
34
- gem install bundler
35
- bundle install --jobs 4 --retry 3
36
- bin/rails db:setup
37
-
38
- - name: Run Tests
39
- env:
40
- PGHOST: localhost
41
- PGUSER: postgres
42
- RAILS_ENV: test
43
- run: |
44
- bundle exec rspec
@@ -1,16 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Runtime dependencies
4
- gem 'rails', '~> 5.1.0'
5
- gem 'mysql2', '~> 0.4.4'
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.8.1)
5
- rails (>= 5.0, < 6.1)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actioncable (5.1.6.1)
11
- actionpack (= 5.1.6.1)
12
- nio4r (~> 2.0)
13
- websocket-driver (~> 0.6.1)
14
- actionmailer (5.1.6.1)
15
- actionpack (= 5.1.6.1)
16
- actionview (= 5.1.6.1)
17
- activejob (= 5.1.6.1)
18
- mail (~> 2.5, >= 2.5.4)
19
- rails-dom-testing (~> 2.0)
20
- actionpack (5.1.6.1)
21
- actionview (= 5.1.6.1)
22
- activesupport (= 5.1.6.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.1.6.1)
28
- activesupport (= 5.1.6.1)
29
- builder (~> 3.1)
30
- erubi (~> 1.4)
31
- rails-dom-testing (~> 2.0)
32
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
- activejob (5.1.6.1)
34
- activesupport (= 5.1.6.1)
35
- globalid (>= 0.3.6)
36
- activemodel (5.1.6.1)
37
- activesupport (= 5.1.6.1)
38
- activerecord (5.1.6.1)
39
- activemodel (= 5.1.6.1)
40
- activesupport (= 5.1.6.1)
41
- arel (~> 8.0)
42
- activesupport (5.1.6.1)
43
- concurrent-ruby (~> 1.0, >= 1.0.2)
44
- i18n (>= 0.7, < 2)
45
- minitest (~> 5.1)
46
- tzinfo (~> 1.1)
47
- arel (8.0.0)
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
- erubi (1.8.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 (1.1.0)
79
- rack (>= 1.0, < 3)
80
- rails (5.1.6.1)
81
- actioncable (= 5.1.6.1)
82
- actionmailer (= 5.1.6.1)
83
- actionpack (= 5.1.6.1)
84
- actionview (= 5.1.6.1)
85
- activejob (= 5.1.6.1)
86
- activemodel (= 5.1.6.1)
87
- activerecord (= 5.1.6.1)
88
- activesupport (= 5.1.6.1)
89
- bundler (>= 1.3.0)
90
- railties (= 5.1.6.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.1.6.1)
98
- actionpack (= 5.1.6.1)
99
- activesupport (= 5.1.6.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.1.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.1.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.8.1)
5
- rails (>= 5.0, < 6.1)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- actioncable (5.1.6.1)
11
- actionpack (= 5.1.6.1)
12
- nio4r (~> 2.0)
13
- websocket-driver (~> 0.6.1)
14
- actionmailer (5.1.6.1)
15
- actionpack (= 5.1.6.1)
16
- actionview (= 5.1.6.1)
17
- activejob (= 5.1.6.1)
18
- mail (~> 2.5, >= 2.5.4)
19
- rails-dom-testing (~> 2.0)
20
- actionpack (5.1.6.1)
21
- actionview (= 5.1.6.1)
22
- activesupport (= 5.1.6.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.1.6.1)
28
- activesupport (= 5.1.6.1)
29
- builder (~> 3.1)
30
- erubi (~> 1.4)
31
- rails-dom-testing (~> 2.0)
32
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
- activejob (5.1.6.1)
34
- activesupport (= 5.1.6.1)
35
- globalid (>= 0.3.6)
36
- activemodel (5.1.6.1)
37
- activesupport (= 5.1.6.1)
38
- activerecord (5.1.6.1)
39
- activemodel (= 5.1.6.1)
40
- activesupport (= 5.1.6.1)
41
- arel (~> 8.0)
42
- activesupport (5.1.6.1)
43
- concurrent-ruby (~> 1.0, >= 1.0.2)
44
- i18n (>= 0.7, < 2)
45
- minitest (~> 5.1)
46
- tzinfo (~> 1.1)
47
- arel (8.0.0)
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
- erubi (1.8.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 (1.1.0)
79
- rack (>= 1.0, < 3)
80
- rails (5.1.6.1)
81
- actioncable (= 5.1.6.1)
82
- actionmailer (= 5.1.6.1)
83
- actionpack (= 5.1.6.1)
84
- actionview (= 5.1.6.1)
85
- activejob (= 5.1.6.1)
86
- activemodel (= 5.1.6.1)
87
- activerecord (= 5.1.6.1)
88
- activesupport (= 5.1.6.1)
89
- bundler (>= 1.3.0)
90
- railties (= 5.1.6.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.1.6.1)
98
- actionpack (= 5.1.6.1)
99
- activesupport (= 5.1.6.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.1.0)
142
- rake
143
- rspec (~> 3.4)
144
- temporal_tables!
145
-
146
- BUNDLED WITH
147
- 1.17.3