amikula-conditional_dcommit 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/.gitignore +5 -0
- data/Rakefile +1 -0
- data/VERSION.yml +2 -2
- data/conditional_dcommit.gemspec +66 -0
- metadata +18 -6
data/Rakefile
CHANGED
|
@@ -10,6 +10,7 @@ begin
|
|
|
10
10
|
gem.homepage = "http://github.com/amikula/conditional_dcommit"
|
|
11
11
|
gem.authors = ["Alf Mikula"]
|
|
12
12
|
gem.files.concat(FileList['data/**/*'])
|
|
13
|
+
%w[open4].each{|d| gem.add_dependency d}
|
|
13
14
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
14
15
|
end
|
|
15
16
|
rescue LoadError
|
data/VERSION.yml
CHANGED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
# Generated by jeweler
|
|
2
|
+
# DO NOT EDIT THIS FILE
|
|
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{conditional_dcommit}
|
|
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 = ["Alf Mikula"]
|
|
12
|
+
s.date = %q{2009-09-16}
|
|
13
|
+
s.default_executable = %q{conditional_dcommit}
|
|
14
|
+
s.email = %q{amikula@gmail.com}
|
|
15
|
+
s.executables = ["conditional_dcommit"]
|
|
16
|
+
s.extra_rdoc_files = [
|
|
17
|
+
"LICENSE",
|
|
18
|
+
"README.rdoc"
|
|
19
|
+
]
|
|
20
|
+
s.files = [
|
|
21
|
+
".gitignore",
|
|
22
|
+
"LICENSE",
|
|
23
|
+
"README.rdoc",
|
|
24
|
+
"Rakefile",
|
|
25
|
+
"VERSION.yml",
|
|
26
|
+
"bin/conditional_dcommit",
|
|
27
|
+
"conditional_dcommit.gemspec",
|
|
28
|
+
"data/growlNotify.applescript",
|
|
29
|
+
"data/growlNotify.applescript",
|
|
30
|
+
"data/stop_sign.jpg",
|
|
31
|
+
"data/stop_sign.jpg",
|
|
32
|
+
"data/traffic_green.jpg",
|
|
33
|
+
"data/traffic_green.jpg",
|
|
34
|
+
"lib/conditional_dcommit.rb",
|
|
35
|
+
"lib/conditional_dcommit/command.rb",
|
|
36
|
+
"lib/conditional_dcommit/package.rb",
|
|
37
|
+
"spec/conditional_dcommit/command_spec.rb",
|
|
38
|
+
"spec/conditional_dcommit/package_spec.rb",
|
|
39
|
+
"spec/conditional_dcommit_spec.rb",
|
|
40
|
+
"spec/spec_helper.rb"
|
|
41
|
+
]
|
|
42
|
+
s.homepage = %q{http://github.com/amikula/conditional_dcommit}
|
|
43
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
44
|
+
s.require_paths = ["lib"]
|
|
45
|
+
s.rubygems_version = %q{1.3.5}
|
|
46
|
+
s.summary = %q{Loops through rebase and test until tests pass and there are no new changes in the repository, then issues a git svn dcommit.}
|
|
47
|
+
s.test_files = [
|
|
48
|
+
"spec/conditional_dcommit/command_spec.rb",
|
|
49
|
+
"spec/conditional_dcommit/package_spec.rb",
|
|
50
|
+
"spec/conditional_dcommit_spec.rb",
|
|
51
|
+
"spec/spec_helper.rb"
|
|
52
|
+
]
|
|
53
|
+
|
|
54
|
+
if s.respond_to? :specification_version then
|
|
55
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
56
|
+
s.specification_version = 3
|
|
57
|
+
|
|
58
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
59
|
+
s.add_runtime_dependency(%q<open4>, [">= 0"])
|
|
60
|
+
else
|
|
61
|
+
s.add_dependency(%q<open4>, [">= 0"])
|
|
62
|
+
end
|
|
63
|
+
else
|
|
64
|
+
s.add_dependency(%q<open4>, [">= 0"])
|
|
65
|
+
end
|
|
66
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: amikula-conditional_dcommit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alf Mikula
|
|
@@ -9,10 +9,19 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-
|
|
12
|
+
date: 2009-09-16 00:00:00 -07:00
|
|
13
13
|
default_executable: conditional_dcommit
|
|
14
|
-
dependencies:
|
|
15
|
-
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: open4
|
|
17
|
+
type: :runtime
|
|
18
|
+
version_requirement:
|
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: "0"
|
|
24
|
+
version:
|
|
16
25
|
description:
|
|
17
26
|
email: amikula@gmail.com
|
|
18
27
|
executables:
|
|
@@ -23,11 +32,13 @@ extra_rdoc_files:
|
|
|
23
32
|
- LICENSE
|
|
24
33
|
- README.rdoc
|
|
25
34
|
files:
|
|
35
|
+
- .gitignore
|
|
26
36
|
- LICENSE
|
|
27
37
|
- README.rdoc
|
|
28
38
|
- Rakefile
|
|
29
39
|
- VERSION.yml
|
|
30
40
|
- bin/conditional_dcommit
|
|
41
|
+
- conditional_dcommit.gemspec
|
|
31
42
|
- data/growlNotify.applescript
|
|
32
43
|
- data/stop_sign.jpg
|
|
33
44
|
- data/traffic_green.jpg
|
|
@@ -38,8 +49,9 @@ files:
|
|
|
38
49
|
- spec/conditional_dcommit/package_spec.rb
|
|
39
50
|
- spec/conditional_dcommit_spec.rb
|
|
40
51
|
- spec/spec_helper.rb
|
|
41
|
-
has_rdoc:
|
|
52
|
+
has_rdoc: false
|
|
42
53
|
homepage: http://github.com/amikula/conditional_dcommit
|
|
54
|
+
licenses:
|
|
43
55
|
post_install_message:
|
|
44
56
|
rdoc_options:
|
|
45
57
|
- --charset=UTF-8
|
|
@@ -60,7 +72,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
60
72
|
requirements: []
|
|
61
73
|
|
|
62
74
|
rubyforge_project:
|
|
63
|
-
rubygems_version: 1.
|
|
75
|
+
rubygems_version: 1.3.5
|
|
64
76
|
signing_key:
|
|
65
77
|
specification_version: 3
|
|
66
78
|
summary: Loops through rebase and test until tests pass and there are no new changes in the repository, then issues a git svn dcommit.
|