buildar 2.0.0.4 → 2.0.0.5
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 +8 -8
- data/VERSION +1 -1
- data/lib/buildar.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ZjVlODMzNzQwOTdlNjg3YjQ2NTU3MTVkNWNkNWE1ZGI0NTViNDlmMg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MzU4ODI3ZmE3N2EyODA3MGYzNzFhYTE1NDNiNmZkOGFjMWM5ZDQzNA==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
Zjg3MDBkNDRjMWRmZjVjYjQxNTMwMTcxZmJmYjYxNTEzODAzYWU2Zjk2NjBh
|
|
10
|
+
YTExZWU3MTQzY2IyOWU1YzFmNTczYmMxZmNhMTk4YjE0NThlOGE4YWQ0ODRl
|
|
11
|
+
ZTg5NzdkNGI2NzczN2IxNmUyNWM0NmIwZGMzMmM3ZDc0NDI0YWU=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NjZkYmIyZWQxZGQ5OGRiYTkxOGYzZTEwYTdkMzYyNjZmNjAzMTdiNzRkNDUw
|
|
14
|
+
N2NiOTBmYmFkMzJiNjk4NzRiZThhNmYzNjIwOWEzMmFmMDIxODQxZGM0NDYy
|
|
15
|
+
NzQ5ZmI4ZDNmNWFhMTNhZWU0OGQ3Y2I2ZmJmNzkxZDVjZmJhMmM=
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.0.0.
|
|
1
|
+
2.0.0.5
|
data/lib/buildar.rb
CHANGED
|
@@ -199,7 +199,7 @@ EOF
|
|
|
199
199
|
if @use_git
|
|
200
200
|
desc "annotated git tag with version and message"
|
|
201
201
|
task :tag => :message do
|
|
202
|
-
Rake::Task[:test].invoke if Rake::Task.
|
|
202
|
+
Rake::Task[:test].invoke if Rake::Task.task_defined? :test
|
|
203
203
|
tagname = "v#{self.gemspec.version}"
|
|
204
204
|
message = ENV['message'] || "auto-tagged #{tagname} by Buildar"
|
|
205
205
|
sh "git tag -a #{tagname.inspect} -m #{message.inspect}"
|