sprockets_rails3 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.
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 Priit Tamboom
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,21 @@
1
+ = Sprockets Rails 3
2
+
3
+ Sprockets wrapper gem for Rails 3, so you can add it to your Gemfile and go!
4
+
5
+ = Usage
6
+
7
+ Add it to your Gemfile:
8
+
9
+ gem 'sprockets_rails3'
10
+
11
+ = Help
12
+
13
+ It's thin wrapper using Rack-Sprockets gem under the hood,
14
+ so please take a look it's readme for more info
15
+
16
+ https://github.com/kelredd/rack-sprockets
17
+
18
+ == Credits
19
+
20
+ * {Sprockets}[http://getsprockets.org]
21
+ * {Rack Sprockets}[http://github.com/kelredd/rack-sprockets]
@@ -0,0 +1,2 @@
1
+ require 'sprockets_rails3/version'
2
+ require 'sprockets_rails3/railtie' if defined?(Rails)
@@ -0,0 +1,11 @@
1
+ require 'sprockets_rails3'
2
+ require 'rails'
3
+ require 'rack/sprockets'
4
+
5
+ module SprocketsRails3
6
+ class Railtie < Rails::Railtie
7
+ initializer 'sprockets_rails3' do |app|
8
+ app.middleware.use Rack::Sprockets
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,3 @@
1
+ module SprocketsRails3
2
+ VERSION = '0.0.1'
3
+ end
metadata ADDED
@@ -0,0 +1,99 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sprockets_rails3
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 0
8
+ - 1
9
+ version: 0.0.1
10
+ platform: ruby
11
+ authors:
12
+ - Priit Tamboom
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2011-01-22 00:00:00 +00:00
18
+ default_executable:
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: rails
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ segments:
29
+ - 3
30
+ - 0
31
+ - 0
32
+ version: 3.0.0
33
+ type: :runtime
34
+ version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: rack-sprockets
37
+ prerelease: false
38
+ requirement: &id002 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ segments:
44
+ - 1
45
+ - 0
46
+ - 3
47
+ version: 1.0.3
48
+ type: :runtime
49
+ version_requirements: *id002
50
+ description: Micro-engine wraps up rack-sprockets in order to avoid much configuration.
51
+ email: priit@gitnation.com
52
+ executables: []
53
+
54
+ extensions: []
55
+
56
+ extra_rdoc_files: []
57
+
58
+ files:
59
+ - lib/sprockets_rails3/railtie.rb
60
+ - lib/sprockets_rails3/version.rb
61
+ - lib/sprockets_rails3.rb
62
+ - README.rdoc
63
+ - LICENSE
64
+ has_rdoc: true
65
+ homepage: http://github.com/priit/sprockets_rails3
66
+ licenses: []
67
+
68
+ post_install_message:
69
+ rdoc_options: []
70
+
71
+ require_paths:
72
+ - lib
73
+ required_ruby_version: !ruby/object:Gem::Requirement
74
+ none: false
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ segments:
79
+ - 0
80
+ version: "0"
81
+ required_rubygems_version: !ruby/object:Gem::Requirement
82
+ none: false
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ segments:
87
+ - 1
88
+ - 3
89
+ - 7
90
+ version: 1.3.7
91
+ requirements: []
92
+
93
+ rubyforge_project: sprockets_rails3
94
+ rubygems_version: 1.3.7
95
+ signing_key:
96
+ specification_version: 3
97
+ summary: Sprockets engine for Rails 3, add it to your Gemfile and go!
98
+ test_files: []
99
+