capistrano-campfire 0.1.1 → 0.1.2

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/Rakefile CHANGED
@@ -10,6 +10,7 @@ begin
10
10
  gem.email = "josh@technicalpickles.com"
11
11
  gem.homepage = "http://github.com/technicalpickles/capistrano-campfire"
12
12
  gem.authors = ["Joshua Nichols"]
13
+ gem.add_dependency "tinder"
13
14
  gem.add_development_dependency "rspec", ">= 1.2.9"
14
15
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
15
16
  end
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.1.2
@@ -0,0 +1,58 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{capistrano-campfire}
8
+ s.version = "0.1.2"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Joshua Nichols"]
12
+ s.date = %q{2011-01-29}
13
+ s.description = %q{ capistrano-tinder is a very simple library for making a Campfire room accessible from capistrano. All it does is provide said access, and nothing more, preferring to let other gems do that trickery. }
14
+ s.email = %q{josh@technicalpickles.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ "LICENSE",
22
+ "README.rdoc",
23
+ "Rakefile",
24
+ "VERSION",
25
+ "capistrano-campfire.gemspec",
26
+ "capistrano-tinder.gemspec",
27
+ "lib/capistrano-campfire.rb",
28
+ "lib/capistrano/campfire.rb",
29
+ "spec/capistrano-tinder_spec.rb",
30
+ "spec/spec.opts",
31
+ "spec/spec_helper.rb"
32
+ ]
33
+ s.homepage = %q{http://github.com/technicalpickles/capistrano-campfire}
34
+ s.require_paths = ["lib"]
35
+ s.rubygems_version = %q{1.3.7}
36
+ s.summary = %q{Post to Campfire from capistrano}
37
+ s.test_files = [
38
+ "spec/capistrano-tinder_spec.rb",
39
+ "spec/spec_helper.rb"
40
+ ]
41
+
42
+ if s.respond_to? :specification_version then
43
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
44
+ s.specification_version = 3
45
+
46
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
47
+ s.add_runtime_dependency(%q<tinder>, [">= 0"])
48
+ s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
49
+ else
50
+ s.add_dependency(%q<tinder>, [">= 0"])
51
+ s.add_dependency(%q<rspec>, [">= 1.2.9"])
52
+ end
53
+ else
54
+ s.add_dependency(%q<tinder>, [">= 0"])
55
+ s.add_dependency(%q<rspec>, [">= 1.2.9"])
56
+ end
57
+ end
58
+
@@ -1 +1 @@
1
- require 'capistrano/tinder'
1
+ require 'capistrano/campfire'
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-campfire
3
3
  version: !ruby/object:Gem::Version
4
+ hash: 31
4
5
  prerelease: false
5
6
  segments:
6
7
  - 0
7
8
  - 1
8
- - 1
9
- version: 0.1.1
9
+ - 2
10
+ version: 0.1.2
10
11
  platform: ruby
11
12
  authors:
12
13
  - Joshua Nichols
@@ -14,23 +15,39 @@ autorequire:
14
15
  bindir: bin
15
16
  cert_chain: []
16
17
 
17
- date: 2010-08-17 00:00:00 -04:00
18
+ date: 2011-01-29 00:00:00 -05:00
18
19
  default_executable:
19
20
  dependencies:
20
21
  - !ruby/object:Gem::Dependency
21
- name: rspec
22
+ name: tinder
22
23
  prerelease: false
23
24
  requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
24
26
  requirements:
25
27
  - - ">="
26
28
  - !ruby/object:Gem::Version
29
+ hash: 3
30
+ segments:
31
+ - 0
32
+ version: "0"
33
+ type: :runtime
34
+ version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: rspec
37
+ prerelease: false
38
+ requirement: &id002 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ hash: 13
27
44
  segments:
28
45
  - 1
29
46
  - 2
30
47
  - 9
31
48
  version: 1.2.9
32
49
  type: :development
33
- version_requirements: *id001
50
+ version_requirements: *id002
34
51
  description: " capistrano-tinder is a very simple library for making a Campfire room accessible from capistrano. All it does is provide said access, and nothing more, preferring to let other gems do that trickery. "
35
52
  email: josh@technicalpickles.com
36
53
  executables: []
@@ -42,11 +59,11 @@ extra_rdoc_files:
42
59
  - README.rdoc
43
60
  files:
44
61
  - .document
45
- - .gitignore
46
62
  - LICENSE
47
63
  - README.rdoc
48
64
  - Rakefile
49
65
  - VERSION
66
+ - capistrano-campfire.gemspec
50
67
  - capistrano-tinder.gemspec
51
68
  - lib/capistrano-campfire.rb
52
69
  - lib/capistrano/campfire.rb
@@ -63,23 +80,27 @@ rdoc_options: []
63
80
  require_paths:
64
81
  - lib
65
82
  required_ruby_version: !ruby/object:Gem::Requirement
83
+ none: false
66
84
  requirements:
67
85
  - - ">="
68
86
  - !ruby/object:Gem::Version
87
+ hash: 3
69
88
  segments:
70
89
  - 0
71
90
  version: "0"
72
91
  required_rubygems_version: !ruby/object:Gem::Requirement
92
+ none: false
73
93
  requirements:
74
94
  - - ">="
75
95
  - !ruby/object:Gem::Version
96
+ hash: 3
76
97
  segments:
77
98
  - 0
78
99
  version: "0"
79
100
  requirements: []
80
101
 
81
102
  rubyforge_project:
82
- rubygems_version: 1.3.6
103
+ rubygems_version: 1.3.7
83
104
  signing_key:
84
105
  specification_version: 3
85
106
  summary: Post to Campfire from capistrano
data/.gitignore DELETED
@@ -1,21 +0,0 @@
1
- ## MAC OS
2
- .DS_Store
3
-
4
- ## TEXTMATE
5
- *.tmproj
6
- tmtags
7
-
8
- ## EMACS
9
- *~
10
- \#*
11
- .\#*
12
-
13
- ## VIM
14
- *.swp
15
-
16
- ## PROJECT::GENERAL
17
- coverage
18
- rdoc
19
- pkg
20
-
21
- ## PROJECT::SPECIFIC