java_head 1.1.1 → 1.1.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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/java_head/class.rb +1 -1
- data/lib/java_head/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 83a9000a765dd5deb7a4e072b3147e7ba41e2e2a
|
4
|
+
data.tar.gz: 4f08256a04d3644f3b69f4cc399df8a6e3fafc77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6093bdc2409e0003d0c36a7a9f64bc2e030579e7af3ededc1fe872347d63fc870515c17e9651b3b3653ad0a4f349e0256389a36bbc42b5becba8ff44e0e2828f
|
7
|
+
data.tar.gz: 97878f8e997ea45a4f0004b7de0276e243d7aaafaf90ee1e9ca36c325ae04c449f8abe0fab777ceff0ae225468205d5613af075e8e346cbea716d97cac1d64a0
|
data/README.md
CHANGED
@@ -54,7 +54,7 @@ jclass.run('Hello','World') # You can also pass command-line arguments to yo
|
|
54
54
|
|
55
55
|
## Contributing
|
56
56
|
|
57
|
-
1. Fork it ( https://github.com/
|
57
|
+
1. Fork it ( https://github.com/LuminousRubyist/java_head/fork )
|
58
58
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
59
59
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
60
60
|
4. Push to the branch (`git push origin my-new-feature`)
|
data/lib/java_head/class.rb
CHANGED
@@ -124,7 +124,7 @@ module JavaHead
|
|
124
124
|
# The format for command-line arguments
|
125
125
|
ARGFORMAT = /^[\-a-zA-Z@][a-zA-Z0-9\-:="'@]*$/.freeze
|
126
126
|
# The format for classnames, e.g. com.example.projects.Shape
|
127
|
-
FORMAT = /^([a-z_][a-z0-9_]*\.)*[A-Z]
|
127
|
+
FORMAT = /^([a-z_][a-z0-9_]*\.)*[A-Z]\w*$/.freeze
|
128
128
|
|
129
129
|
# include all JavaHead Exceptions
|
130
130
|
include JavaHead::Exceptions
|
data/lib/java_head/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- LuminousRubyist
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -114,7 +114,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
114
114
|
version: '0'
|
115
115
|
requirements: []
|
116
116
|
rubyforge_project:
|
117
|
-
rubygems_version: 2.4.
|
117
|
+
rubygems_version: 2.4.6
|
118
118
|
signing_key:
|
119
119
|
specification_version: 4
|
120
120
|
summary: Represent, compile, and run Java code in Ruby.
|