handlebars_assets 0.6.6 → 0.6.7

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.6.7 (2012-11-11)
2
+
3
+ * Support `.handlebars` extension - @BlakeWilliams
4
+
1
5
  ## 0.6.6 (2012-09-21)
2
6
 
3
7
  * handlebars.js v1.0.rc.1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- handlebars_assets (0.6.6)
4
+ handlebars_assets (0.6.7)
5
5
  execjs (>= 1.2.9)
6
6
  sprockets (>= 2.0.3)
7
7
  tilt
data/README.md CHANGED
@@ -130,17 +130,18 @@ Follow me on [Github](https://github.com/leshill) and [Twitter](https://twitter.
130
130
 
131
131
  # Contributors
132
132
 
133
- * Matt Burke (@spraints) : execjs support
134
- * (@kendagriff) : 1.8.7 compatibility
135
- * Thorben Schröder (@walski) : 3.1 asset group for precompile
136
- * Erwan Barrier (@erwanb) : Support for plain sprockets
137
- * Brendan Loudermilk (@bloudermilk) : HandlebarsAssets.path
138
- * Dan Evans (@danevans) : Rails 2 support
139
- * Ben Woosley (@empact) : Update to handlebars.js 1.0.0.beta.6
140
- * (@cw-moshe) : Remove 'templates/' from names
141
- * Spike Brehm (@spikebrehm) : Config.template\_namespace option
142
- * Ken Mayer (@kmayer) : Quick fix for template\_namespace option
143
- * Brad Murray (@wyaeld) : Generic options support
133
+ * Matt Burke (@spraints) : execjs support
134
+ * (@kendagriff) : 1.8.7 compatibility
135
+ * Thorben Schröder (@walski) : 3.1 asset group for precompile
136
+ * Erwan Barrier (@erwanb) : Support for plain sprockets
137
+ * Brendan Loudermilk (@bloudermilk) : HandlebarsAssets.path
138
+ * Dan Evans (@danevans) : Rails 2 support
139
+ * Ben Woosley (@empact) : Update to handlebars.js 1.0.0.beta.6
140
+ * (@cw-moshe) : Remove 'templates/' from names
141
+ * Spike Brehm (@spikebrehm) : Config.template\_namespace option
142
+ * Ken Mayer (@kmayer) : Quick fix for template\_namespace option
143
+ * Brad Murray (@wyaeld) : Generic options support
144
+ * Blake Williams (@BlakeWilliams) : .handlebars extension
144
145
 
145
146
  # Contributing
146
147
 
@@ -3,6 +3,7 @@ module HandlebarsAssets
3
3
  initializer "sprockets.handlebars", :after => "sprockets.environment", :group => :all do |app|
4
4
  next unless app.assets
5
5
  app.assets.register_engine('.hbs', TiltHandlebars)
6
+ app.assets.register_engine('.handlebars', TiltHandlebars)
6
7
  end
7
8
  end
8
9
  end
@@ -1,3 +1,3 @@
1
1
  module HandlebarsAssets
2
- VERSION = "0.6.6"
2
+ VERSION = "0.6.7"
3
3
  end
@@ -16,5 +16,6 @@ module HandlebarsAssets
16
16
  else
17
17
  require 'sprockets'
18
18
  Sprockets.register_engine '.hbs', TiltHandlebars
19
+ Sprockets.register_engine '.handlebars', TiltHandlebars
19
20
  end
20
21
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: handlebars_assets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.6
4
+ version: 0.6.7
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-09-22 00:00:00.000000000 Z
12
+ date: 2012-11-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: execjs