ktec-subtrac 0.1.50 → 0.1.51
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/.document +5 -0
- data/.gitignore +6 -0
- data/Rakefile +1 -1
- data/VERSION.yml +1 -1
- data/subtrac.gemspec +80 -0
- metadata +7 -4
data/.document
ADDED
data/Rakefile
CHANGED
|
@@ -9,7 +9,7 @@ begin
|
|
|
9
9
|
gem.email = "keithsalisbury@gmail.com"
|
|
10
10
|
gem.homepage = "http://ktec.subtrac.com/subtrac"
|
|
11
11
|
gem.authors = ["Keith Salisbury"]
|
|
12
|
-
gem.add_dependency('
|
|
12
|
+
gem.add_dependency('ktec-commander', '>= 3.2.5')
|
|
13
13
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
|
14
14
|
end
|
|
15
15
|
rescue LoadError
|
data/VERSION.yml
CHANGED
data/subtrac.gemspec
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
|
|
3
|
+
Gem::Specification.new do |s|
|
|
4
|
+
s.name = %q{subtrac}
|
|
5
|
+
s.version = "0.1.51"
|
|
6
|
+
|
|
7
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
8
|
+
s.authors = ["Keith Salisbury"]
|
|
9
|
+
s.date = %q{2009-06-01}
|
|
10
|
+
s.default_executable = %q{subtrac}
|
|
11
|
+
s.email = %q{keithsalisbury@gmail.com}
|
|
12
|
+
s.executables = ["subtrac"]
|
|
13
|
+
s.extra_rdoc_files = [
|
|
14
|
+
"LICENSE",
|
|
15
|
+
"README.markdown"
|
|
16
|
+
]
|
|
17
|
+
s.files = [
|
|
18
|
+
".document",
|
|
19
|
+
".gitignore",
|
|
20
|
+
"LICENSE",
|
|
21
|
+
"README.markdown",
|
|
22
|
+
"Rakefile",
|
|
23
|
+
"VERSION.yml",
|
|
24
|
+
"bin/subtrac",
|
|
25
|
+
"lib/subtrac.rb",
|
|
26
|
+
"lib/subtrac/apache.rb",
|
|
27
|
+
"lib/subtrac/apache/location.conf.erb",
|
|
28
|
+
"lib/subtrac/apache/vhost.conf.erb",
|
|
29
|
+
"lib/subtrac/client.rb",
|
|
30
|
+
"lib/subtrac/commands.rb",
|
|
31
|
+
"lib/subtrac/commands/create.rb",
|
|
32
|
+
"lib/subtrac/commands/create_template.rb",
|
|
33
|
+
"lib/subtrac/commands/install.rb",
|
|
34
|
+
"lib/subtrac/common/favicon.ico",
|
|
35
|
+
"lib/subtrac/common/images/trac/banner_bg.jpg",
|
|
36
|
+
"lib/subtrac/common/images/trac/bar_bg.gif",
|
|
37
|
+
"lib/subtrac/common/images/trac/footer_back.png",
|
|
38
|
+
"lib/subtrac/common/images/trac/main_bg.gif",
|
|
39
|
+
"lib/subtrac/common/images/trac/saint_logo_small.png",
|
|
40
|
+
"lib/subtrac/config.rb",
|
|
41
|
+
"lib/subtrac/config/config.yml",
|
|
42
|
+
"lib/subtrac/core_ext.rb",
|
|
43
|
+
"lib/subtrac/core_ext/file.rb",
|
|
44
|
+
"lib/subtrac/project.rb",
|
|
45
|
+
"lib/subtrac/project/blank/svn/branches/README",
|
|
46
|
+
"lib/subtrac/project/blank/svn/tags/README",
|
|
47
|
+
"lib/subtrac/project/blank/svn/trunk/README",
|
|
48
|
+
"lib/subtrac/project/blank/trac/wiki/WikiStart",
|
|
49
|
+
"lib/subtrac/project/template/svn/trunk/svn/branches/README",
|
|
50
|
+
"lib/subtrac/project/template/svn/trunk/svn/tags/README",
|
|
51
|
+
"lib/subtrac/project/template/svn/trunk/svn/trunk/README",
|
|
52
|
+
"lib/subtrac/project/template/svn/trunk/trac/wiki/WikiStart",
|
|
53
|
+
"lib/subtrac/project/template/trac/wiki/WikiStart",
|
|
54
|
+
"lib/subtrac/svn.rb",
|
|
55
|
+
"lib/subtrac/template.rb",
|
|
56
|
+
"lib/subtrac/trac.rb",
|
|
57
|
+
"lib/subtrac/trac/common.trac.ini.erb",
|
|
58
|
+
"lib/subtrac/trac/trac.ini.erb",
|
|
59
|
+
"lib/subtrac/version.rb",
|
|
60
|
+
"subtrac.gemspec"
|
|
61
|
+
]
|
|
62
|
+
s.homepage = %q{http://ktec.subtrac.com/subtrac}
|
|
63
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
|
64
|
+
s.require_paths = ["lib"]
|
|
65
|
+
s.rubygems_version = %q{1.3.3}
|
|
66
|
+
s.summary = %q{Simple and opinionated helper for creating and managing subversion and trac projects.}
|
|
67
|
+
|
|
68
|
+
if s.respond_to? :specification_version then
|
|
69
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
70
|
+
s.specification_version = 3
|
|
71
|
+
|
|
72
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
73
|
+
s.add_runtime_dependency(%q<ktec-commander>, [">= 3.2.5"])
|
|
74
|
+
else
|
|
75
|
+
s.add_dependency(%q<ktec-commander>, [">= 3.2.5"])
|
|
76
|
+
end
|
|
77
|
+
else
|
|
78
|
+
s.add_dependency(%q<ktec-commander>, [">= 3.2.5"])
|
|
79
|
+
end
|
|
80
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ktec-subtrac
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.51
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Keith Salisbury
|
|
@@ -9,11 +9,11 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-
|
|
12
|
+
date: 2009-06-01 00:00:00 -07:00
|
|
13
13
|
default_executable: subtrac
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
|
-
name:
|
|
16
|
+
name: ktec-commander
|
|
17
17
|
type: :runtime
|
|
18
18
|
version_requirement:
|
|
19
19
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -32,6 +32,8 @@ extra_rdoc_files:
|
|
|
32
32
|
- LICENSE
|
|
33
33
|
- README.markdown
|
|
34
34
|
files:
|
|
35
|
+
- .document
|
|
36
|
+
- .gitignore
|
|
35
37
|
- LICENSE
|
|
36
38
|
- README.markdown
|
|
37
39
|
- Rakefile
|
|
@@ -72,7 +74,8 @@ files:
|
|
|
72
74
|
- lib/subtrac/trac/common.trac.ini.erb
|
|
73
75
|
- lib/subtrac/trac/trac.ini.erb
|
|
74
76
|
- lib/subtrac/version.rb
|
|
75
|
-
|
|
77
|
+
- subtrac.gemspec
|
|
78
|
+
has_rdoc: false
|
|
76
79
|
homepage: http://ktec.subtrac.com/subtrac
|
|
77
80
|
post_install_message:
|
|
78
81
|
rdoc_options:
|