buildar 2.0.2.1 → 2.0.2.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/VERSION +1 -1
- data/buildar.gemspec +1 -1
- data/lib/buildar.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ece7fc84778bdf31f709d38114edf5e1fd7c82d6
|
|
4
|
+
data.tar.gz: b4b5e3e7dabd824b0fc846876eff0d08e32d0e3a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 16daabbaf39f3269a30e421dc67b727df0d9f56e682a9e01a1277f87996755e93feb9e158a6dfcec5d1b78372bbf2fdb5ab69aafe3633da0ed6877045269a675
|
|
7
|
+
data.tar.gz: fe03d3131bd60a32324268ce60c097cd7f972202ab028f58338a522a124994b3071a4228bdbfa0400b73e17126e8e3eedc3032feaeb09dd2bd946c2fab1e2531
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.0.2.
|
|
1
|
+
2.0.2.2
|
data/buildar.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|
|
8
8
|
s.has_rdoc = true
|
|
9
9
|
s.description = 'Buildar helps automate the release process with versioning, building, packaging, and publishing. Optional git integration.'
|
|
10
10
|
|
|
11
|
-
s.add_runtime_dependency
|
|
11
|
+
s.add_runtime_dependency "rake"
|
|
12
12
|
|
|
13
13
|
# dynamic setup
|
|
14
14
|
this_dir = File.expand_path('..', __FILE__)
|
data/lib/buildar.rb
CHANGED
|
@@ -87,7 +87,7 @@ class Buildar < Rake::TaskLib
|
|
|
87
87
|
desc "config check"
|
|
88
88
|
task :buildar do
|
|
89
89
|
spacer = " " * 14
|
|
90
|
-
gemspec = self.gemspec
|
|
90
|
+
gemspec = self.gemspec || raise("no valid gemspec")
|
|
91
91
|
puts
|
|
92
92
|
puts " Project: #{gemspec.name} #{gemspec.version}"
|
|
93
93
|
puts "Gemspec file: #{@gemspec_file}" if @gemspec_file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: buildar
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.2.
|
|
4
|
+
version: 2.0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rick Hull
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-01-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
19
|
+
version: '0'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
26
|
+
version: '0'
|
|
27
27
|
description: Buildar helps automate the release process with versioning, building,
|
|
28
28
|
packaging, and publishing. Optional git integration.
|
|
29
29
|
email:
|
|
@@ -57,7 +57,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
57
57
|
version: '0'
|
|
58
58
|
requirements: []
|
|
59
59
|
rubyforge_project:
|
|
60
|
-
rubygems_version: 2.
|
|
60
|
+
rubygems_version: 2.5.2
|
|
61
61
|
signing_key:
|
|
62
62
|
specification_version: 4
|
|
63
63
|
summary: Buildar crept inside your Rakefile and scratched upon the tasking post
|