thermos 0.0.7 → 0.0.8

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.
data/test/test_helper.rb CHANGED
@@ -19,3 +19,5 @@ if ActiveSupport::TestCase.respond_to?(:fixture_path=)
19
19
  ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
20
20
  ActiveSupport::TestCase.fixtures :all
21
21
  end
22
+
23
+ ActiveJob::Base.queue_adapter = :inline
data/test/thermos_test.rb CHANGED
@@ -2,7 +2,7 @@ require 'test_helper'
2
2
 
3
3
  class ThermosTest < ActiveSupport::TestCase
4
4
  ActiveSupport.test_order = :random
5
- self.use_transactional_fixtures = true
5
+ self.use_transactional_tests = true
6
6
 
7
7
  def teardown
8
8
  Thermos::BeverageStorage.instance.empty
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: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Thal
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-07 00:00:00.000000000 Z
11
+ date: 2018-10-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 4.2.0
19
+ version: 5.0.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 4.2.0
26
+ version: 5.0.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: sqlite3
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -136,7 +136,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
136
136
  requirements:
137
137
  - - ">="
138
138
  - !ruby/object:Gem::Version
139
- version: 2.1.0
139
+ version: 2.4.0
140
140
  required_rubygems_version: !ruby/object:Gem::Requirement
141
141
  requirements:
142
142
  - - ">="
@@ -144,61 +144,61 @@ required_rubygems_version: !ruby/object:Gem::Requirement
144
144
  version: '0'
145
145
  requirements: []
146
146
  rubyforge_project:
147
- rubygems_version: 2.4.5.1
147
+ rubygems_version: 2.6.13
148
148
  signing_key:
149
149
  specification_version: 4
150
150
  summary: Always-warm, auto-rebuilding rails caching without timers or touching.
151
151
  test_files:
152
- - test/dummy/app/assets/javascripts/application.js
153
- - test/dummy/app/assets/stylesheets/application.css
154
- - test/dummy/app/controllers/application_controller.rb
155
- - test/dummy/app/helpers/application_helper.rb
156
152
  - test/dummy/app/models/category.rb
157
- - test/dummy/app/models/category_item.rb
158
153
  - test/dummy/app/models/product.rb
154
+ - test/dummy/app/models/category_item.rb
159
155
  - test/dummy/app/models/store.rb
156
+ - test/dummy/app/controllers/application_controller.rb
160
157
  - test/dummy/app/views/layouts/application.html.erb
161
- - test/dummy/bin/bundle
162
- - test/dummy/bin/rails
158
+ - test/dummy/app/assets/javascripts/application.js
159
+ - test/dummy/app/assets/stylesheets/application.css
160
+ - test/dummy/app/helpers/application_helper.rb
163
161
  - test/dummy/bin/rake
164
162
  - test/dummy/bin/setup
165
- - test/dummy/config/application.rb
166
- - test/dummy/config/boot.rb
167
- - test/dummy/config/database.yml
168
- - test/dummy/config/environment.rb
169
- - test/dummy/config/environments/development.rb
163
+ - test/dummy/bin/bundle
164
+ - test/dummy/bin/rails
165
+ - test/dummy/config/secrets.yml
166
+ - test/dummy/config/routes.rb
167
+ - test/dummy/config/locales/en.yml
170
168
  - test/dummy/config/environments/production.rb
169
+ - test/dummy/config/environments/development.rb
171
170
  - test/dummy/config/environments/test.rb
172
- - test/dummy/config/initializers/assets.rb
171
+ - test/dummy/config/environment.rb
172
+ - test/dummy/config/application.rb
173
+ - test/dummy/config/database.yml
174
+ - test/dummy/config/boot.rb
173
175
  - test/dummy/config/initializers/backtrace_silencers.rb
174
- - test/dummy/config/initializers/cookies_serializer.rb
175
- - test/dummy/config/initializers/filter_parameter_logging.rb
176
- - test/dummy/config/initializers/inflections.rb
177
176
  - test/dummy/config/initializers/mime_types.rb
177
+ - test/dummy/config/initializers/filter_parameter_logging.rb
178
178
  - test/dummy/config/initializers/session_store.rb
179
179
  - test/dummy/config/initializers/wrap_parameters.rb
180
- - test/dummy/config/locales/en.yml
181
- - test/dummy/config/routes.rb
182
- - test/dummy/config/secrets.yml
180
+ - test/dummy/config/initializers/assets.rb
181
+ - test/dummy/config/initializers/cookies_serializer.rb
182
+ - test/dummy/config/initializers/inflections.rb
183
183
  - test/dummy/config.ru
184
- - test/dummy/db/development.sqlite3
185
- - test/dummy/db/migrate/20160325214744_create_categories.rb
186
- - test/dummy/db/migrate/20160325214849_create_products.rb
187
- - test/dummy/db/migrate/20160325220006_create_category_items.rb
188
- - test/dummy/db/migrate/20160326174530_create_stores.rb
184
+ - test/dummy/Rakefile
185
+ - test/dummy/public/favicon.ico
186
+ - test/dummy/public/422.html
187
+ - test/dummy/public/500.html
188
+ - test/dummy/public/404.html
189
189
  - test/dummy/db/schema.rb
190
190
  - test/dummy/db/test.sqlite3
191
- - test/dummy/log/development.log
191
+ - test/dummy/db/migrate/20160325214849_create_products.rb
192
+ - test/dummy/db/migrate/20160326174530_create_stores.rb
193
+ - test/dummy/db/migrate/20160325214744_create_categories.rb
194
+ - test/dummy/db/migrate/20160325220006_create_category_items.rb
195
+ - test/dummy/db/development.sqlite3
192
196
  - test/dummy/log/test.log
193
- - test/dummy/public/404.html
194
- - test/dummy/public/422.html
195
- - test/dummy/public/500.html
196
- - test/dummy/public/favicon.ico
197
- - test/dummy/Rakefile
197
+ - test/dummy/log/development.log
198
198
  - test/dummy/README.rdoc
199
+ - test/thermos_test.rb
200
+ - test/fixtures/products.yml
199
201
  - test/fixtures/categories.yml
200
202
  - test/fixtures/category_items.yml
201
- - test/fixtures/products.yml
202
203
  - test/fixtures/stores.yml
203
204
  - test/test_helper.rb
204
- - test/thermos_test.rb