michaeldwan-divvy 0.1.2 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/Rakefile +3 -1
  2. data/VERSION +1 -1
  3. data/divvy.gemspec +14 -6
  4. data/examples/test.rb +10 -0
  5. metadata +18 -7
data/Rakefile CHANGED
@@ -6,9 +6,11 @@ begin
6
6
  Jeweler::Tasks.new do |gem|
7
7
  gem.name = "divvy"
8
8
  gem.summary = %Q{Divvy is an easy to configure, easy to extend server provisioning framework written in Ruby.}
9
+ gem.description = %Q{Divvy is an easy to configure, easy to extend server provisioning framework written in Ruby.}
9
10
  gem.email = "mpdwan@gmail.com"
10
- gem.homepage = "http://github.com/mdwan/divvy"
11
+ gem.homepage = "http://github.com/michaeldwan/divvy"
11
12
  gem.authors = ["Michael Dwan"]
13
+ gem.add_development_dependency "thoughtbot-shoulda"
12
14
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
13
15
  end
14
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.2
1
+ 0.1.5
data/divvy.gemspec CHANGED
@@ -1,13 +1,17 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
1
4
  # -*- encoding: utf-8 -*-
2
5
 
3
6
  Gem::Specification.new do |s|
4
7
  s.name = %q{divvy}
5
- s.version = "0.1.2"
8
+ s.version = "0.1.5"
6
9
 
7
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
11
  s.authors = ["Michael Dwan"]
9
- s.date = %q{2009-05-31}
12
+ s.date = %q{2009-09-01}
10
13
  s.default_executable = %q{divvy}
14
+ s.description = %q{Divvy is an easy to configure, easy to extend server provisioning framework written in Ruby.}
11
15
  s.email = %q{mpdwan@gmail.com}
12
16
  s.executables = ["divvy"]
13
17
  s.extra_rdoc_files = [
@@ -30,6 +34,7 @@ Gem::Specification.new do |s|
30
34
  "examples/packages/ruby/ruby_gems.rb",
31
35
  "examples/packages/scm/git.rb",
32
36
  "examples/packages/utilities/screen.rb",
37
+ "examples/test.rb",
33
38
  "lib/divvy.rb",
34
39
  "lib/divvy/duplicate_package_error.rb",
35
40
  "lib/divvy/package.rb",
@@ -47,11 +52,10 @@ Gem::Specification.new do |s|
47
52
  "test/package_test.rb",
48
53
  "test/test_helper.rb"
49
54
  ]
50
- s.has_rdoc = true
51
- s.homepage = %q{http://github.com/mdwan/divvy}
55
+ s.homepage = %q{http://github.com/michaeldwan/divvy}
52
56
  s.rdoc_options = ["--charset=UTF-8"]
53
57
  s.require_paths = ["lib"]
54
- s.rubygems_version = %q{1.3.2}
58
+ s.rubygems_version = %q{1.3.5}
55
59
  s.summary = %q{Divvy is an easy to configure, easy to extend server provisioning framework written in Ruby.}
56
60
  s.test_files = [
57
61
  "test/divvy_test.rb",
@@ -64,7 +68,8 @@ Gem::Specification.new do |s|
64
68
  "examples/packages/ruby/ruby.rb",
65
69
  "examples/packages/ruby/ruby_gems.rb",
66
70
  "examples/packages/scm/git.rb",
67
- "examples/packages/utilities/screen.rb"
71
+ "examples/packages/utilities/screen.rb",
72
+ "examples/test.rb"
68
73
  ]
69
74
 
70
75
  if s.respond_to? :specification_version then
@@ -72,8 +77,11 @@ Gem::Specification.new do |s|
72
77
  s.specification_version = 3
73
78
 
74
79
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
80
+ s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
75
81
  else
82
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
76
83
  end
77
84
  else
85
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
78
86
  end
79
87
  end
data/examples/test.rb ADDED
@@ -0,0 +1,10 @@
1
+ Dir["#{File.dirname(__FILE__)}/packages/**/*.rb"].each { |r| require r }
2
+
3
+ Divvy.package :web do
4
+ apply do
5
+ set_rails_env('production')
6
+ end
7
+ requires :build_essential, :ruby, :ruby_gems, :mysql_ruby_driver, :git
8
+ end
9
+
10
+ Divvy.provision 'your-server.example.com', :web, :user => 'root', :password => 'password'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: michaeldwan-divvy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Dwan
@@ -9,11 +9,20 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-05-31 00:00:00 -07:00
12
+ date: 2009-09-01 00:00:00 -07:00
13
13
  default_executable: divvy
14
- dependencies: []
15
-
16
- description:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: thoughtbot-shoulda
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
25
+ description: Divvy is an easy to configure, easy to extend server provisioning framework written in Ruby.
17
26
  email: mpdwan@gmail.com
18
27
  executables:
19
28
  - divvy
@@ -38,6 +47,7 @@ files:
38
47
  - examples/packages/ruby/ruby_gems.rb
39
48
  - examples/packages/scm/git.rb
40
49
  - examples/packages/utilities/screen.rb
50
+ - examples/test.rb
41
51
  - lib/divvy.rb
42
52
  - lib/divvy/duplicate_package_error.rb
43
53
  - lib/divvy/package.rb
@@ -54,8 +64,8 @@ files:
54
64
  - test/divvy_test.rb
55
65
  - test/package_test.rb
56
66
  - test/test_helper.rb
57
- has_rdoc: true
58
- homepage: http://github.com/mdwan/divvy
67
+ has_rdoc: false
68
+ homepage: http://github.com/michaeldwan/divvy
59
69
  post_install_message:
60
70
  rdoc_options:
61
71
  - --charset=UTF-8
@@ -92,3 +102,4 @@ test_files:
92
102
  - examples/packages/ruby/ruby_gems.rb
93
103
  - examples/packages/scm/git.rb
94
104
  - examples/packages/utilities/screen.rb
105
+ - examples/test.rb