jsRender-rails 0.9.1 → 0.9.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.
data/README.md CHANGED
@@ -30,7 +30,7 @@ $(body).append($.render["views/user"]({name:"Sebastian Pape"}));
30
30
  If the path to all of your views/templates have a common prefix that you prefer is not included in the template's name, you can set this option in `config/application.rb`:
31
31
 
32
32
  ```ruby
33
- config.jsrender.prefix = "views"
33
+ config.jsRender.prefix = "views"
34
34
  ```
35
35
 
36
36
  That would change the previous example to this:
@@ -42,7 +42,7 @@ $(body).append($.render["user"]({name:"Sebastian Pape"}));
42
42
  The prefix can also be a regular expression. For example, to use only the name of the file for the template name, regardless of directory structure:
43
43
 
44
44
  ```ruby
45
- config.jsrender.prefix = %r{([^/]*/)*}
45
+ config.jsRender.prefix = %r{([^/]*/)*}
46
46
  ```
47
47
 
48
48
  ## Acknowledgements
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "jsRender-rails"
5
- s.version = "0.9.1"
5
+ s.version = "0.9.2"
6
6
  s.authors = ["Sebastian Pape"]
7
7
  s.email = ["email@sebastianpape.com"]
8
8
  s.homepage = "https://github.com/spape/jsRender-rails"
@@ -1,6 +1,6 @@
1
1
  module JsRender
2
2
  module Rails
3
- VERSION = "0.9.1"
3
+ VERSION = "0.9.2"
4
4
  JS_RENDER_VERSION = "v1.0pre"
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jsRender-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.9.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: