jar_wrapper 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES CHANGED
@@ -4,3 +4,7 @@
4
4
  == Version 0.0.1
5
5
 
6
6
  * Initial release.
7
+
8
+ == Version 0.1.2
9
+
10
+ * Adding licence.
data/LICENSE ADDED
@@ -0,0 +1,25 @@
1
+ Copyright 2011 Alexander Shvets. All rights reserved.
2
+
3
+ Redistribution and use in source and binary forms, with or without modification, are
4
+ permitted provided that the following conditions are met:
5
+
6
+ 1. Redistributions of source code must retain the above copyright notice, this list of
7
+ conditions and the following disclaimer.
8
+
9
+ 2. Redistributions in binary form must reproduce the above copyright notice, this list
10
+ of conditions and the following disclaimer in the documentation and/or other materials
11
+ provided with the distribution.
12
+
13
+ THIS SOFTWARE IS PROVIDED BY ALEXANDER SHVETS ''AS IS'' AND ANY EXPRESS OR IMPLIED
14
+ WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
15
+ FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> OR
16
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
17
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
18
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
19
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
20
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
21
+ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
22
+
23
+ The views and conclusions contained in the software and documentation are those of the
24
+ authors and should not be interpreted as representing official policies, either expressed
25
+ or implied, of Alexander Shvets.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.1
1
+ 0.1.2
data/jar_wrapper.gemspec CHANGED
@@ -5,14 +5,15 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{jar_wrapper}
8
- s.version = "0.1.1"
8
+ s.version = "0.1.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = [%q{Alexander Shvets}]
12
- s.date = %q{2011-09-24}
12
+ s.date = %q{2011-10-05}
13
13
  s.description = %q{Jar wrapper for executable java jar.}
14
14
  s.email = %q{alexander.shvets@gmail.com}
15
15
  s.extra_rdoc_files = [
16
+ "LICENSE",
16
17
  "README"
17
18
  ]
18
19
  s.files = [
@@ -1,5 +1,8 @@
1
1
  require 'open-uri'
2
2
 
3
+ # some code is extracted from redcar project (https://github.com/redcar/redcar) which is in turn extracted
4
+ # from ruby-processing gem (https://github.com/jashkenas/ruby-processing).
5
+
3
6
  class JarWrapper
4
7
  attr_accessor :main_class, :classpath, :jar_file, :java_opts
5
8
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jar_wrapper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-09-24 00:00:00.000000000Z
12
+ date: 2011-10-05 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: jeweler
16
- requirement: &2153170560 !ruby/object:Gem::Requirement
16
+ requirement: &2157025780 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *2153170560
24
+ version_requirements: *2157025780
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: zip
27
- requirement: &2153169660 !ruby/object:Gem::Requirement
27
+ requirement: &2157025120 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: '0'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *2153169660
35
+ version_requirements: *2157025120
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: jeweler
38
- requirement: &2153168720 !ruby/object:Gem::Requirement
38
+ requirement: &2157024480 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ! '>='
@@ -43,10 +43,10 @@ dependencies:
43
43
  version: '0'
44
44
  type: :runtime
45
45
  prerelease: false
46
- version_requirements: *2153168720
46
+ version_requirements: *2157024480
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: zip
49
- requirement: &2153168000 !ruby/object:Gem::Requirement
49
+ requirement: &2157023880 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
52
  - - ! '>='
@@ -54,12 +54,13 @@ dependencies:
54
54
  version: '0'
55
55
  type: :runtime
56
56
  prerelease: false
57
- version_requirements: *2153168000
57
+ version_requirements: *2157023880
58
58
  description: Jar wrapper for executable java jar.
59
59
  email: alexander.shvets@gmail.com
60
60
  executables: []
61
61
  extensions: []
62
62
  extra_rdoc_files:
63
+ - LICENSE
63
64
  - README
64
65
  files:
65
66
  - CHANGES
@@ -69,6 +70,7 @@ files:
69
70
  - jar_wrapper.gemspec
70
71
  - lib/jar_wrapper.rb
71
72
  - lib/jar_wrapper/jar_wrapper.rb
73
+ - LICENSE
72
74
  homepage: http://github.com/shvets/jar_wrapper
73
75
  licenses: []
74
76
  post_install_message: