thermos 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/thermos/version.rb +1 -1
  3. metadata +43 -49
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8436d0765dee9eafadbbb9994cce8aaed1e5746d96bc735fccdf55a945dcb4a8
4
- data.tar.gz: 19fd374d31d2885979d791ab9dc0bfe021c9c61053b97ed4f96a0a5d862afa75
3
+ metadata.gz: 180aa91ee61e8e41f620789c81a367494087463520730729c02fe71c50446998
4
+ data.tar.gz: 90a4039820795949ac39bb1e89bf0ac1ac763debd5b2616fac663ebe6648f515
5
5
  SHA512:
6
- metadata.gz: dd71bd6038960d9c556b3d55b697a6126d14573bb12ddc131e52a592629e39cc15e054c54cb0ee44aaf90a7b9879a43fc72571a9920c3ceae7b3a0721fb09cc2
7
- data.tar.gz: 6de309fc56d581825c7497cd137595769ca81eff2298f9ba791b5809511bf1281e9b7376feac34849592c660605c9f53b5304e751f3e53df55cea8d377bf5413
6
+ metadata.gz: ab617a3e8d4a507b6a504b36504e0a2e708f62efb71d9815d22649c40cc52321cd68ab13f68e5be287382963c8026fa96e6fb1d392dc46ddec510a25ba8fae72
7
+ data.tar.gz: 91d2aa1ef9792d6afa352fca30eec56b0ce9bb16c7c03fe80fec4a005b9cb76ed3bc04e8eb4f73dcaf32c298004c7bf75cb6fe61b0ad71f4cf7306af55bcc6e6
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Thermos
4
- VERSION = "1.0.0"
4
+ VERSION = "1.0.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thermos
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Thal
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-10 00:00:00.000000000 Z
11
+ date: 2023-01-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -16,20 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 6.0.0
20
- - - "<"
21
- - !ruby/object:Gem::Version
22
- version: 7.1.0
19
+ version: '0'
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
26
23
  requirements:
27
24
  - - ">="
28
25
  - !ruby/object:Gem::Version
29
- version: 6.0.0
30
- - - "<"
31
- - !ruby/object:Gem::Version
32
- version: 7.1.0
26
+ version: '0'
33
27
  - !ruby/object:Gem::Dependency
34
28
  name: rake
35
29
  requirement: !ruby/object:Gem::Requirement
@@ -185,56 +179,56 @@ signing_key:
185
179
  specification_version: 4
186
180
  summary: Always-warm, auto-rebuilding rails caching without timers or touching.
187
181
  test_files:
188
- - test/test_helper.rb
189
- - test/dependencies_test.rb
190
- - test/thermos_test.rb
191
- - test/queue_test.rb
192
- - test/fixtures/stores.yml
193
- - test/fixtures/categories.yml
194
- - test/fixtures/products.yml
195
- - test/fixtures/category_items.yml
196
- - test/dummy/db/schema.rb
197
- - test/dummy/db/migrate/20160325214744_create_categories.rb
198
- - test/dummy/db/migrate/20160326174530_create_stores.rb
199
- - test/dummy/db/migrate/20160325214849_create_products.rb
200
- - test/dummy/db/migrate/20160325220006_create_category_items.rb
201
- - test/dummy/config/database.yml
202
- - test/dummy/config/initializers/backtrace_silencers.rb
203
- - test/dummy/config/initializers/assets.rb
182
+ - test/dummy/config/environments/development.rb
183
+ - test/dummy/config/environments/production.rb
184
+ - test/dummy/config/environments/test.rb
185
+ - test/dummy/config/secrets.yml
186
+ - test/dummy/config/initializers/filter_parameter_logging.rb
204
187
  - test/dummy/config/initializers/wrap_parameters.rb
205
- - test/dummy/config/initializers/mime_types.rb
206
- - test/dummy/config/initializers/inflections.rb
188
+ - test/dummy/config/initializers/assets.rb
207
189
  - test/dummy/config/initializers/session_store.rb
208
- - test/dummy/config/initializers/filter_parameter_logging.rb
190
+ - test/dummy/config/initializers/mime_types.rb
209
191
  - test/dummy/config/initializers/cookies_serializer.rb
210
- - test/dummy/config/environment.rb
211
- - test/dummy/config/locales/en.yml
192
+ - test/dummy/config/initializers/inflections.rb
193
+ - test/dummy/config/initializers/backtrace_silencers.rb
212
194
  - test/dummy/config/boot.rb
213
- - test/dummy/config/environments/test.rb
214
- - test/dummy/config/environments/production.rb
215
- - test/dummy/config/environments/development.rb
216
195
  - test/dummy/config/application.rb
217
- - test/dummy/config/secrets.yml
196
+ - test/dummy/config/database.yml
197
+ - test/dummy/config/environment.rb
198
+ - test/dummy/config/locales/en.yml
218
199
  - test/dummy/config/routes.rb
219
- - test/dummy/README.rdoc
200
+ - test/dummy/Rakefile
220
201
  - test/dummy/config.ru
221
- - test/dummy/app/helpers/application_helper.rb
222
- - test/dummy/app/controllers/application_controller.rb
223
- - test/dummy/app/models/product.rb
224
- - test/dummy/app/models/category_item.rb
225
- - test/dummy/app/models/store.rb
226
- - test/dummy/app/models/category.rb
227
202
  - test/dummy/app/views/layouts/application.html.erb
228
- - test/dummy/app/assets/stylesheets/application.css
229
- - test/dummy/app/assets/javascripts/application.js
203
+ - test/dummy/app/models/category.rb
204
+ - test/dummy/app/models/store.rb
205
+ - test/dummy/app/models/category_item.rb
206
+ - test/dummy/app/models/product.rb
207
+ - test/dummy/app/controllers/application_controller.rb
208
+ - test/dummy/app/helpers/application_helper.rb
230
209
  - test/dummy/app/assets/config/manifest.js
231
- - test/dummy/Rakefile
232
- - test/dummy/public/500.html
233
- - test/dummy/public/404.html
234
- - test/dummy/public/favicon.ico
210
+ - test/dummy/app/assets/javascripts/application.js
211
+ - test/dummy/app/assets/stylesheets/application.css
212
+ - test/dummy/db/migrate/20160325214744_create_categories.rb
213
+ - test/dummy/db/migrate/20160326174530_create_stores.rb
214
+ - test/dummy/db/migrate/20160325220006_create_category_items.rb
215
+ - test/dummy/db/migrate/20160325214849_create_products.rb
216
+ - test/dummy/db/schema.rb
217
+ - test/dummy/README.rdoc
235
218
  - test/dummy/public/422.html
236
- - test/dummy/bin/rails
219
+ - test/dummy/public/favicon.ico
220
+ - test/dummy/public/404.html
221
+ - test/dummy/public/500.html
237
222
  - test/dummy/bin/rake
238
223
  - test/dummy/bin/setup
224
+ - test/dummy/bin/rails
239
225
  - test/dummy/bin/bundle
226
+ - test/queue_test.rb
227
+ - test/thermos_test.rb
240
228
  - test/filter_test.rb
229
+ - test/test_helper.rb
230
+ - test/dependencies_test.rb
231
+ - test/fixtures/categories.yml
232
+ - test/fixtures/products.yml
233
+ - test/fixtures/stores.yml
234
+ - test/fixtures/category_items.yml