soloist 0.9.3 → 0.9.4

Sign up to get free protection for your applications and to get access to all the features.
data/.travis.yml ADDED
@@ -0,0 +1,8 @@
1
+ rvm:
2
+ - 1.8.7
3
+ - 1.9.2
4
+ - 1.9.3
5
+ - rbx-2.0
6
+ - jruby
7
+ - ruby-head
8
+ - ree
data/Gemfile CHANGED
@@ -3,4 +3,5 @@ source "http://rubygems.org"
3
3
  # Specify your gem's dependencies in soloist.gemspec
4
4
  gemspec
5
5
 
6
- gem "rspec", "2.4.0"
6
+ gem "rake"
7
+ gem "rspec", "2.4.0"
data/Gemfile.lock CHANGED
@@ -1,15 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- soloist (0.9.0)
4
+ soloist (0.9.4)
5
5
  chef
6
- json (>= 1.4.4, <= 1.5.2)
7
6
 
8
7
  GEM
9
8
  remote: http://rubygems.org/
10
9
  specs:
11
- bunny (0.7.1)
12
- chef (0.10.2)
10
+ bunny (0.7.6)
11
+ chef (0.10.4)
13
12
  bunny (>= 0.6.0)
14
13
  erubis
15
14
  highline
@@ -20,7 +19,7 @@ GEM
20
19
  mixlib-log (>= 1.3.0)
21
20
  moneta
22
21
  net-ssh (~> 2.1.3)
23
- net-ssh-multi (~> 1.0.1)
22
+ net-ssh-multi (~> 1.1.0)
24
23
  ohai (>= 0.6.0)
25
24
  rest-client (>= 1.0.4, < 1.7.0)
26
25
  treetop (~> 1.4.9)
@@ -32,24 +31,25 @@ GEM
32
31
  mime-types (1.16)
33
32
  mixlib-authentication (1.1.4)
34
33
  mixlib-log
35
- mixlib-cli (1.2.0)
34
+ mixlib-cli (1.2.2)
36
35
  mixlib-config (1.1.2)
37
36
  mixlib-log (1.3.0)
38
37
  moneta (0.6.0)
39
38
  net-ssh (2.1.4)
40
39
  net-ssh-gateway (1.1.0)
41
40
  net-ssh (>= 1.99.1)
42
- net-ssh-multi (1.0.1)
43
- net-ssh (>= 1.99.2)
41
+ net-ssh-multi (1.1)
42
+ net-ssh (>= 2.1.4)
44
43
  net-ssh-gateway (>= 0.99.0)
45
- ohai (0.6.4)
44
+ ohai (0.6.8)
46
45
  mixlib-cli
47
46
  mixlib-config
48
47
  mixlib-log
49
48
  systemu
50
49
  yajl-ruby
51
- polyglot (0.3.1)
52
- rest-client (1.6.3)
50
+ polyglot (0.3.2)
51
+ rake (0.8.7)
52
+ rest-client (1.6.7)
53
53
  mime-types (>= 1.16)
54
54
  rspec (2.4.0)
55
55
  rspec-core (~> 2.4.0)
@@ -59,15 +59,17 @@ GEM
59
59
  rspec-expectations (2.4.0)
60
60
  diff-lcs (~> 1.1.2)
61
61
  rspec-mocks (2.4.0)
62
- systemu (2.2.0)
63
- treetop (1.4.9)
62
+ systemu (2.4.0)
63
+ treetop (1.4.10)
64
+ polyglot
64
65
  polyglot (>= 0.3.1)
65
66
  uuidtools (2.1.2)
66
- yajl-ruby (0.8.2)
67
+ yajl-ruby (1.0.0)
67
68
 
68
69
  PLATFORMS
69
70
  ruby
70
71
 
71
72
  DEPENDENCIES
73
+ rake
72
74
  rspec (= 2.4.0)
73
75
  soloist!
data/README.markdown CHANGED
@@ -16,7 +16,7 @@ Soloist is a script packaged as a gem which when run recurses up the file tree l
16
16
  # What if I'm just setting up my own machine, and have many projects?
17
17
  Just put your soloistrc file in your home directory, and point it to wherever you want to keep your cookbooks. Or just dedicate a git repo to it, and go into that directory before running soloist.
18
18
 
19
- # How do I write a solistrc file?
19
+ # How do I write a soloistrc file?
20
20
  It's a yaml file, currently with two lists to maintain:
