buildar 1.0.2.1 → 1.1.0.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.
- data/VERSION +1 -1
- data/lib/buildar.rb +1 -15
- data/rakefile.rb +13 -5
- metadata +10 -8
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.2
|
1
|
+
1.1.0.2
|
data/lib/buildar.rb
CHANGED
@@ -70,21 +70,7 @@ class Buildar
|
|
70
70
|
# now, give conf a chance to fix things up before calling self.version etc.
|
71
71
|
#
|
72
72
|
def gemspec
|
73
|
-
@gemspec ||= Gem::Specification.new
|
74
|
-
# Static assignments
|
75
|
-
s.summary = "FIX"
|
76
|
-
s.description = "FIX"
|
77
|
-
s.authors = ["FIX"]
|
78
|
-
s.email = "FIX@FIX.COM"
|
79
|
-
s.homepage = "http://FIX.COM/"
|
80
|
-
s.licenses = ['FIX']
|
81
|
-
# s.has_rdoc = true
|
82
|
-
# s.test_files = ['FIX']
|
83
|
-
|
84
|
-
s.add_development_dependency "rake", [">= 0"]
|
85
|
-
s.add_development_dependency "buildar", ["~> 1.0"]
|
86
|
-
end
|
87
|
-
# Make sure things tracked elsewhere stay updated
|
73
|
+
@gemspec ||= Gem::Specification.new
|
88
74
|
@gemspec.name = @name
|
89
75
|
@gemspec.files = self.manifest if @use_manifest_file
|
90
76
|
@gemspec.version = self.version if @use_version_file
|
data/rakefile.rb
CHANGED
@@ -2,13 +2,21 @@ require 'buildar/tasks'
|
|
2
2
|
require 'rake/testtask'
|
3
3
|
|
4
4
|
Buildar.conf(__FILE__) do |b|
|
5
|
-
b.
|
6
|
-
b.
|
7
|
-
b.
|
8
|
-
b.
|
5
|
+
b.use_version_file = true
|
6
|
+
b.version_filename = 'VERSION'
|
7
|
+
b.use_manifest_file = true
|
8
|
+
b.manifest_filename = 'MANIFEST.txt'
|
9
|
+
b.gemspec.name = 'buildar'
|
10
|
+
b.gemspec.summary = 'Buildar crept inside your rakefile and scratched upon the tasking post'
|
11
|
+
b.gemspec.description = <<EOF
|
12
|
+
Buildar helps automate the release process with versioning, building, packaging, and publishing. Optional git integration.
|
13
|
+
EOF
|
14
|
+
b.gemspec.author = 'Rick Hull'
|
9
15
|
b.gemspec.homepage = 'https://github.com/rickhull/buildar'
|
10
|
-
b.gemspec.license
|
16
|
+
b.gemspec.license = 'MIT'
|
11
17
|
b.gemspec.has_rdoc = true
|
18
|
+
b.gemspec.add_runtime_dependency "rake", ">= 5" # guess?
|
19
|
+
b.gemspec.add_development_dependency "buildar", "~> 1.0"
|
12
20
|
end
|
13
21
|
|
14
22
|
Rake::TestTask.new :test do |t|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: buildar
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.2
|
4
|
+
version: 1.1.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -18,15 +18,15 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: '
|
22
|
-
type: :
|
21
|
+
version: '5'
|
22
|
+
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
none: false
|
26
26
|
requirements:
|
27
27
|
- - ! '>='
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '
|
29
|
+
version: '5'
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: buildar
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
@@ -43,9 +43,11 @@ dependencies:
|
|
43
43
|
- - ~>
|
44
44
|
- !ruby/object:Gem::Version
|
45
45
|
version: '1.0'
|
46
|
-
description: Buildar helps automate the release process with versioning, building,
|
47
|
-
packaging, and publishing. Optional git integration
|
48
|
-
|
46
|
+
description: ! 'Buildar helps automate the release process with versioning, building,
|
47
|
+
packaging, and publishing. Optional git integration.
|
48
|
+
|
49
|
+
'
|
50
|
+
email:
|
49
51
|
executables: []
|
50
52
|
extensions: []
|
51
53
|
extra_rdoc_files: []
|
@@ -79,5 +81,5 @@ rubyforge_project:
|
|
79
81
|
rubygems_version: 1.8.23
|
80
82
|
signing_key:
|
81
83
|
specification_version: 3
|
82
|
-
summary: Buildar crept inside your rakefile and scratched
|
84
|
+
summary: Buildar crept inside your rakefile and scratched upon the tasking post
|
83
85
|
test_files: []
|