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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c0c35c50990b7cb513ddc2f40c66756a660a0f54
4
- data.tar.gz: a67227894d29aa38777992b060b9e76dd781ef22
3
+ metadata.gz: 83a9000a765dd5deb7a4e072b3147e7ba41e2e2a
4
+ data.tar.gz: 4f08256a04d3644f3b69f4cc399df8a6e3fafc77
5
5
  SHA512:
6
- metadata.gz: 8d5256c76e0a97d4588f3c320c9727cd7914af61d12748f4b9c0dfee4618eac0edd7fdab2c74f841b8b04e72d708ef4dc8653e7b6d235b907918b93d0c61c3fb
7
- data.tar.gz: 8abed9003ed8ed8ab4e438cbc13f871cfbccdeaca99505f1b2dace75fff7fac10bb09073b42fe4d462310ee90ccee01a1ca822f823d2878d55b9ad71ccfb6cce
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/AndrewTLee/java_head/fork )
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`)
@@ -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][a-z0-9_]*$/.freeze
127
+ FORMAT = /^([a-z_][a-z0-9_]*\.)*[A-Z]\w*$/.freeze
128
128
 
129
129
  # include all JavaHead Exceptions
130
130
  include JavaHead::Exceptions
@@ -1,3 +1,3 @@
1
1
  module JavaHead
2
- VERSION = "1.1.1"
2
+ VERSION = "1.1.2"
3
3
  end
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.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: 2014-11-26 00:00:00.000000000 Z
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.3
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.