Icarus-Mod-Tools 1.7.0 → 1.7.1

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: ce305187a0a91ed7a8574f418d6c2afc50380323b3d5fe4d4fa215b61bc1e59c
4
- data.tar.gz: 28b19fe811f5eec20f5c79d2b9e567a2703cd266a7f1cf122df328f1018c04fb
3
+ metadata.gz: fd3e0ae69c6ef23c28a6f91e0ea2bef191fb23cb497624c4a6861542f0d55529
4
+ data.tar.gz: 74f1b174266c581ab857fd8079bc08345e055c12de0df175a24b84d5cf943c0b
5
5
  SHA512:
6
- metadata.gz: 49adc06788394d6015d23d33312a63058fcfb57bd0585c60325383501ee8950e5ba31fc90be13c765d45d397eb099aa494c9723a1bdaef379a4a62c8842f3ee8
7
- data.tar.gz: a233c109a0f8addcbba424b460ca2cca4100de71e5c771ae79487f13504f1b31ea195c07aa93108df4bc0de5e6fc2a75c09cd4dbf84acafe267c1333da8df3ad
6
+ metadata.gz: 3e2065dcd3968f5e692db72955f6c898e16c442c47cca55681586fb6c9b07c1ba7ed19c48b402b73b02004f70fb6c25def55d4f9daa4a46b1316ec5a2489e019
7
+ data.tar.gz: e56b480e1bd28fe040e0cd7a561f848596a654bb492457c92244902dbc046fe8a5ce8634f49455322ef03587c2762dc4003eb38e2b9c1fea5a7681562572a700
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- Icarus-Mod-Tools (1.7.0)
4
+ Icarus-Mod-Tools (1.7.1)
5
5
  google-cloud-firestore (~> 2.7)
6
6
  octokit (~> 6.0)
7
7
  paint (~> 2.3)
@@ -53,13 +53,13 @@ module Icarus
53
53
  end
54
54
 
55
55
  def validate
56
- @warnings << "Version should not be blank" unless validate_string(version)
56
+ @warnings << "Version should be a version string" unless validate_version(version)
57
57
 
58
58
  %w[name author description].each do |key|
59
59
  @errors << "#{key.capitalize} cannot be blank" unless validate_string(@data[key.to_sym])
60
60
  end
61
61
 
62
- @errors << "Invalid FileType: #{fileType || "blank"}" unless validate_filetype(fileType)
62
+ @errors << "Invalid fileType: #{fileType || "blank"}" unless validate_filetype(fileType)
63
63
 
64
64
  %w[fileURL imageURL readmeURL].each do |key|
65
65
  @errors << "Invalid URL #{key.capitalize}: #{@data[key.to_sym] || "blank"}" unless validate_url(@data[key.to_sym])
@@ -91,6 +91,10 @@ module Icarus
91
91
  def validate_string(string)
92
92
  !(string.nil? || string.empty?)
93
93
  end
94
+
95
+ def validate_version(version)
96
+ version =~ /\d+\.\d+[.\d+]?/
97
+ end
94
98
  end
95
99
  end
96
100
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Icarus
4
4
  module Mod
5
- VERSION = "1.7.0"
5
+ VERSION = "1.7.1"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Icarus-Mod-Tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.0
4
+ version: 1.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Donovan Young