therubyrhino_jar 1.7.4 → 1.7.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 29947d403f4026dddaecfe490e10e2470e6f280f
4
+ data.tar.gz: f060b16586069ab4791d1950604212fb34f3c41f
5
+ SHA512:
6
+ metadata.gz: 56084799bf9a378d1ebce0b2b037a2d9413cb3a76a1b9c6ff4e6420084066cac1be4a4cf57dfd01720d88794ea527b481bfe13ce2e362f7f295f4f1885e984d8
7
+ data.tar.gz: 3a55b3545778e16c097300eca2dba3402b569b750b9e7d076618129aaf388f361044624f9e37bd2f4a35c78d2155be965849caec65e07db34636d10a58042834
@@ -1,5 +1,5 @@
1
1
  module Rhino
2
- JAR_PATH = Dir.glob(
3
- File.expand_path('../rhino-*.jar', File.dirname(__FILE__))
4
- ).first
5
- end
2
+ JAR_VERSION = '1.7.5'; version = JAR_VERSION.split('.')
3
+ jar_file = "rhino-#{version[0]}.#{version[1]}R#{version[2]}.jar"
4
+ JAR_PATH = File.expand_path("../#{jar_file}", File.dirname(__FILE__))
5
+ end
@@ -1,20 +1,22 @@
1
1
  # -*- encoding: utf-8 -*-
2
- #$:.push File.expand_path("../jar", __FILE__)
2
+ $:.push File.expand_path("../jar", __FILE__)
3
+ require 'rhino/jar_path'
3
4
 
4
5
  Gem::Specification.new do |s|
5
6
  s.name = %q{therubyrhino_jar}
6
- s.version = '1.7.4'
7
+ s.version = "#{Rhino::JAR_VERSION}"
7
8
  s.authors = ["Charles Lowell", "Karol Bucek"]
8
9
  s.email = ['cowboyd@thefrontside.net', 'self@kares.org']
9
-
10
+
10
11
  s.summary = "Rhino's jars packed for therubyrhino"
11
12
  s.description = %q{Rhino's js.jar classes packaged as a JRuby gem.}
12
-
13
+ s.license = "MPL-2.0"
14
+
13
15
  s.homepage = %q{http://github.com/cowboyd/therubyrhino}
14
16
  s.rubyforge_project = %q{therubyrhino}
15
-
17
+
16
18
  s.require_paths = ["jar"]
17
19
  s.files = `git ls-files`.split("\n").sort.
18
20
  select { |file| file == 'therubyrhino_jar.gemspec' || file =~ /^jar\// }
19
-
21
+
20
22
  end
metadata CHANGED
@@ -1,8 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: therubyrhino_jar
3
3
  version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 1.7.4
4
+ version: 1.7.5
6
5
  platform: ruby
7
6
  authors:
8
7
  - Charles Lowell
@@ -10,7 +9,7 @@ authors:
10
9
  autorequire:
11
10
  bindir: bin
12
11
  cert_chain: []
13
- date: 2012-08-02 00:00:00.000000000 Z
12
+ date: 2015-04-29 00:00:00.000000000 Z
14
13
  dependencies: []
15
14
  description: Rhino's js.jar classes packaged as a JRuby gem.
16
15
  email:
@@ -21,39 +20,31 @@ extensions: []
21
20
  extra_rdoc_files: []
22
21
  files:
23
22
  - jar/LICENSE.txt
24
- - jar/rhino-1.7R4.jar
23
+ - jar/rhino-1.7R5.jar
25
24
  - jar/rhino/jar_path.rb
26
25
  - therubyrhino_jar.gemspec
27
26
  homepage: http://github.com/cowboyd/therubyrhino
28
- licenses: []
27
+ licenses:
28
+ - MPL-2.0
29
+ metadata: {}
29
30
  post_install_message:
30
31
  rdoc_options: []
31
32
  require_paths:
32
33
  - jar
33
34
  required_ruby_version: !ruby/object:Gem::Requirement
34
35
  requirements:
35
- - - ! '>='
36
+ - - '>='
36
37
  - !ruby/object:Gem::Version
37
- segments:
38
- - 0
39
- hash: 2
40
- version: !binary |-
41
- MA==
42
- none: false
38
+ version: '0'
43
39
  required_rubygems_version: !ruby/object:Gem::Requirement
44
40
  requirements:
45
- - - ! '>='
41
+ - - '>='
46
42
  - !ruby/object:Gem::Version
47
- segments:
48
- - 0
49
- hash: 2
50
- version: !binary |-
51
- MA==
52
- none: false
43
+ version: '0'
53
44
  requirements: []
54
45
  rubyforge_project: therubyrhino
55
- rubygems_version: 1.8.24
46
+ rubygems_version: 2.4.5
56
47
  signing_key:
57
- specification_version: 3
48
+ specification_version: 4
58
49
  summary: Rhino's jars packed for therubyrhino
59
50
  test_files: []