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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 04084b2ac6f3c0611e281a61b69aa8b161dde091
4
- data.tar.gz: 7b29b46562469fd1ad3a6f342d814a3916773c90
3
+ metadata.gz: 4ca096a6d69e14dead32f7c5fa03291fb52876d6
4
+ data.tar.gz: c8b754a8a14d5f600451afbf372e6d7b0de18b44
5
5
  SHA512:
6
- metadata.gz: a4293c7cd83e03fa48a9c6475b87e75d36b7097c1bd4a07ad13de54d898757cf34899e1524d123ba9332a56a8b60043e094127e509fc888dd3a1d71c69876e7d
7
- data.tar.gz: b643a7e2a885a6a5ef4c6dbf9a84ae9ff6b9aeeaa69b58c674d0b4c23a3f26c86c4b333b2bca54f6705be5c8d04b077ec01cca2997a17f505e70f3514edd3704
6
+ metadata.gz: 89767bad0b339e341ab326e724460fe654b5a90535b48df29e8026d76aaeef547f5ae3f384a03630bd68f16763e6ecb33a7c55cf08c5c718d99d30413c7b437e
7
+ data.tar.gz: 68fecefd2b6ddb8ef9d8702a4fd83c3f130921266f13c8561b1107fe3894a34e0936965986aad8e9b6ae4e24f4054c2ab18d8a17810b718af9bfb9866d6c4975
@@ -1,3 +1,3 @@
1
1
  module Lasertag
2
- VERSION = "0.3.1"
2
+ VERSION = "0.3.2"
3
3
  end
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
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lasertag
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - cesarferreira