├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── main ├── java │ └── rx │ │ └── lang │ │ └── jruby │ │ ├── JRubyActionWrapper.java │ │ └── JRubyFunctionWrapper.java └── resources │ └── rx │ └── lang │ └── jruby │ └── interop.rb └── spec └── ruby └── rx └── lang └── jruby ├── interop_spec.rb ├── jruby_action_wrapper_spec.rb ├── jruby_function_wrapper_spec.rb ├── performance.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveX/RxJRuby/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: java 2 | 3 | jdk: 4 | - oraclejdk7 5 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveX/RxJRuby/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveX/RxJRuby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveX/RxJRuby/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | version=1.0.0-RC1-SNAPSHOT 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveX/RxJRuby/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveX/RxJRuby/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveX/RxJRuby/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveX/RxJRuby/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name='rxjruby' 2 | -------------------------------------------------------------------------------- /src/main/java/rx/lang/jruby/JRubyActionWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveX/RxJRuby/HEAD/src/main/java/rx/lang/jruby/JRubyActionWrapper.java -------------------------------------------------------------------------------- /src/main/java/rx/lang/jruby/JRubyFunctionWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveX/RxJRuby/HEAD/src/main/java/rx/lang/jruby/JRubyFunctionWrapper.java -------------------------------------------------------------------------------- /src/main/resources/rx/lang/jruby/interop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveX/RxJRuby/HEAD/src/main/resources/rx/lang/jruby/interop.rb -------------------------------------------------------------------------------- /src/spec/ruby/rx/lang/jruby/interop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveX/RxJRuby/HEAD/src/spec/ruby/rx/lang/jruby/interop_spec.rb -------------------------------------------------------------------------------- /src/spec/ruby/rx/lang/jruby/jruby_action_wrapper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveX/RxJRuby/HEAD/src/spec/ruby/rx/lang/jruby/jruby_action_wrapper_spec.rb -------------------------------------------------------------------------------- /src/spec/ruby/rx/lang/jruby/jruby_function_wrapper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveX/RxJRuby/HEAD/src/spec/ruby/rx/lang/jruby/jruby_function_wrapper_spec.rb -------------------------------------------------------------------------------- /src/spec/ruby/rx/lang/jruby/performance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveX/RxJRuby/HEAD/src/spec/ruby/rx/lang/jruby/performance.rb -------------------------------------------------------------------------------- /src/spec/ruby/rx/lang/jruby/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReactiveX/RxJRuby/HEAD/src/spec/ruby/rx/lang/jruby/spec_helper.rb --------------------------------------------------------------------------------