rubyjs-rails 0.7.2 → 0.7.2.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c40d9af359f036e8573b30d48ae716cf314152b3
4
+ data.tar.gz: f7670dabc2938475003e44af2c94ac32d3b321ea
5
+ SHA512:
6
+ metadata.gz: fc59892c85827011ada8f6d69062cb4b86f5d8983f591713909c6d3f91d4f50143c89285f842acb874077da5bede2ec4b8f53cdb2d2ba09c990134ebb6f7e378
7
+ data.tar.gz: b0d46c61140e4fde66986e1cbcf20e5f51c194eefd1a573167d4b86aacdb6573c8b05a1cc8813ba75c509b956df74fd6c62c14045c7609db2b10cd61e1a50daa
data/README.md CHANGED
@@ -2,15 +2,21 @@ Rails asset-pipeline gem to provide [RubyJS](http://rubyjs.org/)
2
2
 
3
3
  # Install
4
4
 
5
- gem 'rubyjs-rails'
5
+ gem 'rubyjs-rails'
6
6
 
7
7
 
8
8
  # Use
9
9
 
10
10
  In your application.js manifest:
11
11
 
12
- //= require ruby
12
+ //= require ruby
13
13
 
14
14
  or directly available under `/assets/ruby.js`
15
15
 
16
16
  Easy as pie.
17
+
18
+ # Changelog
19
+
20
+ ### 0.7.2.1
21
+
22
+ - Make it compatible with Rails 4 version (Now is an instance of `Gem::Version`)
data/lib/rubyjs-rails.rb CHANGED
@@ -2,7 +2,7 @@ require "rubyjs-rails/version"
2
2
 
3
3
  module RubyJS
4
4
  module Rails
5
- if defined?(::Rails) and ::Rails.version >= "3.1"
5
+ if defined?(::Rails) and ::Rails.version.to_s >= "3.1"
6
6
  class Rails::Engine < ::Rails::Engine
7
7
  # this class enables the asset pipeline
8
8
  end
@@ -1,5 +1,5 @@
1
1
  module RubyJS
2
2
  module Rails
3
- VERSION = "0.7.2"
3
+ VERSION = "0.7.2.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubyjs-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.2
5
- prerelease:
4
+ version: 0.7.2.1
6
5
  platform: ruby
7
6
  authors:
8
7
  - PikachuEXE
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-12-14 00:00:00.000000000 Z
11
+ date: 2013-03-25 00:00:00.000000000 Z
13
12
  dependencies: []
14
13
  description: This gem provides RubyJS, a port of the Ruby core-lib in JavaScript,
15
14
  for your Rails application.
@@ -29,26 +28,25 @@ files:
29
28
  - vendor/assets/javascripts/ruby.js
30
29
  homepage: https://github.com/rubyjs/rubyjs-rails
31
30
  licenses: []
31
+ metadata: {}
32
32
  post_install_message:
33
33
  rdoc_options: []
34
34
  require_paths:
35
35
  - lib
36
36
  required_ruby_version: !ruby/object:Gem::Requirement
37
- none: false
38
37
  requirements:
39
- - - ! '>='
38
+ - - '>='
40
39
  - !ruby/object:Gem::Version
41
40
  version: '0'
42
41
  required_rubygems_version: !ruby/object:Gem::Requirement
43
- none: false
44
42
  requirements:
45
- - - ! '>='
43
+ - - '>='
46
44
  - !ruby/object:Gem::Version
47
45
  version: '0'
48
46
  requirements: []
49
47
  rubyforge_project:
50
- rubygems_version: 1.8.24
48
+ rubygems_version: 2.0.3
51
49
  signing_key:
52
- specification_version: 3
50
+ specification_version: 4
53
51
  summary: RubyJS asset pipeline provider/wrapper
54
52
  test_files: []