capstrap 0.3.0 → 0.3.1

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/CHANGELOG.markdown CHANGED
@@ -1,3 +1,7 @@
1
+ # 0.3.1
2
+
3
+ * Remove rvm_sugar installation (customization overkill).
4
+
1
5
  # 0.3.0
2
6
 
3
7
  * Add --config flag and read config from ~/.capstraprc by default.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- capstrap (0.0.1)
4
+ capstrap (0.3.0)
5
5
  capistrano (~> 2.5.19)
6
6
  thor (~> 0.14.3)
7
7
 
@@ -23,17 +23,16 @@ GEM
23
23
  net-ssh (2.0.23)
24
24
  net-ssh-gateway (1.0.1)
25
25
  net-ssh (>= 1.99.1)
26
- rspec (2.0.1)
27
- rspec-core (~> 2.0.1)
28
- rspec-expectations (~> 2.0.1)
29
- rspec-mocks (~> 2.0.1)
30
- rspec-core (2.0.1)
31
- rspec-expectations (2.0.1)
32
- diff-lcs (>= 1.1.2)
33
- rspec-mocks (2.0.1)
34
- rspec-core (~> 2.0.1)
35
- rspec-expectations (~> 2.0.1)
26
+ rspec (2.1.0)
27
+ rspec-core (~> 2.1.0)
28
+ rspec-expectations (~> 2.1.0)
29
+ rspec-mocks (~> 2.1.0)
30
+ rspec-core (2.1.0)
31
+ rspec-expectations (2.1.0)
32
+ diff-lcs (~> 1.1.2)
33
+ rspec-mocks (2.1.0)
36
34
  thor (0.14.3)
35
+ yard (0.6.3)
37
36
 
38
37
  PLATFORMS
39
38
  ruby
@@ -41,5 +40,6 @@ PLATFORMS
41
40
  DEPENDENCIES
42
41
  capistrano (~> 2.5.19)
43
42
  capstrap!
44
- rspec (~> 2.0.0)
43
+ rspec (~> 2.1.0)
45
44
  thor (~> 0.14.3)
45
+ yard (~> 0.6.3)
data/Rakefile CHANGED
@@ -1,2 +1,5 @@
1
1
  require 'bundler'
2
2
  Bundler::GemHelper.install_tasks
3
+
4
+ require 'yard'
5
+ YARD::Rake::YardocTask.new
data/capstrap.gemspec CHANGED
@@ -22,5 +22,6 @@ Gem::Specification.new do |s|
22
22
  s.add_dependency "thor", "~> 0.14.3"
23
23
  s.add_dependency "capistrano", "~> 2.5.19"
24
24
 
25
- s.add_development_dependency "rspec", " ~>2.0.0"
25
+ s.add_development_dependency "rspec", "~>2.1.0"
26
+ s.add_development_dependency "yard", "~>0.6.3"
26
27
  end
@@ -134,7 +134,6 @@ module Capstrap
134
134
  unless rvm_installed?
135
135
  apt.install.rvm_depends
136
136
  rvm.install.system_base
137
- rvm.install.sugar
138
137
  end
139
138
  apt.install.mri_depends
140
139
  rvm.install.ree187
@@ -22,19 +22,12 @@ module Capstrap
22
22
  end
23
23
  end
24
24
 
25
- desc "Installs basic rvm/gem/irb configs."
26
- task :sugar do
27
- run %{bash < <( curl -L http://bit.ly/rvm_sugar )},
28
- :shell => "bash"
29
- end
30
-
31
25
  RUBIES.each do |r|
32
26
  desc "Installs latest #{r.title} ruby."
33
27
  task r.ruby do
34
28
  unless rvm_installed?
35
29
  apt.install.rvm_depends
36
30
  rvm.install.system_base
37
- rvm.install.sugar
38
31
  end
39
32
  unless ruby_installed?(r.ruby)
40
33
  apt.install.mri_depends
@@ -1,3 +1,3 @@
1
1
  module Capstrap
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capstrap
3
3
  version: !ruby/object:Gem::Version
4
- hash: 19
4
+ hash: 17
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 0
10
- version: 0.3.0
9
+ - 1
10
+ version: 0.3.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Fletcher Nichol
@@ -58,14 +58,30 @@ dependencies:
58
58
  requirements:
59
59
  - - ~>
60
60
  - !ruby/object:Gem::Version
61
- hash: 15
61
+ hash: 11
62
62
  segments:
63
63
  - 2
64
+ - 1
64
65
  - 0
65
- - 0
66
- version: 2.0.0
66
+ version: 2.1.0
67
67
  type: :development
68
68
  version_requirements: *id003
69
+ - !ruby/object:Gem::Dependency
70
+ name: yard
71
+ prerelease: false
72
+ requirement: &id004 !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ~>
76
+ - !ruby/object:Gem::Version
77
+ hash: 1
78
+ segments:
79
+ - 0
80
+ - 6
81
+ - 3
82
+ version: 0.6.3
83
+ type: :development
84
+ version_requirements: *id004
69
85
  description: A command to remotely install git, rvm, ruby, and chef-solo using capistrano.
70
86
  email:
71
87
  - fnichol@nichol.ca