jsus 0.1.14 → 0.1.15

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. data/README +1 -1
  2. data/UNLICENSE +24 -0
  3. data/VERSION +1 -1
  4. data/jsus.gemspec +2 -3
  5. metadata +4 -5
  6. data/LICENSE +0 -19
data/README CHANGED
@@ -3,4 +3,4 @@ Ruby implementation of javascript packager / dependency resolver.
3
3
  More info at: http://github.com/Inviz/Javascript-bundler
4
4
 
5
5
  = License
6
- MIT
6
+ Public Domain, original authorship still belongs to me, Mark Abramov (markiz).
@@ -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/>
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.14
1
+ 0.1.15
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{jsus}
8
- s.version = "0.1.14"
8
+ s.version = "0.1.15"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Mark Abramov"]
@@ -15,7 +15,6 @@ Gem::Specification.new do |s|
15
15
  s.email = %q{markizko@gmail.com}
16
16
  s.executables = ["jsus"]
17
17
  s.extra_rdoc_files = [
18
- "LICENSE",
19
18
  "README",
20
19
  "TODO"
21
20
  ]
@@ -25,11 +24,11 @@ Gem::Specification.new do |s|
25
24
  "CHANGELOG",
26
25
  "Gemfile",
27
26
  "Gemfile.lock",
28
- "LICENSE",
29
27
  "Manifest",
30
28
  "README",
31
29
  "Rakefile",
32
30
  "TODO",
31
+ "UNLICENSE",
33
32
  "VERSION",
34
33
  "autotest/discover.rb",
35
34
  "bin/jsus",
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 14
9
- version: 0.1.14
8
+ - 15
9
+ version: 0.1.15
10
10
  platform: ruby
11
11
  authors:
12
12
  - Mark Abramov
@@ -180,7 +180,6 @@ executables:
180
180
  extensions: []
181
181
 
182
182
  extra_rdoc_files:
183
- - LICENSE
184
183
  - README
185
184
  - TODO
186
185
  files:
@@ -189,11 +188,11 @@ files:
189
188
  - CHANGELOG
190
189
  - Gemfile
191
190
  - Gemfile.lock
192
- - LICENSE
193
191
  - Manifest
194
192
  - README
195
193
  - Rakefile
196
194
  - TODO
195
+ - UNLICENSE
197
196
  - VERSION
198
197
  - autotest/discover.rb
199
198
  - bin/jsus
@@ -279,7 +278,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
279
278
  requirements:
280
279
  - - ">="
281
280
  - !ruby/object:Gem::Version
282
- hash: -4334832841709873264
281
+ hash: -4576287695756448822
283
282
  segments:
284
283
  - 0
285
284
  version: "0"
data/LICENSE DELETED
@@ -1,19 +0,0 @@
1
- Copyright (c) 2010, Mark Abramov (Markiz)
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining a copy
4
- of this software and associated documentation files (the "Software"), to deal
5
- in the Software without restriction, including without limitation the rights
6
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
- copies of the Software, and to permit persons to whom the Software is
8
- furnished to do so, subject to the following conditions:
9
-
10
- The above copyright notice and this permission notice shall be included in all
11
- copies or substantial portions of the Software.
12
-
13
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
- SOFTWARE.