21
21
 
22
22
  The first, _cookbook\_paths_, should point (using an absolute or path relative to your soloistrc file) to the directory containing your cookbooks, such was pivotal_workstation.
data/Rakefile CHANGED
@@ -1,2 +1,10 @@
1
1
  require 'bundler'
2
2
  Bundler::GemHelper.install_tasks
3
+
4
+ task :default => [:spec]
5
+ task :test => [:spec]
6
+
7
+ desc "Run the test suite"
8
+ task :spec do
9
+ exec "rspec spec/"
10
+ end
@@ -1,3 +1,3 @@
1
1
  module Soloist
2
- VERSION = "0.9.3"
2
+ VERSION = "0.9.4"
3
3
  end
data/soloist.gemspec CHANGED
@@ -20,5 +20,4 @@ Gem::Specification.new do |s|
20
20
  s.require_paths = ["lib"]
21
21
 
22
22
  s.add_dependency "chef"
23
- s.add_dependency "json", ">= 1.4.4", "<= 1.5.2"
24
23
  end
@@ -1,5 +1,5 @@
1
1
  require 'rspec'
2
- require 'lib/soloist'
2
+ require File.dirname(__FILE__) + '/../lib/soloist'
3
3
 
4
4
  describe Soloist::ChefConfigGenerator do
5
5
  describe "generation" do
@@ -239,4 +239,4 @@ env_variable_switches:
239
239
  ]
240
240
  end
241
241
  end
242
- end
242
+ end
data/spec/util_spec.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require 'rspec'
2
- require 'lib/soloist'
2
+ require File.dirname(__FILE__) + '/../lib/soloist'
3
3
 
4
4
  describe Soloist::Util do
5
5
  class TestClass
@@ -17,4 +17,4 @@ describe Soloist::Util do
17
17
  TestClass.walk_up_and_find_file(["file_not_on_the_filesystem"], :required => false).should == [nil, nil]
18
18
  end
19
19
  end
20
- end
20
+ end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: soloist
3
3
  version: !ruby/object:Gem::Version
4
- hash: 61
4
+ hash: 51
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 9
9
- - 3
10
- version: 0.9.3
9
+ - 4
10
+ version: 0.9.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Matthew Kocher
@@ -15,8 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-07-27 00:00:00 -07:00
19
- default_executable:
18
+ date: 2011-12-14 00:00:00 Z
20
19
  dependencies:
21
20
  - !ruby/object:Gem::Dependency
22
21
  name: chef
@@ -32,30 +31,6 @@ dependencies:
32
31
  version: "0"
33
32
  type: :runtime
34
33
  version_requirements: *id001
35
- - !ruby/object:Gem::Dependency
36
- name: json
37
- prerelease: false
38
- requirement: &id002 !ruby/object:Gem::Requirement
39
- none: false
40
- requirements:
41
- - - ">="
42
- - !ruby/object:Gem::Version
43
- hash: 15
44
- segments:
45
- - 1
46
- - 4
47
- - 4
48
- version: 1.4.4
49
- - - <=
50
- - !ruby/object:Gem::Version
51
- hash: 7
52
- segments:
53
- - 1
54
- - 5
55
- - 2
56
- version: 1.5.2
57
- type: :runtime
58
- version_requirements: *id002
59
34
  description: Soloist is an easy way of running chef solo, but it's not doing much.
60
35
  email:
61
36
  - kocher@gmail.com
@@ -68,6 +43,7 @@ extra_rdoc_files: []
68
43
  files:
69
44
  - .gitignore
70
45
  - .rvmrc
46
+ - .travis.yml
71
47
  - Gemfile
72
48
  - Gemfile.lock
73
49
  - MIT-LICENSE
@@ -82,7 +58,6 @@ files:
82
58
  - spec/chef_config_generator_spec.rb
83
59
  - spec/pivotal_workstation_cookbook.rb
84
60
  - spec/util_spec.rb
85
- has_rdoc: true
86
61
  homepage: http://github.com/mkocher/soloist
87
62
  licenses: []
88
63
 
@@ -112,7 +87,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
112
87
  requirements: []
113
88
 
114
89
  rubyforge_project: soloist
115
- rubygems_version: 1.6.2
90
+ rubygems_version: 1.8.6
116
91
  signing_key:
117
92
  specification_version: 3
118
93
  summary: Soloist is a simple way of running chef-solo