buildlights 0.0.1 → 0.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 CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
data/buildlights.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{buildlights}
5
- s.version = "0.0.1"
5
+ s.version = "0.0.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Darrin Holst"]
@@ -22,7 +22,6 @@ Gem::Specification.new do |s|
22
22
  "Rakefile",
23
23
  "VERSION",
24
24
  "bin/buildlights",
25
- "build-lights.gemspec",
26
25
  "buildlights.gemspec",
27
26
  "lib/buildlights.rb",
28
27
  "lib/ccnet.rb",
data/lib/lights.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  module BuildLights
2
2
  class Lights
3
- GREEN = 1
4
- RED = 2
3
+ RED = 1
4
+ GREEN = 2
5
5
 
6
6
  def initialize(implementation = BottleRocket)
7
7
  @implementation = implementation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: buildlights
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Darrin Holst
@@ -49,7 +49,6 @@ files:
49
49
  - Rakefile
50
50
  - VERSION
51
51
  - bin/buildlights
52
- - build-lights.gemspec
53
52
  - buildlights.gemspec
54
53
  - lib/buildlights.rb
55
54
  - lib/ccnet.rb
data/build-lights.gemspec DELETED
@@ -1,63 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
-
3
- Gem::Specification.new do |s|
4
- s.name = %q{build-lights}
5
- s.version = "0.0.1"
6
-
7
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
- s.authors = ["Darrin Holst"]
9
- s.date = %q{2009-08-13}
10
- s.default_executable = %q{buildlights}
11
- s.email = %q{darrinholst@gmail.com}
12
- s.executables = ["buildlights"]
13
- s.extra_rdoc_files = [
14
- "LICENSE",
15
- "README.rdoc"
16
- ]
17
- s.files = [
18
- ".document",
19
- ".gitignore",
20
- "LICENSE",
21
- "README.rdoc",
22
- "Rakefile",
23
- "VERSION",
24
- "bin/buildlights",
25
- "build-lights.gemspec",
26
- "lib/buildlights.rb",
27
- "lib/ccnet.rb",
28
- "lib/hudson.rb",
29
- "lib/lights.rb",
30
- "test/ccnet_test.rb",
31
- "test/hudson_test.rb",
32
- "test/lights_test.rb",
33
- "test/test_helper.rb"
34
- ]
35
- s.homepage = %q{http://github.com/darrinholst/build-lights}
36
- s.rdoc_options = ["--charset=UTF-8"]
37
- s.require_paths = ["lib"]
38
- s.rubyforge_project = %q{build-lights}
39
- s.rubygems_version = %q{1.3.5}
40
- s.summary = %q{build monitor that will trigger lights via x10}
41
- s.test_files = [
42
- "test/ccnet_test.rb",
43
- "test/hudson_test.rb",
44
- "test/lights_test.rb",
45
- "test/test_helper.rb"
46
- ]
47
-
48
- if s.respond_to? :specification_version then
49
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
50
- s.specification_version = 3
51
-
52
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
53
- s.add_runtime_dependency(%q<simple-rss>, [">= 1.2"])
54
- s.add_runtime_dependency(%q<hpricot>, [">= 0.8.1"])
55
- else
56
- s.add_dependency(%q<simple-rss>, [">= 1.2"])
57
- s.add_dependency(%q<hpricot>, [">= 0.8.1"])
58
- end
59
- else
60
- s.add_dependency(%q<simple-rss>, [">= 1.2"])
61
- s.add_dependency(%q<hpricot>, [">= 0.8.1"])
62
- end
63
- end