runpuppet 1.0.0.rc2 → 1.0.0.rc4

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 CHANGED
@@ -1 +1 @@
1
- 1.0.0.rc2
1
+ 1.0.0.rc4
@@ -8,6 +8,7 @@ module Runpuppet
8
8
  @config = context.config
9
9
  @run_options = context.run_options
10
10
  @agent = context.agent
11
+ @logger = context.logger
11
12
  end
12
13
 
13
14
  def run
data/runpuppet.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "runpuppet"
8
- s.version = "1.0.0.rc2"
8
+ s.version = "1.0.0.rc4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Roman Heinrich"]
@@ -35,6 +35,7 @@ Gem::Specification.new do |s|
35
35
  "runpuppet.gemspec",
36
36
  "sh/c",
37
37
  "sh/console.rb",
38
+ "sh/release",
38
39
  "sh/test",
39
40
  "test/agent_test.rb",
40
41
  "test/binary_test.rb",
data/sh/release ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ raise "give me version!" unless ARGV[0]
4
+ %x(echo #{ARGV[0]} > VERSION)
5
+ %x(rake gemspec:generate)
6
+ %x(git add VERSION runpuppet.gemspec)
7
+ %x(git commit -m "releasing #{ARGV[0]}")
8
+ %x(rake release)
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: runpuppet
3
3
  version: !ruby/object:Gem::Version
4
- hash: 3495532457
4
+ hash: 2258214381
5
5
  prerelease: 6
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
9
  - 0
10
10
  - rc
11
- - 2
12
- version: 1.0.0.rc2
11
+ - 4
12
+ version: 1.0.0.rc4
13
13
  platform: ruby
14
14
  authors:
15
15
  - Roman Heinrich
@@ -150,6 +150,7 @@ files:
150
150
  - runpuppet.gemspec
151
151
  - sh/c
152
152
  - sh/console.rb
153
+ - sh/release
153
154
  - sh/test
154
155
  - test/agent_test.rb
155
156
  - test/binary_test.rb