jdt 0.0.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/.gitignore +6 -0
- data/.rspec +2 -0
- data/CHANGELOG.md +1 -0
- data/Gemfile +9 -0
- data/Gemfile.lock +64 -0
- data/LICENSE +7 -0
- data/README.md +101 -0
- data/Rakefile +2 -0
- data/bin/jdt +16 -0
- data/features/build.feature +0 -0
- data/features/manifest.feature +25 -0
- data/features/new.feature +97 -0
- data/features/release.feature +47 -0
- data/features/status.feature +22 -0
- data/features/step_definitions/my_steps.rb +37 -0
- data/features/support/env.rb +7 -0
- data/features/support/setup.rb +2 -0
- data/features/validate.feature +0 -0
- data/features/version.feature +9 -0
- data/jdt.gemspec +25 -0
- data/lib/jdt/cli.rb +34 -0
- data/lib/jdt/commands/build.rb +28 -0
- data/lib/jdt/commands/bump.rb +37 -0
- data/lib/jdt/commands/install.rb +20 -0
- data/lib/jdt/commands/new.rb +31 -0
- data/lib/jdt/commands/pretty_print.rb +16 -0
- data/lib/jdt/commands/secure.rb +19 -0
- data/lib/jdt/commands/status.rb +21 -0
- data/lib/jdt/commands/validate.rb +35 -0
- data/lib/jdt/commands/version.rb +18 -0
- data/lib/jdt/generator/generator.rb +262 -0
- data/lib/jdt/generator/templates/access.xml.erb +10 -0
- data/lib/jdt/generator/templates/component/admin/access.xml.erb +0 -0
- data/lib/jdt/generator/templates/component/admin/com_name.erb +0 -0
- data/lib/jdt/generator/templates/component/admin/config.xml.erb +0 -0
- data/lib/jdt/generator/templates/component/admin/controller.erb +0 -0
- data/lib/jdt/generator/templates/component/admin/views/view_name/tmpl/default.erb +0 -0
- data/lib/jdt/generator/templates/component/admin/views/view_name/view.html.erb +0 -0
- data/lib/jdt/generator/templates/component/index.html.erb +1 -0
- data/lib/jdt/generator/templates/component/manifest.xml.erb +46 -0
- data/lib/jdt/generator/templates/component/script.php.erb +66 -0
- data/lib/jdt/generator/templates/component/site/com_name.php.erb +15 -0
- data/lib/jdt/generator/templates/component/site/controller.php.erb +14 -0
- data/lib/jdt/generator/templates/component/site/models/com_model_name.erb +0 -0
- data/lib/jdt/generator/templates/component/site/views/view_name/tmpl/default.php.erb +0 -0
- data/lib/jdt/generator/templates/component/site/views/view_name/tmpl/default.xml.erb +0 -0
- data/lib/jdt/generator/templates/component/site/views/view_name/view.html.erb +0 -0
- data/lib/jdt/generator/templates/config.xml.erb +6 -0
- data/lib/jdt/generator/templates/controller.php.erb +13 -0
- data/lib/jdt/generator/templates/dummy_html.erb +1 -0
- data/lib/jdt/generator/templates/entry.erb +15 -0
- data/lib/jdt/generator/templates/manifest.xml.erb +59 -0
- data/lib/jdt/generator/templates/module/helper.php.erb +14 -0
- data/lib/jdt/generator/templates/module/manifest.xml.erb +16 -0
- data/lib/jdt/generator/templates/module/mod_name.php.erb +10 -0
- data/lib/jdt/generator/templates/module/tmpl/default.php.erb +3 -0
- data/lib/jdt/generator/templates/plugin/main.php.erb +0 -0
- data/lib/jdt/generator/templates/plugin/manifest.xml.erb +16 -0
- data/lib/jdt/generator/templates/script.php.erb +66 -0
- data/lib/jdt/generator.rb +1 -0
- data/lib/jdt/manifest/attributes.rb +77 -0
- data/lib/jdt/manifest/build.rb +106 -0
- data/lib/jdt/manifest/bump.rb +40 -0
- data/lib/jdt/manifest/find.rb +58 -0
- data/lib/jdt/manifest/library_manifest.rb +19 -0
- data/lib/jdt/manifest/manifest.rb +29 -0
- data/lib/jdt/manifest/referenced.rb +96 -0
- data/lib/jdt/manifest/schemas/library.xsd +80 -0
- data/lib/jdt/manifest/schemas/manifest.xsd +32 -0
- data/lib/jdt/manifest/secure.rb +39 -0
- data/lib/jdt/manifest/validation.rb +121 -0
- data/lib/jdt/manifest/xslts/pretty_print.xsl +46 -0
- data/lib/jdt/manifest.rb +9 -0
- data/lib/jdt/version.rb +3 -0
- data/lib/jdt.rb +0 -0
- data/lib/not_yet_added/deploy.rb +54 -0
- data/lib/not_yet_added/xampp.rb +82 -0
- data/spec/jdt/generator/generator_spec.rb +55 -0
- data/spec/jdt/manifest/data/example_library/.gitignore +1 -0
- data/spec/jdt/manifest/data/example_library/ActiveRecord.php +3 -0
- data/spec/jdt/manifest/data/example_library/JoomlaActiveRecord.php +56 -0
- data/spec/jdt/manifest/data/example_library/JoomlaConfig.php +42 -0
- data/spec/jdt/manifest/data/example_library/README.md +51 -0
- data/spec/jdt/manifest/data/example_library/dist/asdf.txt +0 -0
- data/spec/jdt/manifest/data/example_library/manifest.xml +22 -0
- data/spec/jdt/manifest/data/library.xml +33 -0
- data/spec/jdt/manifest/data/library_error.xml +23 -0
- data/spec/jdt/manifest/data/library_minimum.xml +11 -0
- data/spec/jdt/manifest/data/manifest.xml +4 -0
- data/spec/jdt/manifest/example_library_spec.rb +27 -0
- data/spec/jdt/manifest/finder_spec.rb +58 -0
- data/spec/jdt/manifest/library_manifest_spec.rb +17 -0
- data/spec/jdt/manifest/manifest_spec.rb +68 -0
- data/spec/jdt/manifest/referenced_spec.rb +28 -0
- data/spec/jdt/manifest/secure_spec.rb +42 -0
- data/spec/jdt/manifest/validation_spec.rb +45 -0
- data/spec/jdt/version_spec.rb +9 -0
- metadata +211 -0
@@ -0,0 +1,27 @@
|
|
1
|
+
require "rspec"
|
2
|
+
|
3
|
+
require "jdt/manifest/manifest"
|
4
|
+
require "jdt/manifest/library_manifest"
|
5
|
+
require "jdt/manifest/attributes"
|
6
|
+
require "jdt/manifest/build"
|
7
|
+
require "jdt/manifest/referenced"
|
8
|
+
require "jdt/manifest/find"
|
9
|
+
require "jdt/manifest/validation"
|
10
|
+
|
11
|
+
describe "Example Library Manifest" do
|
12
|
+
|
13
|
+
PATH = "#{File.dirname(__FILE__)}/data/example_library"
|
14
|
+
|
15
|
+
it "should validate" do
|
16
|
+
manifest = Jdt::Manifest.find(PATH)
|
17
|
+
manifest.file.should eq("#{PATH}/manifest.xml")
|
18
|
+
manifest.valid?.should eq(true)
|
19
|
+
|
20
|
+
manifest.referenced.empty?.should eq(false)
|
21
|
+
manifest.referenced.count.should eq(4)
|
22
|
+
|
23
|
+
manifest.build
|
24
|
+
manifest.release
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
require "rspec"
|
2
|
+
require "tmpdir"
|
3
|
+
|
4
|
+
require "jdt/manifest/manifest"
|
5
|
+
require "jdt/manifest/find"
|
6
|
+
|
7
|
+
describe Jdt::ManifestFinder do
|
8
|
+
|
9
|
+
it "should find manifest.xml in folder" do
|
10
|
+
|
11
|
+
Dir.tmpdir() do |testdir|
|
12
|
+
|
13
|
+
path = "#{testdir}/com_name"
|
14
|
+
manifest_path = "#{path}/manifest.xml"
|
15
|
+
Dir.mkdir(path)
|
16
|
+
File.new(manifest_path)
|
17
|
+
|
18
|
+
manifest = ManifestFinder.new(path).find
|
19
|
+
manifest.should eq_a(Manifest)
|
20
|
+
|
21
|
+
manifest.path.should eq(manifest_path)
|
22
|
+
end
|
23
|
+
|
24
|
+
end
|
25
|
+
|
26
|
+
it "should find manifest with same name as folder in folder" do
|
27
|
+
|
28
|
+
Dir.tmpdir() do |testdir|
|
29
|
+
|
30
|
+
path = "#{testdir}/com_name"
|
31
|
+
manifest_path = "#{path}/name.xml"
|
32
|
+
Dir.mkdir(path)
|
33
|
+
File.new(manifest_path)
|
34
|
+
|
35
|
+
manifest = ManifestFinder.new(path).find
|
36
|
+
manifest.should eq_a(Manifest)
|
37
|
+
|
38
|
+
manifest.path.should eq(manifest_path)
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
42
|
+
|
43
|
+
it "should not find manifest in empty folder" do
|
44
|
+
|
45
|
+
Dir.tmpdir() do |testdir|
|
46
|
+
|
47
|
+
path = "#{testdir}/com_name"
|
48
|
+
Dir.mkdir(path)
|
49
|
+
|
50
|
+
expect {
|
51
|
+
ManifestFinder.new(path).find
|
52
|
+
}.to raise_error(NoManifestException)
|
53
|
+
|
54
|
+
end
|
55
|
+
|
56
|
+
end
|
57
|
+
|
58
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
require "rspec"
|
2
|
+
|
3
|
+
require "jdt/manifest/manifest"
|
4
|
+
require "jdt/manifest/attributes"
|
5
|
+
require "jdt/manifest/library_manifest"
|
6
|
+
|
7
|
+
describe Jdt::LibraryManifest do
|
8
|
+
|
9
|
+
it "should read additional values to Manifest" do
|
10
|
+
manifest = Jdt::LibraryManifest.new("#{File.dirname(__FILE__)}/data/library.xml")
|
11
|
+
manifest.library_name.should eq("activerecord")
|
12
|
+
|
13
|
+
manifest.ext_type.should eq("library")
|
14
|
+
manifest.ext_type_short.should eq("lib")
|
15
|
+
manifest.prefixed_name.should eq("lib_activerecord")
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,68 @@
|
|
1
|
+
require "rspec"
|
2
|
+
require "tmpdir"
|
3
|
+
require "fileutils"
|
4
|
+
|
5
|
+
require "jdt/manifest/manifest"
|
6
|
+
require "jdt/manifest/attributes"
|
7
|
+
require "jdt/manifest/bump"
|
8
|
+
|
9
|
+
describe Jdt::Manifest do
|
10
|
+
|
11
|
+
FILE = "#{File.dirname(__FILE__)}/data/library.xml"
|
12
|
+
|
13
|
+
it "should read manifest file with correct attributes" do
|
14
|
+
|
15
|
+
manifest = Jdt::Manifest.new(FILE)
|
16
|
+
|
17
|
+
manifest.required_joomla_version.should eq("1.7.0")
|
18
|
+
manifest.ext_method.should eq("upgrade")
|
19
|
+
manifest.ext_type.should eq("library")
|
20
|
+
|
21
|
+
expect {
|
22
|
+
manifest.ext_type_short
|
23
|
+
}.to raise_error(NoMethodError)
|
24
|
+
|
25
|
+
expect {
|
26
|
+
manifest.prefixed_name
|
27
|
+
}.to raise_error(NoMethodError)
|
28
|
+
|
29
|
+
manifest.name.should eq("activerecord")
|
30
|
+
manifest.description.should eq("desc text")
|
31
|
+
|
32
|
+
manifest.version.should eq("1.0.0")
|
33
|
+
manifest.creation_date.should eq("August 2011")
|
34
|
+
manifest.homepage.should eq("https://www.github.com/simonharrer/activerecord")
|
35
|
+
manifest.author.should eq("Simon Harrer")
|
36
|
+
manifest.author_email.should eq("simon.harrer@feki.de")
|
37
|
+
manifest.author_url.should eq("http://www.feki.de")
|
38
|
+
|
39
|
+
manifest.license.should eq("licsence text")
|
40
|
+
manifest.copyright.should eq("copyright text")
|
41
|
+
|
42
|
+
manifest.folder.should eq(File.dirname(FILE))
|
43
|
+
end
|
44
|
+
|
45
|
+
it "should bump version correctly" do
|
46
|
+
|
47
|
+
Dir.tmpdir do |dir|
|
48
|
+
MANIFEST_FILE = "#{dir}/manifest.xml"
|
49
|
+
File.cp(FILE, MANIFEST_FILE)
|
50
|
+
|
51
|
+
manifest = Jdt::Manifest.new(FILE)
|
52
|
+
|
53
|
+
manifest.version.should eq("1.0.0")
|
54
|
+
manifest.bump!(:patch)
|
55
|
+
manifest.version.should eq("1.0.1")
|
56
|
+
|
57
|
+
manifest.bump!(:minor)
|
58
|
+
manifest.version.should eq("1.1.0")
|
59
|
+
|
60
|
+
manifest.bump!(:patch)
|
61
|
+
manifest.version.should eq("1.1.1")
|
62
|
+
|
63
|
+
manifest.bump!(:major)
|
64
|
+
manifest.version.should eq("2.0.0")
|
65
|
+
end
|
66
|
+
|
67
|
+
end
|
68
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
require "rspec"
|
2
|
+
require "tmpdir"
|
3
|
+
|
4
|
+
require "jdt/manifest/referenced"
|
5
|
+
|
6
|
+
describe Jdt::Referenced do
|
7
|
+
|
8
|
+
it "should reference file without parent" do
|
9
|
+
|
10
|
+
Dir.tmpdir do |dir|
|
11
|
+
|
12
|
+
file = "#{dir}/test.ext"
|
13
|
+
File.open("#{dir}/test.ext") do |file|
|
14
|
+
file << "test"
|
15
|
+
end
|
16
|
+
|
17
|
+
ref = Jdt::Referenced.new
|
18
|
+
ref.type = :file
|
19
|
+
ref.extension_path = dir
|
20
|
+
ref.path = "test.ext"
|
21
|
+
|
22
|
+
ref.exists?.should eq(true)
|
23
|
+
ref.path_in_extension.should eq("test.ext")
|
24
|
+
ref.path_in_filesystem.should eq("#{dir}/test.ext")
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
require "rspec"
|
2
|
+
require "tmpdir"
|
3
|
+
|
4
|
+
require "jdt/manifest/manifest"
|
5
|
+
require "jdt/manifest/secure"
|
6
|
+
|
7
|
+
describe Jdt::IndexCreater do
|
8
|
+
|
9
|
+
it "should create index.html files within a given path" do
|
10
|
+
Dir.tmpdir do |dir|
|
11
|
+
subdir = "#{dir}/subdir"
|
12
|
+
Dir.mkdir(subdir)
|
13
|
+
|
14
|
+
IndexCreater.new(dir).create_index
|
15
|
+
|
16
|
+
File.exist?("#{dir}/index.html").should eq(true)
|
17
|
+
File.read("#{dir}/index.html").should eq('<html><body bgcolor="#FFFFFF"></body></html>')
|
18
|
+
File.exist?("#{subdir}/index.html").should eq(true)
|
19
|
+
File.read("#{subdir}/index.html").should eq('<html><body bgcolor="#FFFFFF"></body></html>')
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
it "should create index.html files within a given path by overriding existing index.html files" do
|
24
|
+
Dir.tmpdir do |dir|
|
25
|
+
subdir = "#{dir}/subdir"
|
26
|
+
Dir.mkdir(subdir)
|
27
|
+
|
28
|
+
File.open("#{subdir}") do |file|
|
29
|
+
file << '<html><body bgcolor="#FFFFFF"></body></html>'
|
30
|
+
end
|
31
|
+
|
32
|
+
IndexCreater.new(dir).create_index
|
33
|
+
|
34
|
+
File.exist?("#{dir}/index.html").should eq(true)
|
35
|
+
File.read("#{dir}/index.html").should eq('<html><body bgcolor="#FFFFFF"></body></html>')
|
36
|
+
File.exist?("#{subdir}/index.html").should eq(true)
|
37
|
+
File.read("#{subdir}/index.html").should eq('<html><body bgcolor="#FFFFFF"></body></html>')
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
|
42
|
+
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
require "rspec"
|
2
|
+
|
3
|
+
require "jdt/manifest/manifest"
|
4
|
+
require "jdt/manifest/attributes"
|
5
|
+
require "jdt/manifest/validation"
|
6
|
+
|
7
|
+
describe Jdt::ManifestSchemaValidator do
|
8
|
+
|
9
|
+
DATA_PATH = "#{File.dirname(__FILE__)}/data"
|
10
|
+
|
11
|
+
it "should do validate against schemas" do
|
12
|
+
|
13
|
+
files = ["#{DATA_PATH}/library_minimum.xml",
|
14
|
+
"#{DATA_PATH}/library.xml"]
|
15
|
+
|
16
|
+
files.each do |file|
|
17
|
+
Jdt::ManifestSchemaValidator.new(Jdt::Manifest.new(file)).valid?.should eq(true)
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
21
|
+
|
22
|
+
it "should not validate against schemas" do
|
23
|
+
|
24
|
+
files = ["#{DATA_PATH}/manifest.xml",
|
25
|
+
"#{DATA_PATH}/library_error.xml"]
|
26
|
+
|
27
|
+
files.each do |file|
|
28
|
+
Jdt::ManifestSchemaValidator.new(Jdt::Manifest.new(file)).valid?.should eq(false)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
end
|
33
|
+
|
34
|
+
require "jdt/manifest/library_manifest"
|
35
|
+
|
36
|
+
describe Jdt::Manifest do
|
37
|
+
|
38
|
+
it "should validate manifest" do
|
39
|
+
|
40
|
+
manifest = Jdt::Manifest.new("#{DATA_PATH}/library.xml")
|
41
|
+
manifest.valid?.should eq(true)
|
42
|
+
|
43
|
+
end
|
44
|
+
|
45
|
+
end
|
metadata
ADDED
@@ -0,0 +1,211 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jdt
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Simon Harrer
|
9
|
+
- Andreas Vorndran
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2011-09-06 00:00:00.000000000Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: nokogiri
|
17
|
+
requirement: &27149088 !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
19
|
+
requirements:
|
20
|
+
- - ! '>='
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '0'
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: *27149088
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: thor
|
28
|
+
requirement: &27148788 !ruby/object:Gem::Requirement
|
29
|
+
none: false
|
30
|
+
requirements:
|
31
|
+
- - ! '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: *27148788
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: rubyzip
|
39
|
+
requirement: &27148500 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ! '>='
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: '0'
|
45
|
+
type: :runtime
|
46
|
+
prerelease: false
|
47
|
+
version_requirements: *27148500
|
48
|
+
- !ruby/object:Gem::Dependency
|
49
|
+
name: rspec
|
50
|
+
requirement: &27148188 !ruby/object:Gem::Requirement
|
51
|
+
none: false
|
52
|
+
requirements:
|
53
|
+
- - ! '>='
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '0'
|
56
|
+
type: :development
|
57
|
+
prerelease: false
|
58
|
+
version_requirements: *27148188
|
59
|
+
- !ruby/object:Gem::Dependency
|
60
|
+
name: cucumber
|
61
|
+
requirement: &27147912 !ruby/object:Gem::Requirement
|
62
|
+
none: false
|
63
|
+
requirements:
|
64
|
+
- - ! '>='
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: '0'
|
67
|
+
type: :development
|
68
|
+
prerelease: false
|
69
|
+
version_requirements: *27147912
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: aruba
|
72
|
+
requirement: &27147648 !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ! '>='
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '0'
|
78
|
+
type: :development
|
79
|
+
prerelease: false
|
80
|
+
version_requirements: *27147648
|
81
|
+
description: ! 'A command line tool to help developing Joomla Extensions. '
|
82
|
+
email:
|
83
|
+
- simon.harrer@feki.de
|
84
|
+
- andreas.vorndran@feki.de
|
85
|
+
executables:
|
86
|
+
- jdt
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- .gitignore
|
91
|
+
- .rspec
|
92
|
+
- CHANGELOG.md
|
93
|
+
- Gemfile
|
94
|
+
- Gemfile.lock
|
95
|
+
- LICENSE
|
96
|
+
- README.md
|
97
|
+
- Rakefile
|
98
|
+
- bin/jdt
|
99
|
+
- features/build.feature
|
100
|
+
- features/manifest.feature
|
101
|
+
- features/new.feature
|
102
|
+
- features/release.feature
|
103
|
+
- features/status.feature
|
104
|
+
- features/step_definitions/my_steps.rb
|
105
|
+
- features/support/env.rb
|
106
|
+
- features/support/setup.rb
|
107
|
+
- features/validate.feature
|
108
|
+
- features/version.feature
|
109
|
+
- jdt.gemspec
|
110
|
+
- lib/jdt.rb
|
111
|
+
- lib/jdt/cli.rb
|
112
|
+
- lib/jdt/commands/build.rb
|
113
|
+
- lib/jdt/commands/bump.rb
|
114
|
+
- lib/jdt/commands/install.rb
|
115
|
+
- lib/jdt/commands/new.rb
|
116
|
+
- lib/jdt/commands/pretty_print.rb
|
117
|
+
- lib/jdt/commands/secure.rb
|
118
|
+
- lib/jdt/commands/status.rb
|
119
|
+
- lib/jdt/commands/validate.rb
|
120
|
+
- lib/jdt/commands/version.rb
|
121
|
+
- lib/jdt/generator.rb
|
122
|
+
- lib/jdt/generator/generator.rb
|
123
|
+
- lib/jdt/generator/templates/access.xml.erb
|
124
|
+
- lib/jdt/generator/templates/component/admin/access.xml.erb
|
125
|
+
- lib/jdt/generator/templates/component/admin/com_name.erb
|
126
|
+
- lib/jdt/generator/templates/component/admin/config.xml.erb
|
127
|
+
- lib/jdt/generator/templates/component/admin/controller.erb
|
128
|
+
- lib/jdt/generator/templates/component/admin/views/view_name/tmpl/default.erb
|
129
|
+
- lib/jdt/generator/templates/component/admin/views/view_name/view.html.erb
|
130
|
+
- lib/jdt/generator/templates/component/index.html.erb
|
131
|
+
- lib/jdt/generator/templates/component/manifest.xml.erb
|
132
|
+
- lib/jdt/generator/templates/component/script.php.erb
|
133
|
+
- lib/jdt/generator/templates/component/site/com_name.php.erb
|
134
|
+
- lib/jdt/generator/templates/component/site/controller.php.erb
|
135
|
+
- lib/jdt/generator/templates/component/site/models/com_model_name.erb
|
136
|
+
- lib/jdt/generator/templates/component/site/views/view_name/tmpl/default.php.erb
|
137
|
+
- lib/jdt/generator/templates/component/site/views/view_name/tmpl/default.xml.erb
|
138
|
+
- lib/jdt/generator/templates/component/site/views/view_name/view.html.erb
|
139
|
+
- lib/jdt/generator/templates/config.xml.erb
|
140
|
+
- lib/jdt/generator/templates/controller.php.erb
|
141
|
+
- lib/jdt/generator/templates/dummy_html.erb
|
142
|
+
- lib/jdt/generator/templates/entry.erb
|
143
|
+
- lib/jdt/generator/templates/manifest.xml.erb
|
144
|
+
- lib/jdt/generator/templates/module/helper.php.erb
|
145
|
+
- lib/jdt/generator/templates/module/manifest.xml.erb
|
146
|
+
- lib/jdt/generator/templates/module/mod_name.php.erb
|
147
|
+
- lib/jdt/generator/templates/module/tmpl/default.php.erb
|
148
|
+
- lib/jdt/generator/templates/plugin/main.php.erb
|
149
|
+
- lib/jdt/generator/templates/plugin/manifest.xml.erb
|
150
|
+
- lib/jdt/generator/templates/script.php.erb
|
151
|
+
- lib/jdt/manifest.rb
|
152
|
+
- lib/jdt/manifest/attributes.rb
|
153
|
+
- lib/jdt/manifest/build.rb
|
154
|
+
- lib/jdt/manifest/bump.rb
|
155
|
+
- lib/jdt/manifest/find.rb
|
156
|
+
- lib/jdt/manifest/library_manifest.rb
|
157
|
+
- lib/jdt/manifest/manifest.rb
|
158
|
+
- lib/jdt/manifest/referenced.rb
|
159
|
+
- lib/jdt/manifest/schemas/library.xsd
|
160
|
+
- lib/jdt/manifest/schemas/manifest.xsd
|
161
|
+
- lib/jdt/manifest/secure.rb
|
162
|
+
- lib/jdt/manifest/validation.rb
|
163
|
+
- lib/jdt/manifest/xslts/pretty_print.xsl
|
164
|
+
- lib/jdt/version.rb
|
165
|
+
- lib/not_yet_added/deploy.rb
|
166
|
+
- lib/not_yet_added/xampp.rb
|
167
|
+
- spec/jdt/generator/generator_spec.rb
|
168
|
+
- spec/jdt/manifest/data/example_library/.gitignore
|
169
|
+
- spec/jdt/manifest/data/example_library/ActiveRecord.php
|
170
|
+
- spec/jdt/manifest/data/example_library/JoomlaActiveRecord.php
|
171
|
+
- spec/jdt/manifest/data/example_library/JoomlaConfig.php
|
172
|
+
- spec/jdt/manifest/data/example_library/README.md
|
173
|
+
- spec/jdt/manifest/data/example_library/dist/asdf.txt
|
174
|
+
- spec/jdt/manifest/data/example_library/manifest.xml
|
175
|
+
- spec/jdt/manifest/data/library.xml
|
176
|
+
- spec/jdt/manifest/data/library_error.xml
|
177
|
+
- spec/jdt/manifest/data/library_minimum.xml
|
178
|
+
- spec/jdt/manifest/data/manifest.xml
|
179
|
+
- spec/jdt/manifest/example_library_spec.rb
|
180
|
+
- spec/jdt/manifest/finder_spec.rb
|
181
|
+
- spec/jdt/manifest/library_manifest_spec.rb
|
182
|
+
- spec/jdt/manifest/manifest_spec.rb
|
183
|
+
- spec/jdt/manifest/referenced_spec.rb
|
184
|
+
- spec/jdt/manifest/secure_spec.rb
|
185
|
+
- spec/jdt/manifest/validation_spec.rb
|
186
|
+
- spec/jdt/version_spec.rb
|
187
|
+
homepage: http://github.com/simonharrer/joomlatools
|
188
|
+
licenses: []
|
189
|
+
post_install_message:
|
190
|
+
rdoc_options: []
|
191
|
+
require_paths:
|
192
|
+
- lib
|
193
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
194
|
+
none: false
|
195
|
+
requirements:
|
196
|
+
- - ! '>='
|
197
|
+
- !ruby/object:Gem::Version
|
198
|
+
version: '0'
|
199
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
200
|
+
none: false
|
201
|
+
requirements:
|
202
|
+
- - ! '>='
|
203
|
+
- !ruby/object:Gem::Version
|
204
|
+
version: '0'
|
205
|
+
requirements: []
|
206
|
+
rubyforge_project:
|
207
|
+
rubygems_version: 1.8.9
|
208
|
+
signing_key:
|
209
|
+
specification_version: 3
|
210
|
+
summary: A command line tool for developing Joomla Extensions
|
211
|
+
test_files: []
|