nesquena-cap-recipes 0.2.8 → 0.2.9

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.yml ADDED
@@ -0,0 +1,4 @@
1
+ ---
2
+ :major: 0
3
+ :minor: 2
4
+ :patch: 9
@@ -0,0 +1,7 @@
1
+ require File.dirname(__FILE__) + '/test_helper'
2
+
3
+ class CapRecipesTest < Test::Unit::TestCase
4
+ should "probably rename this file and start testing for real" do
5
+ flunk "hey buddy, you should probably rename this file and start testing for real"
6
+ end
7
+ end
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ require 'test/unit'
3
+ require 'shoulda'
4
+ require 'mocha'
5
+
6
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
7
+ require 'cap_recipes'
8
+
9
+ class Test::Unit::TestCase
10
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nesquena-cap-recipes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.8
4
+ version: 0.2.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Esquenazi
@@ -9,11 +9,11 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-01-25 00:00:00 -08:00
12
+ date: 2009-02-03 00:00:00 -08:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
16
- description:
16
+ description: Battle-tested capistrano recipes for passenger, apache, and more
17
17
  email: nesquena@gmail.com
18
18
  executables: []
19
19
 
@@ -22,8 +22,10 @@ extensions: []
22
22
  extra_rdoc_files: []
23
23
 
24
24
  files:
25
- - Rakefile
26
25
  - README.textile
26
+ - VERSION.yml
27
+ - lib/cap_recipes
28
+ - lib/cap_recipes/tasks
27
29
  - lib/cap_recipes/tasks/apache.rb
28
30
  - lib/cap_recipes/tasks/backgroundrb.rb
29
31
  - lib/cap_recipes/tasks/juggernaut.rb
@@ -31,12 +33,14 @@ files:
31
33
  - lib/cap_recipes/tasks/passenger.rb
32
34
  - lib/cap_recipes/tasks/with_scope.rb
33
35
  - lib/cap_recipes.rb
34
- - spec/cap-recipes-spec.rb
35
- has_rdoc: false
36
- homepage: http://caprecipes.rubyforge.org
36
+ - test/cap_recipes_test.rb
37
+ - test/test_helper.rb
38
+ has_rdoc: true
39
+ homepage: http://github.com/nesquena/cap-recipes
37
40
  post_install_message:
38
- rdoc_options: []
39
-
41
+ rdoc_options:
42
+ - --inline-source
43
+ - --charset=UTF-8
40
44
  require_paths:
41
45
  - lib
42
46
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -53,10 +57,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
53
57
  version:
54
58
  requirements: []
55
59
 
56
- rubyforge_project: cap-recipes
60
+ rubyforge_project:
57
61
  rubygems_version: 1.2.0
58
62
  signing_key:
59
63
  specification_version: 2
60
- summary: Collection of capistrano recipes for apache, passenger, memcache, juggernaut and backgroundrb
64
+ summary: Battle-tested capistrano recipes for passenger, apache, and more
61
65
  test_files: []
62
66
 
data/Rakefile DELETED
@@ -1,48 +0,0 @@
1
- require 'rubygems'
2
- require 'rubygems/specification'
3
- require 'rake'
4
- require 'rake/gempackagetask'
5
- require 'spec/rake/spectask'
6
-
7
- GEM = "cap-recipes"
8
- GEM_VERSION = "0.2.8"
9
- SUMMARY = "Collection of capistrano recipes for apache, passenger, memcache, juggernaut and backgroundrb"
10
- AUTHOR = "Nathan Esquenazi"
11
- EMAIL = "nesquena@gmail.com"
12
- HOMEPAGE = "http://caprecipes.rubyforge.org"
13
-
14
- spec = Gem::Specification.new do |s|
15
- s.name = GEM
16
- s.version = GEM_VERSION
17
- s.platform = Gem::Platform::RUBY
18
- s.summary = SUMMARY
19
- s.require_paths = ['lib']
20
- s.files = FileList['[A-Z]*', 'lib/**/*.rb', 'spec/**/*'].to_a
21
-
22
- s.author = AUTHOR
23
- s.email = EMAIL
24
- s.homepage = HOMEPAGE
25
-
26
- s.rubyforge_project = GEM # GitHub bug, gem isn't being build when this miss
27
- end
28
-
29
- Spec::Rake::SpecTask.new do |t|
30
- t.spec_files = FileList['spec/**/*_spec.rb']
31
- t.spec_opts = %w(-fs --color)
32
- end
33
-
34
- Rake::GemPackageTask.new(spec) do |pkg|
35
- pkg.gem_spec = spec
36
- end
37
-
38
- desc "Install the gem locally"
39
- task :install => [:package] do
40
- sh %{sudo gem install pkg/#{GEM}-#{GEM_VERSION}}
41
- end
42
-
43
- desc "Create a gemspec file"
44
- task :make_spec do
45
- File.open("#{GEM}.gemspec", "w") do |file|
46
- file.puts spec.to_ruby
47
- end
48
- end
@@ -1,5 +0,0 @@
1
- describe "Cap recipes" do
2
- it "should have real tests eventually" do
3
- true.should eql(true)
4
- end
5
- end