sprocketizer 1.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -36,11 +36,11 @@ Note that you do NOT include a source_file configuration like you would with the
36
36
 
37
37
  Any javascript file you request that is not in your public/javascripts folder will be generated using sprockets. For example, a request to:
38
38
 
39
- http://example.com/javascripts/sprockets.js
39
+ http://example.com/javascripts/sprockets.js
40
40
 
41
41
  will attempt to render the file app/javascripts/sprockets.js using sprockets. You can also reference files in subdirectories with no problem:
42
42
 
43
- http://example.com/javascripts/sprocket/another_file.js
43
+ http://example.com/javascripts/sprocket/another_file.js
44
44
 
45
45
  will render the file app/javascripts/sprocket/another_file.js
46
46
 
@@ -1,3 +1,3 @@
1
1
  module Sprocketizer
2
- VERSION = "1.0"
2
+ VERSION = "1.0.1"
3
3
  end
data/lib/sprocketizer.rb CHANGED
@@ -1 +1,3 @@
1
- require 'sprocketizer/engine' if defined?(Rails) && Rails::VERSION::MAJOR == 3
1
+ module Sprocketizer
2
+ require 'engine' if defined?(Rails) && Rails::VERSION::MAJOR == 3
3
+ end
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sprocketizer
3
3
  version: !ruby/object:Gem::Version
4
- hash: 15
4
+ hash: 21
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- version: "1.0"
9
+ - 1
10
+ version: 1.0.1
10
11
  platform: ruby
11
12
  authors:
12
13
  - Matt Hodgson
@@ -43,7 +44,7 @@ extensions: []
43
44
  extra_rdoc_files: []
44
45
 
45
46
  files:
46
- - lib/sprocketizer/engine.rb
47
+ - lib/engine.rb
47
48
  - lib/sprocketizer/sprocket.rb
48
49
  - lib/sprocketizer/version.rb
49
50
  - lib/sprocketizer.rb
File without changes