runcoderun-gem_sync 0.2.4 → 0.2.5
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/History.txt +3 -0
- data/Manifest +2 -1
- data/bin/{rcr_gem_sync → gem_sync} +0 -0
- data/gem_sync.gemspec +32 -78
- data/lib/rcr/gem_sync.rb +1 -1
- metadata +9 -9
data/History.txt
CHANGED
data/Manifest
CHANGED
|
File without changes
|
data/gem_sync.gemspec
CHANGED
|
@@ -1,81 +1,35 @@
|
|
|
1
|
+
Gem::Specification.new do |s|
|
|
2
|
+
s.name = %q{gem_sync}
|
|
3
|
+
s.version = "0.2.5"
|
|
1
4
|
|
|
2
|
-
|
|
3
|
-
|
|
5
|
+
s.required_rubygems_version = Gem::Requirement.new("= 1.2") if s.respond_to? :required_rubygems_version=
|
|
6
|
+
s.authors = ["Rob Sanheim @ Relevance"]
|
|
7
|
+
s.date = %q{2008-09-23}
|
|
8
|
+
s.default_executable = %q{gem_sync}
|
|
9
|
+
s.description = %q{Tool to install dependancies for RunCodeRun, though it could be used to bootstrap your own machines as well.}
|
|
10
|
+
s.email = %q{rob@runcoderun.com}
|
|
11
|
+
s.executables = ["gem_sync"]
|
|
12
|
+
s.extra_rdoc_files = ["bin/gem_sync", "lib/rcr/gem_sync.rb", "lib/runcoderun_gems.txt", "README.txt"]
|
|
13
|
+
s.files = ["bin/gem_sync", "gem_sync.gemspec", "History.txt", "lib/rcr/gem_sync.rb", "lib/runcoderun_gems.txt", "Manifest", "Manifest.txt", "Rakefile", "README.txt", "spec/gem_sync_spec.rb"]
|
|
14
|
+
s.has_rdoc = true
|
|
15
|
+
s.homepage = %q{http://runcoderun.com}
|
|
16
|
+
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Gem_sync", "--main", "README.txt"]
|
|
17
|
+
s.require_paths = ["lib"]
|
|
18
|
+
s.rubyforge_project = %q{gem_sync}
|
|
19
|
+
s.rubygems_version = %q{1.2.0}
|
|
20
|
+
s.summary = %q{Tool to install dependancies for RunCodeRun, though it could be used to bootstrap your own machines as well.}
|
|
21
|
+
s.test_files = ["spec/gem_sync_spec.rb"]
|
|
4
22
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
version: 0.2.4
|
|
9
|
-
platform: ruby
|
|
10
|
-
authors:
|
|
11
|
-
- Rob Sanheim @ Relevance
|
|
12
|
-
autorequire:
|
|
13
|
-
bindir: bin
|
|
23
|
+
if s.respond_to? :specification_version then
|
|
24
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
25
|
+
s.specification_version = 2
|
|
14
26
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
- - ">="
|
|
25
|
-
- !ruby/object:Gem::Version
|
|
26
|
-
version: "0"
|
|
27
|
-
version:
|
|
28
|
-
description: Tool to install dependancies for RunCodeRun, though it could be used to bootstrap your own machines as well.
|
|
29
|
-
email: rob@runcoderun.com
|
|
30
|
-
executables:
|
|
31
|
-
- rcr_gem_sync
|
|
32
|
-
extensions: []
|
|
33
|
-
|
|
34
|
-
extra_rdoc_files:
|
|
35
|
-
- bin/rcr_gem_sync
|
|
36
|
-
- lib/rcr/gem_sync.rb
|
|
37
|
-
- lib/runcoderun_gems.txt
|
|
38
|
-
- README.txt
|
|
39
|
-
files:
|
|
40
|
-
- bin/rcr_gem_sync
|
|
41
|
-
- History.txt
|
|
42
|
-
- lib/rcr/gem_sync.rb
|
|
43
|
-
- lib/runcoderun_gems.txt
|
|
44
|
-
- Manifest
|
|
45
|
-
- Manifest.txt
|
|
46
|
-
- Rakefile
|
|
47
|
-
- README.txt
|
|
48
|
-
- spec/gem_sync_spec.rb
|
|
49
|
-
- gem_sync.gemspec
|
|
50
|
-
has_rdoc: true
|
|
51
|
-
homepage: http://runcoderun.com
|
|
52
|
-
post_install_message:
|
|
53
|
-
rdoc_options:
|
|
54
|
-
- --line-numbers
|
|
55
|
-
- --inline-source
|
|
56
|
-
- --title
|
|
57
|
-
- Gem_sync
|
|
58
|
-
- --main
|
|
59
|
-
- README.txt
|
|
60
|
-
require_paths:
|
|
61
|
-
- lib
|
|
62
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
63
|
-
requirements:
|
|
64
|
-
- - ">="
|
|
65
|
-
- !ruby/object:Gem::Version
|
|
66
|
-
version: "0"
|
|
67
|
-
version:
|
|
68
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
|
-
requirements:
|
|
70
|
-
- - "="
|
|
71
|
-
- !ruby/object:Gem::Version
|
|
72
|
-
version: "1.2"
|
|
73
|
-
version:
|
|
74
|
-
requirements: []
|
|
75
|
-
|
|
76
|
-
rubyforge_project: gem_sync
|
|
77
|
-
rubygems_version: 1.2.0
|
|
78
|
-
specification_version: 2
|
|
79
|
-
summary: Tool to install dependancies for RunCodeRun, though it could be used to bootstrap your own machines as well.
|
|
80
|
-
test_files:
|
|
81
|
-
- spec/gem_sync_spec.rb
|
|
27
|
+
if current_version >= 3 then
|
|
28
|
+
s.add_development_dependency(%q<echoe>, [">= 0"])
|
|
29
|
+
else
|
|
30
|
+
s.add_dependency(%q<echoe>, [">= 0"])
|
|
31
|
+
end
|
|
32
|
+
else
|
|
33
|
+
s.add_dependency(%q<echoe>, [">= 0"])
|
|
34
|
+
end
|
|
35
|
+
end
|
data/lib/rcr/gem_sync.rb
CHANGED
metadata
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: runcoderun-gem_sync
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rob Sanheim @ Relevance
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
|
-
cert_chain:
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
cert_chain: []
|
|
11
|
+
|
|
12
|
+
date: 2008-09-23 00:00:00 -07:00
|
|
13
|
+
default_executable: gem_sync
|
|
13
14
|
dependencies:
|
|
14
15
|
- !ruby/object:Gem::Dependency
|
|
15
16
|
name: echoe
|
|
16
|
-
type: :development
|
|
17
17
|
version_requirement:
|
|
18
18
|
version_requirements: !ruby/object:Gem::Requirement
|
|
19
19
|
requirements:
|
|
@@ -24,16 +24,17 @@ dependencies:
|
|
|
24
24
|
description: Tool to install dependancies for RunCodeRun, though it could be used to bootstrap your own machines as well.
|
|
25
25
|
email: rob@runcoderun.com
|
|
26
26
|
executables:
|
|
27
|
-
-
|
|
27
|
+
- gem_sync
|
|
28
28
|
extensions: []
|
|
29
29
|
|
|
30
30
|
extra_rdoc_files:
|
|
31
|
-
- bin/
|
|
31
|
+
- bin/gem_sync
|
|
32
32
|
- lib/rcr/gem_sync.rb
|
|
33
33
|
- lib/runcoderun_gems.txt
|
|
34
34
|
- README.txt
|
|
35
35
|
files:
|
|
36
|
-
- bin/
|
|
36
|
+
- bin/gem_sync
|
|
37
|
+
- gem_sync.gemspec
|
|
37
38
|
- History.txt
|
|
38
39
|
- lib/rcr/gem_sync.rb
|
|
39
40
|
- lib/runcoderun_gems.txt
|
|
@@ -42,7 +43,6 @@ files:
|
|
|
42
43
|
- Rakefile
|
|
43
44
|
- README.txt
|
|
44
45
|
- spec/gem_sync_spec.rb
|
|
45
|
-
- gem_sync.gemspec
|
|
46
46
|
has_rdoc: true
|
|
47
47
|
homepage: http://runcoderun.com
|
|
48
48
|
post_install_message:
|