rxjs-rails 0.0.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.
Files changed (39) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +3 -0
  3. data/LICENSE +19 -0
  4. data/README.md +14 -0
  5. data/lib/rxjs/rails/engine.rb +7 -0
  6. data/lib/rxjs/rails/railtie.rb +7 -0
  7. data/lib/rxjs/rails/version.rb +7 -0
  8. data/lib/rxjs/rails.rb +8 -0
  9. data/lib/rxjs.rb +1 -0
  10. data/rxjs-rails.gemspec +22 -0
  11. data/vendor/assets/javascripts/rx.aggregates.js +687 -0
  12. data/vendor/assets/javascripts/rx.aggregates.min.js +1 -0
  13. data/vendor/assets/javascripts/rx.async.compat.js +376 -0
  14. data/vendor/assets/javascripts/rx.async.compat.min.js +1 -0
  15. data/vendor/assets/javascripts/rx.async.js +306 -0
  16. data/vendor/assets/javascripts/rx.async.min.js +1 -0
  17. data/vendor/assets/javascripts/rx.binding.js +561 -0
  18. data/vendor/assets/javascripts/rx.binding.min.js +1 -0
  19. data/vendor/assets/javascripts/rx.coincidence.js +691 -0
  20. data/vendor/assets/javascripts/rx.coincidence.min.js +1 -0
  21. data/vendor/assets/javascripts/rx.compat.js +4351 -0
  22. data/vendor/assets/javascripts/rx.compat.min.js +2 -0
  23. data/vendor/assets/javascripts/rx.experimental.js +453 -0
  24. data/vendor/assets/javascripts/rx.experimental.min.js +1 -0
  25. data/vendor/assets/javascripts/rx.joinpatterns.js +418 -0
  26. data/vendor/assets/javascripts/rx.joinpatterns.min.js +1 -0
  27. data/vendor/assets/javascripts/rx.lite.compat.js +5188 -0
  28. data/vendor/assets/javascripts/rx.lite.compat.min.js +2 -0
  29. data/vendor/assets/javascripts/rx.lite.js +5000 -0
  30. data/vendor/assets/javascripts/rx.lite.min.js +2 -0
  31. data/vendor/assets/javascripts/rx.min.js +2 -0
  32. data/vendor/assets/javascripts/rx.node.js +143 -0
  33. data/vendor/assets/javascripts/rx.testing.js +503 -0
  34. data/vendor/assets/javascripts/rx.testing.min.js +1 -0
  35. data/vendor/assets/javascripts/rx.time.js +1166 -0
  36. data/vendor/assets/javascripts/rx.time.min.js +1 -0
  37. data/vendor/assets/javascripts/rx.virtualtime.js +336 -0
  38. data/vendor/assets/javascripts/rx.virtualtime.min.js +1 -0
  39. metadata +101 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 2286d909edceb409f28b13680761a0771597351c
4
+ data.tar.gz: 7fa33be710ef67d6a4d25791706e4283ef8a5ded
5
+ SHA512:
6
+ metadata.gz: 71b48c42a98349842d02e4ebcca1e1cd03ad09cc6aa7c3bc2afeb2adc0e6ae379234d0067e067a470e9c47b1495eafde1a7955f5b8163248393755680b80f713
7
+ data.tar.gz: ba793a6830fc857f61afe8d5160b445366a7e3bb5c6336259c7846fa7728235fc96db3d485ab97fa27af059dd89cd93380d839439078eb5b8d45198f510aff61
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,19 @@
1
+ The MIT License
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in
11
+ all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,14 @@
1
+ # rxjs-rails
2
+
3
+ Adds the excellent Reactive Extensions library to rails.
4
+
5
+ See the [RxJS website](http://reactive-extensions.github.io/RxJS/) for more info.
6
+
7
+ # Installation
8
+
9
+ Add `gem 'rxjs-rails'` to your Gemfile
10
+
11
+ Reference the appropriate rx.js file in your application.js eg:
12
+
13
+ `*= require rx.lite`
14
+
@@ -0,0 +1,7 @@
1
+ module Rxjs
2
+ module Rails
3
+ class Engine < ::Rails::Engine
4
+ end
5
+ end
6
+ end
7
+
@@ -0,0 +1,7 @@
1
+ module Rxjs
2
+ module Rails
3
+ class Railtie < ::Rails::Railtie
4
+ end
5
+ end
6
+ end
7
+
@@ -0,0 +1,7 @@
1
+ module Rxjs
2
+ module Rails
3
+ VERSION = "0.0.1"
4
+ RXJS_VERSION = "2.2.9"
5
+ end
6
+ end
7
+
data/lib/rxjs/rails.rb ADDED
@@ -0,0 +1,8 @@
1
+ require 'rxjs/rails/engine' if ::Rails.version >= '3.1'
2
+ require 'rxjs/rails/railtie'
3
+ require 'rxjs/rails/version'
4
+
5
+ module Rxjs
6
+ module Rails
7
+ end
8
+ end
data/lib/rxjs.rb ADDED
@@ -0,0 +1 @@
1
+ require 'rxjs/rails'
@@ -0,0 +1,22 @@
1
+ require File.expand_path('../lib/rxjs/rails/version', __FILE__)
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = "rxjs-rails"
5
+ s.version = Rxjs::Rails::VERSION
6
+ s.platform = Gem::Platform::RUBY
7
+ s.authors = ["jdeseno"]
8
+ s.email = ["jdeseno@gmail.com"]
9
+ s.homepage = "http://rubygems.org/gems/rxjs-rails"
10
+ s.summary = "Use RxJS with rails"
11
+ s.description = "This gem makes the RxJS js files available to the rails asset pipeline"
12
+ s.license = "MIT"
13
+
14
+ s.required_rubygems_version = ">= 1.3.6"
15
+ s.rubyforge_project = "rxjs-rails"
16
+
17
+ s.add_dependency "railties", ">= 3.0", "< 5.0"
18
+
19
+ s.files = `git ls-files`.split("\n")
20
+ s.require_path = 'lib'
21
+ end
22
+