dear_inventory 0.7.2 → 0.7.3
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 +4 -4
- data/Gemfile +0 -5
- data/README.md +13 -0
- data/dear_inventory.gemspec +1 -0
- data/lib/dear_inventory/version.rb +1 -1
- metadata +15 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b836e30fa6fbe2c458fed01eb9edfe50f8b361cdcc51a166c3724740c34e0633
|
|
4
|
+
data.tar.gz: 486dcc3260c50dcc29c42ee6071972d0e1bd168351c567e600eba73c56c2645c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5a53b24bd828d657a9a2a41975c5d45222ff009f3416bd9ff827556c651888db6ae4653ec44f89e25d580967976108a511d96f162754d5ed71ffe2add18d2251
|
|
7
|
+
data.tar.gz: 821b8bd17b454a3f5382251f74104670ae3b5b931575cce910e8e2fcf04533cef4aa56c88013c39390429e489ab41669169a1f1274349e23da2a70a284f072f7
|
data/Gemfile
CHANGED
|
@@ -2,10 +2,5 @@
|
|
|
2
2
|
|
|
3
3
|
source "https://rubygems.org"
|
|
4
4
|
|
|
5
|
-
gem "sorbet-runtime",
|
|
6
|
-
git: "https://github.com/HashNotAdam/sorbet.git",
|
|
7
|
-
branch: "feature/ruby_2_7_keyword_arguments",
|
|
8
|
-
glob: "gems/sorbet-runtime/sorbet-runtime.gemspec"
|
|
9
|
-
|
|
10
5
|
# Specify your gem's dependencies in dear_inventory.gemspec
|
|
11
6
|
gemspec
|
data/README.md
CHANGED
|
@@ -20,6 +20,19 @@ Or install it yourself as:
|
|
|
20
20
|
|
|
21
21
|
$ gem install dear_inventory
|
|
22
22
|
|
|
23
|
+
## N.B for Ruby 2.7
|
|
24
|
+
|
|
25
|
+
At time of writing, the Sorbet team has not yet accepted my pull request to fix
|
|
26
|
+
deprecation warnings due to the use of the single splat operator. It can be
|
|
27
|
+
quite frustrating to have your console flooded with warnings and so it may be
|
|
28
|
+
worth your while specifying my fork of sorbet-runtime in your project's Gemfile:
|
|
29
|
+
```
|
|
30
|
+
gem "sorbet-runtime",
|
|
31
|
+
git: "https://github.com/HashNotAdam/sorbet.git",
|
|
32
|
+
branch: "feature/ruby_2_7_keyword_arguments",
|
|
33
|
+
glob: "gems/sorbet-runtime/sorbet-runtime.gemspec"
|
|
34
|
+
```
|
|
35
|
+
|
|
23
36
|
## Usage
|
|
24
37
|
|
|
25
38
|
Before you begin, you will need to setup API credentials in DEAR Inventory at
|
data/dear_inventory.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dear_inventory
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adam Rice
|
|
@@ -30,6 +30,20 @@ dependencies:
|
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: '5.0'
|
|
33
|
+
- !ruby/object:Gem::Dependency
|
|
34
|
+
name: sorbet-runtime
|
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '0'
|
|
40
|
+
type: :runtime
|
|
41
|
+
prerelease: false
|
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - ">="
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '0'
|
|
33
47
|
- !ruby/object:Gem::Dependency
|
|
34
48
|
name: bundler
|
|
35
49
|
requirement: !ruby/object:Gem::Requirement
|