webmachine-sprockets 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile CHANGED
@@ -1,7 +1,11 @@
1
- source :rubygems
1
+ source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
4
  gemspec :path => '../sprockets'
5
5
 
6
6
  gem 'rake'
7
7
  gem 'awesome_print'
8
+
9
+ platform :rbx do
10
+ gem 'rubysl', '~> 2.0'
11
+ end
data/README.md CHANGED
@@ -1,5 +1,4 @@
1
- webmachine-sprockets
2
- ====================
1
+ # webmachine-sprockets [![Build Status](https://travis-ci.org/lgierth/webmachine-sprockets.png?branch=master)](https://travis-ci.org/lgierth/webmachine-sprockets)
3
2
 
4
3
  Webmachine for Ruby: Sprockets integration
5
4
 
@@ -39,7 +38,9 @@ Contributing
39
38
  You can also open an issue for discussion first, if you like.
40
39
 
41
40
 
42
- License
43
- -------
41
+ Unlicense
42
+ ---------
44
43
 
45
- webmachine-sprockets is subject to an MIT-style license (see LICENSE file).
44
+ webmachine-sprockets is free and unencumbered public domain software. For more
45
+ information, see [unlicense.org](http://unlicense.org/) or the accompanying
46
+ UNLICENSE file.
data/UNLICENSE ADDED
@@ -0,0 +1,24 @@
1
+ This is free and unencumbered software released into the public domain.
2
+
3
+ Anyone is free to copy, modify, publish, use, compile, sell, or
4
+ distribute this software, either in source code form or as a compiled
5
+ binary, for any purpose, commercial or non-commercial, and by any
6
+ means.
7
+
8
+ In jurisdictions that recognize copyright laws, the author or authors
9
+ of this software dedicate any and all copyright interest in the
10
+ software to the public domain. We make this dedication for the benefit
11
+ of the public at large and to the detriment of our heirs and
12
+ successors. We intend this dedication to be an overt act of
13
+ relinquishment in perpetuity of all present and future rights to this
14
+ software under copyright law.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+ IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20
+ OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
+ OTHER DEALINGS IN THE SOFTWARE.
23
+
24
+ For more information, please refer to <http://unlicense.org/>
@@ -1,5 +1,5 @@
1
1
  module Webmachine
2
2
  module Sprockets
3
- VERSION = '0.1.0'
3
+ VERSION = '0.2.0'
4
4
  end
5
5
  end
@@ -3,6 +3,7 @@ require 'webmachine/adapters/rack'
3
3
  require 'webmachine/sprockets'
4
4
 
5
5
  require 'test_server'
6
+ Sprockets::Environment
6
7
 
7
8
  class TestServer
8
9
  def webmachine_app(env)
@@ -2,6 +2,8 @@
2
2
  $:.push File.expand_path('../lib', __FILE__)
3
3
  require 'webmachine/sprockets/version'
4
4
 
5
+ require 'date'
6
+
5
7
  Gem::Specification.new do |s|
6
8
  s.name = 'webmachine-sprockets'
7
9
  s.version = Webmachine::Sprockets::VERSION
@@ -12,6 +14,7 @@ Gem::Specification.new do |s|
12
14
  s.homepage = 'https://github.com/lgierth/webmachine-sprockets'
13
15
  s.summary = %q{Webmachine for Ruby: Sprockets integration}
14
16
  s.description = s.summary
17
+ s.license = 'Public Domain'
15
18
 
16
19
  s.add_dependency 'webmachine', '~> 1.0'
17
20
  s.add_dependency 'sprockets', '~> 2.0'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: webmachine-sprockets
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
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-24 00:00:00.000000000 Z
12
+ date: 2013-12-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: webmachine
@@ -85,13 +85,15 @@ files:
85
85
  - Gemfile
86
86
  - README.md
87
87
  - Rakefile
88
+ - UNLICENSE
88
89
  - lib/webmachine/sprockets.rb
89
90
  - lib/webmachine/sprockets/resource.rb
90
91
  - lib/webmachine/sprockets/version.rb
91
92
  - test/test_integration.rb
92
93
  - webmachine-sprockets.gemspec
93
94
  homepage: https://github.com/lgierth/webmachine-sprockets
94
- licenses: []
95
+ licenses:
96
+ - Public Domain
95
97
  post_install_message:
96
98
  rdoc_options: []
97
99
  require_paths:
@@ -110,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
110
112
  version: '0'
111
113
  requirements: []
112
114
  rubyforge_project:
113
- rubygems_version: 1.8.24
115
+ rubygems_version: 1.8.23
114
116
  signing_key:
115
117
  specification_version: 3
116
118
  summary: ! 'Webmachine for Ruby: Sprockets integration'