albacore 2.2.0 → 2.2.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 +4 -4
- data/README.md +1 -4
- data/lib/albacore/cli.rb +6 -0
- data/lib/albacore/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 147c18f41eca6358be3dca46f0221b086d5913b7
|
|
4
|
+
data.tar.gz: 9931a62a6c13c5d20889fa22c75c4246018cdf9c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 473449840658e9a947267a97814e87ba2ea437fd5490cdf5d072490f77fa4dc0106447b5fe8c407dbd808dfe80cf336a4c6e17b199bfe23b26dc65df4fe9ee19
|
|
7
|
+
data.tar.gz: 9ee19c7f7a22a51d6eccb2a9518ab0fde4b35f756fb68ebdc3879c76add3cfaba89330accfa830871692e3acd3c891bf633ade4fae74b6e9b299e72cf85d1915
|
data/README.md
CHANGED
|
@@ -34,10 +34,7 @@ make their life easier.
|
|
|
34
34
|
your company!
|
|
35
35
|
- Transparent publish of artifacts to TeamCity with the TC extension
|
|
36
36
|
- Unit tested, high quality Ruby code
|
|
37
|
-
- Actively developed by
|
|
38
|
-
[Intelliplan](http://intelliplan.se) - there's someone looking after the
|
|
39
|
-
code. We're active and taking pull requests - an open source project is not a
|
|
40
|
-
single-person game, but it's nice to have some stability.
|
|
37
|
+
- Actively developed by [@haf](https://github.com/haf)
|
|
41
38
|
|
|
42
39
|
The [wiki](https://github.com/Albacore/albacore/wiki) is the main reference for
|
|
43
40
|
the above task types, but there's also [very
|
data/lib/albacore/cli.rb
CHANGED
|
@@ -24,14 +24,20 @@ module Albacore
|
|
|
24
24
|
<<-HELP
|
|
25
25
|
albacore commands
|
|
26
26
|
-----------------
|
|
27
|
+
Albacore v#{Albacore::VERSION}
|
|
27
28
|
|
|
28
29
|
init[ialze] # initialize a new Rakefile with defaults
|
|
29
30
|
help # display this help
|
|
31
|
+
version # display only the version of albacore
|
|
30
32
|
|
|
31
33
|
PLEASE READ https://github.com/Albacore/albacore/wiki/Albacore-binary
|
|
32
34
|
HELP
|
|
33
35
|
end
|
|
34
36
|
|
|
37
|
+
command :version do
|
|
38
|
+
puts "v#{Albacore::VERSION}"
|
|
39
|
+
end
|
|
40
|
+
|
|
35
41
|
# Create a new Rakefile file if the file does not exist.
|
|
36
42
|
command :initialize, :init do
|
|
37
43
|
files = [Albacore.rakefile, Albacore.gemfile, Albacore.semver_file]
|
data/lib/albacore/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: albacore
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2.
|
|
4
|
+
version: 2.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Henrik Feldt
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2014-11-
|
|
12
|
+
date: 2014-11-12 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|