lasertag 0.3.1 → 0.3.2
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/lib/lasertag/version.rb +1 -1
- data/lib/lasertag.rb +1 -3
- 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: 4ca096a6d69e14dead32f7c5fa03291fb52876d6
|
|
4
|
+
data.tar.gz: c8b754a8a14d5f600451afbf372e6d7b0de18b44
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 89767bad0b339e341ab326e724460fe654b5a90535b48df29e8026d76aaeef547f5ae3f384a03630bd68f16763e6ecb33a7c55cf08c5c718d99d30413c7b437e
|
|
7
|
+
data.tar.gz: 68fecefd2b6ddb8ef9d8702a4fd83c3f130921266f13c8561b1107fe3894a34e0936965986aad8e9b6ae4e24f4054c2ab18d8a17810b718af9bfb9866d6c4975
|
data/lib/lasertag/version.rb
CHANGED
data/lib/lasertag.rb
CHANGED
|
@@ -165,7 +165,7 @@ module Lasertag
|
|
|
165
165
|
def tag_code(version)
|
|
166
166
|
g = Git.open(Dir.pwd)
|
|
167
167
|
begin
|
|
168
|
-
g.add_tag(version)
|
|
168
|
+
g.add_tag(version, {:message => "Version #{version.gsub(/^v/, "")}"})
|
|
169
169
|
rescue Exception => e
|
|
170
170
|
expected = "'#{version}' already exists"
|
|
171
171
|
if e.to_s.include? expected
|
|
@@ -201,8 +201,6 @@ module Lasertag
|
|
|
201
201
|
File.exist?(settings_path)
|
|
202
202
|
end
|
|
203
203
|
|
|
204
|
-
#########################################################
|
|
205
|
-
|
|
206
204
|
def convert_values_to_hash (str)
|
|
207
205
|
hash = Hash.new
|
|
208
206
|
|