cucumber_growlnotify 0.1.0 → 0.1.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/Rakefile +2 -2
- data/VERSION +1 -1
- data/cucumber_growlnotify.gemspec +60 -0
- metadata +5 -4
data/Rakefile
CHANGED
|
@@ -15,8 +15,8 @@ Jeweler::Tasks.new do |gem|
|
|
|
15
15
|
gem.name = "cucumber_growlnotify"
|
|
16
16
|
gem.homepage = "http://github.com/rodrigodealer/cucumber_growlnotify"
|
|
17
17
|
gem.license = "MIT"
|
|
18
|
-
gem.summary = %Q{This gem notifies
|
|
19
|
-
gem.description = %Q{This gem notifies
|
|
18
|
+
gem.summary = %Q{This gem notifies through growl that your cucumber tests are passing or not}
|
|
19
|
+
gem.description = %Q{This gem notifies through growl that your cucumber tests are passing or not}
|
|
20
20
|
gem.email = "rodrigo.dealer@gmail.com"
|
|
21
21
|
gem.authors = ["Rodrigo Oliveira"]
|
|
22
22
|
gem.add_dependency "cucumber", "0.10.0"
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
|
@@ -0,0 +1,60 @@
|
|
|
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{cucumber_growlnotify}
|
|
8
|
+
s.version = "0.1.1"
|
|
9
|
+
|
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
+
s.authors = ["Rodrigo Oliveira"]
|
|
12
|
+
s.date = %q{2011-03-09}
|
|
13
|
+
s.description = %q{This gem notifies through growl that your cucumber tests are passing or not}
|
|
14
|
+
s.email = %q{rodrigo.dealer@gmail.com}
|
|
15
|
+
s.extra_rdoc_files = [
|
|
16
|
+
"LICENSE.txt",
|
|
17
|
+
"README.rdoc"
|
|
18
|
+
]
|
|
19
|
+
s.files = [
|
|
20
|
+
".document",
|
|
21
|
+
"Gemfile",
|
|
22
|
+
"Gemfile.lock",
|
|
23
|
+
"LICENSE.txt",
|
|
24
|
+
"README.rdoc",
|
|
25
|
+
"Rakefile",
|
|
26
|
+
"VERSION",
|
|
27
|
+
"cucumber_growlnotify.gemspec",
|
|
28
|
+
"lib/cucumber_growlnotify.rb",
|
|
29
|
+
"test/helper.rb",
|
|
30
|
+
"test/test_cucumber_growlnotify.rb"
|
|
31
|
+
]
|
|
32
|
+
s.homepage = %q{http://github.com/rodrigodealer/cucumber_growlnotify}
|
|
33
|
+
s.licenses = ["MIT"]
|
|
34
|
+
s.require_paths = ["lib"]
|
|
35
|
+
s.rubygems_version = %q{1.6.2}
|
|
36
|
+
s.summary = %q{This gem notifies through growl that your cucumber tests are passing or not}
|
|
37
|
+
s.test_files = [
|
|
38
|
+
"test/helper.rb",
|
|
39
|
+
"test/test_cucumber_growlnotify.rb"
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
if s.respond_to? :specification_version then
|
|
43
|
+
s.specification_version = 3
|
|
44
|
+
|
|
45
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
46
|
+
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
|
|
47
|
+
s.add_development_dependency(%q<jeweler>, ["~> 1.5.2"])
|
|
48
|
+
s.add_runtime_dependency(%q<cucumber>, ["= 0.10.0"])
|
|
49
|
+
else
|
|
50
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
|
51
|
+
s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
|
|
52
|
+
s.add_dependency(%q<cucumber>, ["= 0.10.0"])
|
|
53
|
+
end
|
|
54
|
+
else
|
|
55
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
|
56
|
+
s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
|
|
57
|
+
s.add_dependency(%q<cucumber>, ["= 0.10.0"])
|
|
58
|
+
end
|
|
59
|
+
end
|
|
60
|
+
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: cucumber_growlnotify
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.1.
|
|
5
|
+
version: 0.1.1
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Rodrigo Oliveira
|
|
@@ -46,7 +46,7 @@ dependencies:
|
|
|
46
46
|
type: :runtime
|
|
47
47
|
prerelease: false
|
|
48
48
|
version_requirements: *id003
|
|
49
|
-
description: This gem notifies
|
|
49
|
+
description: This gem notifies through growl that your cucumber tests are passing or not
|
|
50
50
|
email: rodrigo.dealer@gmail.com
|
|
51
51
|
executables: []
|
|
52
52
|
|
|
@@ -63,6 +63,7 @@ files:
|
|
|
63
63
|
- README.rdoc
|
|
64
64
|
- Rakefile
|
|
65
65
|
- VERSION
|
|
66
|
+
- cucumber_growlnotify.gemspec
|
|
66
67
|
- lib/cucumber_growlnotify.rb
|
|
67
68
|
- test/helper.rb
|
|
68
69
|
- test/test_cucumber_growlnotify.rb
|
|
@@ -80,7 +81,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
80
81
|
requirements:
|
|
81
82
|
- - ">="
|
|
82
83
|
- !ruby/object:Gem::Version
|
|
83
|
-
hash:
|
|
84
|
+
hash: 3402592298845009673
|
|
84
85
|
segments:
|
|
85
86
|
- 0
|
|
86
87
|
version: "0"
|
|
@@ -96,7 +97,7 @@ rubyforge_project:
|
|
|
96
97
|
rubygems_version: 1.6.2
|
|
97
98
|
signing_key:
|
|
98
99
|
specification_version: 3
|
|
99
|
-
summary: This gem notifies
|
|
100
|
+
summary: This gem notifies through growl that your cucumber tests are passing or not
|
|
100
101
|
test_files:
|
|
101
102
|
- test/helper.rb
|
|
102
103
|
- test/test_cucumber_growlnotify.rb
|