buildmeister 1.2.0 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/Rakefile +3 -1
  2. data/VERSION +1 -1
  3. data/lib/buildmeister/project.rb +8 -1
  4. metadata +49 -10
data/Rakefile CHANGED
@@ -14,7 +14,9 @@ begin
14
14
  s.homepage = "http://github.com/onehub/buildmeister"
15
15
  s.description = "Dead simple tools for managing Lighthouse and Git deployment workflow"
16
16
  s.authors = ["Leigh Caplan"]
17
- s.add_dependency 'lighthouse-api', '>= 1.1.0'
17
+ s.add_dependency 'activesupport', '~> 2.3.9'
18
+ s.add_dependency 'activeresource', '~> 2.3.9'
19
+ s.add_dependency 'lighthouse-api', '~> 1.1.0'
18
20
  s.files = FileList["[A-Z]*", "{bin,generators,lib,spec}/**/*"]
19
21
  end
20
22
  rescue LoadError
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.0
1
+ 1.2.1
@@ -15,11 +15,18 @@ module Buildmeister
15
15
  project_bins = project.bins
16
16
 
17
17
  config['bins'].each do |bin_name|
18
- bin = project_bins.find { |b| b.name == bin_name }
18
+ bin = project_bins.find { |b| b.shared && (b.name == bin_name) }
19
19
  raise "No bin named #{bin_name}" unless bin
20
20
 
21
21
  bins << Buildmeister::Bin.new(bin, options[:mode], :annotations => config['annotations'])
22
22
  end
23
+
24
+ config['personal_bins'].each do |bin_name|
25
+ bin = project_bins.find { |b| !b.shared && (b.name == bin_name) }
26
+ raise "No bin named #{bin_name}" unless bin
27
+
28
+ bins << Buildmeister::Bin.new(bin, options[:mode], :annotations => config['annotations'])
29
+ end if config['personal_bins']
23
30
  end
24
31
 
25
32
  def display
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: buildmeister
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
4
+ hash: 29
5
+ prerelease:
5
6
  segments:
6
7
  - 1
7
8
  - 2
8
- - 0
9
- version: 1.2.0
9
+ - 1
10
+ version: 1.2.1
10
11
  platform: ruby
11
12
  authors:
12
13
  - Leigh Caplan
@@ -14,23 +15,57 @@ autorequire:
14
15
  bindir: bin
15
16
  cert_chain: []
16
17
 
17
- date: 2010-06-03 00:00:00 -07:00
18
+ date: 2011-02-25 00:00:00 -08:00
18
19
  default_executable:
19
20
  dependencies:
20
21
  - !ruby/object:Gem::Dependency
21
- name: lighthouse-api
22
+ name: activesupport
22
23
  prerelease: false
23
24
  requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ hash: 17
30
+ segments:
31
+ - 2
32
+ - 3
33
+ - 9
34
+ version: 2.3.9
35
+ type: :runtime
36
+ version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: activeresource
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
24
42
  requirements:
25
- - - ">="
43
+ - - ~>
26
44
  - !ruby/object:Gem::Version
45
+ hash: 17
46
+ segments:
47
+ - 2
48
+ - 3
49
+ - 9
50
+ version: 2.3.9
51
+ type: :runtime
52
+ version_requirements: *id002
53
+ - !ruby/object:Gem::Dependency
54
+ name: lighthouse-api
55
+ prerelease: false
56
+ requirement: &id003 !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ hash: 19
27
62
  segments:
28
63
  - 1
29
64
  - 1
30
65
  - 0
31
66
  version: 1.1.0
32
67
  type: :runtime
33
- version_requirements: *id001
68
+ version_requirements: *id003
34
69
  description: Dead simple tools for managing Lighthouse and Git deployment workflow
35
70
  email: lcaplan@onehub.com
36
71
  executables:
@@ -66,28 +101,32 @@ homepage: http://github.com/onehub/buildmeister
66
101
  licenses: []
67
102
 
68
103
  post_install_message:
69
- rdoc_options:
70
- - --charset=UTF-8
104
+ rdoc_options: []
105
+
71
106
  require_paths:
72
107
  - lib
73
108
  required_ruby_version: !ruby/object:Gem::Requirement
109
+ none: false
74
110
  requirements:
75
111
  - - ">="
76
112
  - !ruby/object:Gem::Version
113
+ hash: 3
77
114
  segments:
78
115
  - 0
79
116
  version: "0"
80
117
  required_rubygems_version: !ruby/object:Gem::Requirement
118
+ none: false
81
119
  requirements:
82
120
  - - ">="
83
121
  - !ruby/object:Gem::Version
122
+ hash: 3
84
123
  segments:
85
124
  - 0
86
125
  version: "0"
87
126
  requirements: []
88
127
 
89
128
  rubyforge_project:
90
- rubygems_version: 1.3.6
129
+ rubygems_version: 1.5.2
91
130
  signing_key:
92
131
  specification_version: 3
93
132
  summary: Dead simple tools for managing Lighthouse and Git deployment workflow