java_head 1.1.0 → 1.1.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.
- checksums.yaml +4 -4
- data/java_head.gemspec +5 -4
- data/lib/java_head/version.rb +1 -1
- metadata +9 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c0c35c50990b7cb513ddc2f40c66756a660a0f54
|
|
4
|
+
data.tar.gz: a67227894d29aa38777992b060b9e76dd781ef22
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8d5256c76e0a97d4588f3c320c9727cd7914af61d12748f4b9c0dfee4618eac0edd7fdab2c74f841b8b04e72d708ef4dc8653e7b6d235b907918b93d0c61c3fb
|
|
7
|
+
data.tar.gz: 8abed9003ed8ed8ab4e438cbc13f871cfbccdeaca99505f1b2dace75fff7fac10bb09073b42fe4d462310ee90ccee01a1ca822f823d2878d55b9ad71ccfb6cce
|
data/java_head.gemspec
CHANGED
|
@@ -6,11 +6,11 @@ require 'java_head/version'
|
|
|
6
6
|
Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "java_head"
|
|
8
8
|
spec.version = JavaHead::VERSION
|
|
9
|
-
spec.authors = ["
|
|
10
|
-
spec.email = ["
|
|
9
|
+
spec.authors = ["LuminousRubyist"]
|
|
10
|
+
spec.email = ["luminousrubyist@zoho.com"]
|
|
11
11
|
spec.summary = %q{Represent, compile, and run Java code in Ruby.}
|
|
12
|
-
spec.description = %q{JavaHead contains classes to
|
|
13
|
-
spec.homepage = ""
|
|
12
|
+
spec.description = %q{JavaHead contains classes to represent Java packages and classes and to compile and execute them in Ruby. Use this in scripts to run Java programs from Ruby, or in IRB to develop Java in a sensible environment. Write simple code in both Java and Ruby and JavaHead will link them for you. }
|
|
13
|
+
spec.homepage = "https://github.com/LuminousRubyist/java_head"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0")
|
|
@@ -18,6 +18,7 @@ Gem::Specification.new do |spec|
|
|
|
18
18
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
19
|
spec.require_paths = ["lib"]
|
|
20
20
|
|
|
21
|
+
spec.required_ruby_version = '>= 2.0'
|
|
21
22
|
spec.add_development_dependency "bundler", "~> 1.7"
|
|
22
23
|
spec.add_development_dependency "rake", "~> 10.0"
|
|
23
24
|
spec.add_development_dependency "colorize", "~> 0.7.3"
|
data/lib/java_head/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: java_head
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
7
|
+
- LuminousRubyist
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
@@ -66,11 +66,12 @@ dependencies:
|
|
|
66
66
|
- - "~>"
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: 5.4.3
|
|
69
|
-
description: JavaHead contains classes to
|
|
70
|
-
them in Ruby. Use this in scripts to run Java programs from
|
|
71
|
-
Java in a sensible environment
|
|
69
|
+
description: 'JavaHead contains classes to represent Java packages and classes and
|
|
70
|
+
to compile and execute them in Ruby. Use this in scripts to run Java programs from
|
|
71
|
+
Ruby, or in IRB to develop Java in a sensible environment. Write simple code in
|
|
72
|
+
both Java and Ruby and JavaHead will link them for you. '
|
|
72
73
|
email:
|
|
73
|
-
-
|
|
74
|
+
- luminousrubyist@zoho.com
|
|
74
75
|
executables: []
|
|
75
76
|
extensions: []
|
|
76
77
|
extra_rdoc_files: []
|
|
@@ -93,7 +94,7 @@ files:
|
|
|
93
94
|
- test/test_class.rb
|
|
94
95
|
- test/test_package.rb
|
|
95
96
|
- test/test_regex.rb
|
|
96
|
-
homepage:
|
|
97
|
+
homepage: https://github.com/LuminousRubyist/java_head
|
|
97
98
|
licenses:
|
|
98
99
|
- MIT
|
|
99
100
|
metadata: {}
|
|
@@ -105,7 +106,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
105
106
|
requirements:
|
|
106
107
|
- - ">="
|
|
107
108
|
- !ruby/object:Gem::Version
|
|
108
|
-
version: '0'
|
|
109
|
+
version: '2.0'
|
|
109
110
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
110
111
|
requirements:
|
|
111
112
|
- - ">="
|