nistbib 0.1.7 → 0.1.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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/nistbib/document_status.rb +6 -6
- data/lib/nistbib/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 27093e60116b31fafba50838c147ef3766a02208
|
|
4
|
+
data.tar.gz: cdfadbefc7881561b70ee95a5cc482d06ac87202
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f7f6e678af1da8e4207b3ead7301b997c7c099c8b44d574822eae1a0cd4dad9832a0cc3e5a6b02390a33e46d94d869f274c09ef4eef8f1d1d688698ed6ee65d1
|
|
7
|
+
data.tar.gz: abc00636938f18e873ab9f7268b772c81c7d936a15b74591cd1b090342e27fc4d6c72f4a9ac84dcf43a652e3decc6fda249cc9f94865e70dc79f1c611e9ee085
|
data/Gemfile.lock
CHANGED
|
@@ -10,13 +10,13 @@ module NistBib
|
|
|
10
10
|
# @param substage [String, NilClass]
|
|
11
11
|
# @param iteration [String, NilClass]
|
|
12
12
|
def initialize(stage:, substage: nil, iteration: nil)
|
|
13
|
-
unless STAGES.include? stage
|
|
14
|
-
|
|
15
|
-
end
|
|
13
|
+
# unless STAGES.include? stage
|
|
14
|
+
# raise ArgumentError, "invalid argument: stage (#{stage})"
|
|
15
|
+
# end
|
|
16
16
|
|
|
17
|
-
if substage && !SUBSTAGES.include?(substage)
|
|
18
|
-
|
|
19
|
-
end
|
|
17
|
+
# if substage && !SUBSTAGES.include?(substage)
|
|
18
|
+
# raise ArgumentError, "invalid argument: substage (#{substage})"
|
|
19
|
+
# end
|
|
20
20
|
|
|
21
21
|
super
|
|
22
22
|
end
|
data/lib/nistbib/version.rb
CHANGED