jruby-scala-collections 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README.md +10 -2
  2. data/ext/dist/collections.jar +0 -0
  3. metadata +12 -12
data/README.md CHANGED
@@ -9,6 +9,14 @@ https://rubygems.org/gems/jruby-scala-collections
9
9
 
10
10
  $ gem install jruby-scala-collections
11
11
 
12
+ With bundler:
13
+
14
+ ```gem "jruby-scala-collections", ">=0.1.1", require: "jruby/scala_support"```
15
+
16
+ Beware that you have to have ```scala-library.jar``` loaded before you
17
+ load ```jruby/scala_support```. In Rails this generally means it loading in
18
+ ```config/boot.rb```.
19
+
12
20
  ## How do you use it?
13
21
 
14
22
  Each ```Object``` has two methods: ```#to_scala``` and ```#from_scala```.
@@ -56,5 +64,5 @@ methods:
56
64
  ## Disclaimer
57
65
 
58
66
  This library was written by Artūras 'arturaz' Šlajus for personal
59
- usage. ```#to_scala``` should work pretty well, however Ruby wrappers
60
- may be missing methods. Patches are welcome.
67
+ usage. ```#to_scala``` should work pretty well, however Ruby wrappers
68
+ in ```#from_scala``` may be missing methods. Patches are welcome.
Binary file
metadata CHANGED
@@ -1,17 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jruby-scala-collections
3
3
  version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 0.1.1
4
+ version: 0.1.2
5
+ prerelease:
6
6
  platform: ruby
7
7
  authors:
8
8
  - Artūras Šlajus
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-05-23 00:00:00.000000000 Z
12
+ date: 2012-05-24 00:00:00.000000000 Z
13
13
  dependencies: []
14
- description: Interoperability layer for passing JRuby & Scala collections back and forth. See README.md for more info.
14
+ description: Interoperability layer for passing JRuby & Scala collections back and
15
+ forth. See README.md for more info.
15
16
  email: arturas.slajus@gmail.com
16
17
  executables: []
17
18
  extensions: []
@@ -22,27 +23,26 @@ files:
22
23
  - ext/dist/collections.jar
23
24
  homepage: http://github.com/arturaz/jruby-scala-collections
24
25
  licenses: []
25
- post_install_message:
26
+ post_install_message:
26
27
  rdoc_options: []
27
28
  require_paths:
28
29
  - lib
29
30
  required_ruby_version: !ruby/object:Gem::Requirement
31
+ none: false
30
32
  requirements:
31
33
  - - ! '>='
32
34
  - !ruby/object:Gem::Version
33
35
  version: '0'
34
- none: false
35
36
  required_rubygems_version: !ruby/object:Gem::Requirement
37
+ none: false
36
38
  requirements:
37
39
  - - ! '>='
38
40
  - !ruby/object:Gem::Version
39
41
  version: '0'
40
- none: false
41
42
  requirements: []
42
- rubyforge_project:
43
- rubygems_version: 1.8.24
44
- signing_key:
43
+ rubyforge_project:
44
+ rubygems_version: 1.8.21
45
+ signing_key:
45
46
  specification_version: 3
46
47
  summary: Compiled against JRuby 1.6.7/Scala 2.9.2
47
48
  test_files: []
48
- ...