stockpot 0.1.3 → 0.1.4

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 636f8c0d7d7a02d00509575fe7aa7c96a09d8e1e6622ed70d83e7afc9c348806
4
- data.tar.gz: 85c587ba47f767349fc18632ab11bf7aad856fe82a9cd128ef40d990d33d725c
3
+ metadata.gz: 83bd0e6b2989ce25243c4b39118e4878d872c2d84478c8332e0c8a1fafb7a3e3
4
+ data.tar.gz: 133deece2baa845280e6c96944362dff64efc811951d7ed274f599b8662bad2b
5
5
  SHA512:
6
- metadata.gz: 24b2cd80a3e5ecc68cdafe5653832c381f3c1e5e36ab88b1782cb2600cbadf180b3c9da5fb564afc4f8077a4f9e6c43629ae97039bd66f0d0c5c554ef9b16d80
7
- data.tar.gz: 4623905f392bf7d7d9879ce44599f81d5108b1b8a3be284a76ea850daaecc11e5f7befdea83c6fe2c2137441f1f89f6656feaea1c747b37e733d669ba0555fc4
6
+ metadata.gz: 6194b4b2218805e8bb6510576a795cf883bafb8c88167ee1ca579686aeaf0051a8490a5eef5f64a0de4c62ed67106ce4c05f78fa72b9bf1e8866ccd5ab10410b
7
+ data.tar.gz: b9a1322b35d6ea11ad3255cb1af3ed950cff4488a893926a855e4a9c8569a25f609de2ce5daca85c9b5803f305546450b0c86167d4d94cb4954abe4b1db7ceef
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Stockpot
4
+ class Engine < ::Rails::Engine
5
+ isolate_namespace Stockpot
6
+ config.generators.api_only = true
7
+ end
8
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Stockpot
4
+ VERSION = "0.1.4"
5
+ end
data/lib/stockpot.rb ADDED
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "stockpot/engine"
4
+
5
+ module Stockpot
6
+ # Your code goes here...
7
+ end
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ # desc "Explaining what the task does"
4
+ # task :stockpot do
5
+ # # Task goes here
6
+ # end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stockpot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jayson Smith
@@ -218,6 +218,10 @@ files:
218
218
  - app/controllers/stockpot/records_controller.rb
219
219
  - app/controllers/stockpot/redis_controller.rb
220
220
  - config/routes.rb
221
+ - lib/stockpot.rb
222
+ - lib/stockpot/engine.rb
223
+ - lib/stockpot/version.rb
224
+ - lib/tasks/stockpot_tasks.rake
221
225
  homepage: https://github.com/Freshly/stockpot
222
226
  licenses:
223
227
  - MIT