ivy4r-jars 1.0.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.
@@ -0,0 +1,8 @@
1
+ === 1.0.1 / 2009-06-24
2
+
3
+ * small improvements in rakefile (execute test for some targets)
4
+ * publish to rubyforge "hamburg.rb"
5
+
6
+ === 1.0.0 / 2009-06-23
7
+
8
+ * Contains the major jars for ANT and Ivy
@@ -0,0 +1,14 @@
1
+ History.txt
2
+ Manifest.txt
3
+ README.txt
4
+ Rakefile
5
+ bin/ivy4r_jars
6
+ ivy4r-jars.gemspec
7
+ lib/ant-1.7.1.jar
8
+ lib/ant-launcher-1.7.1.jar
9
+ lib/ant-trax-1.7.1.jar
10
+ lib/ivy4r_jars.rb
11
+ lib/ivy_2.2.0.20090623115408.jar
12
+ lib/jsch-0.1.41.jar
13
+ lib/oro-2.0.8.jar
14
+ test/test_ivy4r_jars.rb
@@ -0,0 +1,51 @@
1
+ = ivy4r-jars
2
+
3
+ * http://github.com/klaas1979/ivy4r-jars/tree/master
4
+ * http://hamburgrb.rubyforge.org/
5
+
6
+ == DESCRIPTION:
7
+
8
+ Contains all java jar dependencies for ivy4r[http://github.com/klaas1979/ivy4r/tree/master] to
9
+ separate them from the ruby support for ivy. The dependencies include the needed jars to use
10
+ {Apache Ivy}[http://ant.apache.org/ivy/index.html] including Ant.
11
+
12
+ == FEATURES/PROBLEMS:
13
+
14
+ * this package is not useable by itself it only contains the jars needed by ivy4r[http://github.com/klaas1979/ivy4r/tree/master]
15
+
16
+ == SYNOPSIS:
17
+
18
+ see ivy4r[http://github.com/klaas1979/ivy4r/tree/master]
19
+
20
+ == REQUIREMENTS:
21
+
22
+ * see ivy4r[http://github.com/klaas1979/ivy4r/tree/master]
23
+
24
+ == INSTALL:
25
+
26
+ * you should not need to install this gem by itself it is required by ivy4r[http://github.com/klaas1979/ivy4r/tree/master].
27
+
28
+ == LICENSE:
29
+
30
+ (The MIT License)
31
+
32
+ Copyright (c) 2009 blau Mobilfunk GmbH
33
+
34
+ Permission is hereby granted, free of charge, to any person obtaining
35
+ a copy of this software and associated documentation files (the
36
+ 'Software'), to deal in the Software without restriction, including
37
+ without limitation the rights to use, copy, modify, merge, publish,
38
+ distribute, sublicense, and/or sell copies of the Software, and to
39
+ permit persons to whom the Software is furnished to do so, subject to
40
+ the following conditions:
41
+
42
+ The above copyright notice and this permission notice shall be
43
+ included in all copies or substantial portions of the Software.
44
+
45
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
46
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
47
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
48
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
49
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
50
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
51
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,29 @@
1
+ # -*- ruby -*-
2
+ $:.unshift File.join(File.dirname(__FILE__), 'lib')
3
+
4
+ require 'rubygems'
5
+ require 'hoe'
6
+ require 'ivy4r_jars'
7
+
8
+ hoe = Hoe.spec 'ivy4r-jars' do |p|
9
+ self.rubyforge_name = 'hamburgrb'
10
+ p.developer('Klaas Prause', 'klaas.prause@googlemail.com')
11
+ p.remote_rdoc_dir = 'ivy4r-jars'
12
+ File.open(File.join(File.dirname(__FILE__), 'VERSION'), 'w') do |file|
13
+ file.puts Ivy4rJars::VERSION
14
+ end
15
+ end
16
+
17
+ begin
18
+ require 'jeweler'
19
+ Jeweler::Tasks.new(hoe.spec)
20
+ rescue LoadError
21
+ puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
22
+ end
23
+
24
+ task :gemspec => :test
25
+
26
+ desc "Tests, releases and publishs docs to rubyforge"
27
+ task :release_and_publish => [:test, :release, :publish_docs]
28
+
29
+ # vim: syntax=ruby
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ abort "you need to write me"
@@ -0,0 +1,59 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{ivy4r-jars}
5
+ s.version = "1.0.1"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Klaas Prause"]
9
+ s.date = %q{2009-06-24}
10
+ s.default_executable = %q{ivy4r_jars}
11
+ s.description = %q{Contains all java jar dependencies for ivy4r[http://github.com/klaas1979/ivy4r/tree/master] to
12
+ separate them from the ruby support for ivy. The dependencies include the needed jars to use
13
+ {Apache Ivy}[http://ant.apache.org/ivy/index.html] including Ant.}
14
+ s.email = ["klaas.prause@googlemail.com"]
15
+ s.executables = ["ivy4r_jars"]
16
+ s.extra_rdoc_files = [
17
+ "History.txt",
18
+ "Manifest.txt",
19
+ "README.txt"
20
+ ]
21
+ s.files = [
22
+ "History.txt",
23
+ "Manifest.txt",
24
+ "README.txt",
25
+ "Rakefile",
26
+ "bin/ivy4r_jars",
27
+ "ivy4r-jars.gemspec",
28
+ "lib/ant-1.7.1.jar",
29
+ "lib/ant-launcher-1.7.1.jar",
30
+ "lib/ant-trax-1.7.1.jar",
31
+ "lib/ivy4r_jars.rb",
32
+ "lib/ivy_2.2.0.20090623115408.jar",
33
+ "lib/jsch-0.1.41.jar",
34
+ "lib/oro-2.0.8.jar",
35
+ "test/test_ivy4r_jars.rb"
36
+ ]
37
+ s.homepage = %q{http://github.com/klaas1979/ivy4r-jars/tree/master}
38
+ s.rdoc_options = ["--main", "README.txt", "--charset=UTF-8"]
39
+ s.require_paths = ["lib"]
40
+ s.rubyforge_project = %q{hamburgrb}
41
+ s.rubygems_version = %q{1.3.3}
42
+ s.summary = %q{Contains all java jar dependencies for ivy4r[http://github.com/klaas1979/ivy4r/tree/master] to separate them from the ruby support for ivy}
43
+ s.test_files = [
44
+ "test/test_ivy4r_jars.rb"
45
+ ]
46
+
47
+ if s.respond_to? :specification_version then
48
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
49
+ s.specification_version = 3
50
+
51
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
52
+ s.add_development_dependency(%q<hoe>, [">= 2.2.0"])
53
+ else
54
+ s.add_dependency(%q<hoe>, [">= 2.2.0"])
55
+ end
56
+ else
57
+ s.add_dependency(%q<hoe>, [">= 2.2.0"])
58
+ end
59
+ end
Binary file
Binary file
@@ -0,0 +1,16 @@
1
+ class Ivy4rJars
2
+ VERSION = '1.0.1'
3
+
4
+ class << self
5
+ # Returns expanded path to directory containing the jars
6
+ def lib_dir
7
+ @lib_dir ||= File.expand_path(File.dirname(__FILE__))
8
+ end
9
+
10
+ # Returns expanded path to directory that can be used as
11
+ # __ANT_HOME__ for __Antwrap__.
12
+ def ant_home_dir
13
+ @ant_home_dir ||= File.dirname(lib_dir)
14
+ end
15
+ end
16
+ end
Binary file
Binary file
@@ -0,0 +1,14 @@
1
+ $:.unshift File.join(File.dirname(__FILE__),'..','lib')
2
+
3
+ require "test/unit"
4
+ require "ivy4r_jars"
5
+
6
+ class TestIvy4rJars < Test::Unit::TestCase
7
+ def test_lib_dir_correct_dir
8
+ assert_equal File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib')), Ivy4rJars.lib_dir
9
+ end
10
+
11
+ def test_ant_home_dir_correct_dir
12
+ assert_equal File.expand_path(File.join(File.dirname(__FILE__), '..')), Ivy4rJars.ant_home_dir
13
+ end
14
+ end
metadata ADDED
@@ -0,0 +1,79 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ivy4r-jars
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Klaas Prause
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-06-24 00:00:00 +02:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: hoe
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 2.2.0
24
+ version:
25
+ description: Contains all java jar dependencies for ivy4r[http://github.com/klaas1979/ivy4r/tree/master] to separate them from the ruby support for ivy. The dependencies include the needed jars to use {Apache Ivy}[http://ant.apache.org/ivy/index.html] including Ant.
26
+ email:
27
+ - klaas.prause@googlemail.com
28
+ executables:
29
+ - ivy4r_jars
30
+ extensions: []
31
+
32
+ extra_rdoc_files:
33
+ - History.txt
34
+ - Manifest.txt
35
+ - README.txt
36
+ files:
37
+ - History.txt
38
+ - Manifest.txt
39
+ - README.txt
40
+ - Rakefile
41
+ - bin/ivy4r_jars
42
+ - ivy4r-jars.gemspec
43
+ - lib/ant-1.7.1.jar
44
+ - lib/ant-launcher-1.7.1.jar
45
+ - lib/ant-trax-1.7.1.jar
46
+ - lib/ivy4r_jars.rb
47
+ - lib/ivy_2.2.0.20090623115408.jar
48
+ - lib/jsch-0.1.41.jar
49
+ - lib/oro-2.0.8.jar
50
+ - test/test_ivy4r_jars.rb
51
+ has_rdoc: true
52
+ homepage: http://github.com/klaas1979/ivy4r-jars/tree/master
53
+ post_install_message:
54
+ rdoc_options:
55
+ - --main
56
+ - README.txt
57
+ require_paths:
58
+ - lib
59
+ required_ruby_version: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: "0"
64
+ version:
65
+ required_rubygems_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: "0"
70
+ version:
71
+ requirements: []
72
+
73
+ rubyforge_project: hamburgrb
74
+ rubygems_version: 1.3.1
75
+ signing_key:
76
+ specification_version: 2
77
+ summary: Contains all java jar dependencies for ivy4r[http://github.com/klaas1979/ivy4r/tree/master] to separate them from the ruby support for ivy
78
+ test_files:
79
+ - test/test_ivy4r_jars.rb