pug-ruby 2.0.0.rc2 → 2.0.0.rc3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +3 -3
  3. data/README.md +2 -1
  4. data/Rakefile +7 -0
  5. data/lib/jade-pug/base.rb +2 -2
  6. data/lib/jade-pug/system-compiler.rb +2 -2
  7. data/lib/pug-ruby/version.rb +1 -1
  8. data/test/helper.rb +3 -1
  9. data/test/manual.rb +3 -0
  10. data/vendor/jade-1.0.0-license +22 -0
  11. data/vendor/jade-1.0.1-license +22 -0
  12. data/vendor/jade-1.0.2-license +22 -0
  13. data/vendor/jade-1.1.0-license +22 -0
  14. data/vendor/jade-1.1.1-license +22 -0
  15. data/vendor/jade-1.1.2-license +22 -0
  16. data/vendor/jade-1.1.3-license +22 -0
  17. data/vendor/jade-1.1.4-license +22 -0
  18. data/vendor/jade-1.1.5-license +22 -0
  19. data/vendor/{pug-2.0.0-beta.12-license → jade-1.10.0-license} +0 -0
  20. data/vendor/jade-1.11.0-license +22 -0
  21. data/vendor/jade-1.2.0-license +22 -0
  22. data/vendor/jade-1.3.0-license +22 -0
  23. data/vendor/jade-1.3.1-license +22 -0
  24. data/vendor/jade-1.4.0-license +22 -0
  25. data/vendor/jade-1.4.1-license +22 -0
  26. data/vendor/jade-1.4.2-license +22 -0
  27. data/vendor/jade-1.5.0-license +22 -0
  28. data/vendor/jade-1.6.0-license +22 -0
  29. data/vendor/jade-1.7.0-license +22 -0
  30. data/vendor/jade-1.8.0-license +22 -0
  31. data/vendor/jade-1.8.1-license +22 -0
  32. data/vendor/jade-1.8.2-license +22 -0
  33. data/vendor/jade-1.9.0-license +22 -0
  34. data/vendor/jade-1.9.1-license +22 -0
  35. data/vendor/jade-1.9.2-license +22 -0
  36. data/vendor/pug-2.0.0-beta12-license +22 -0
  37. data/vendor/{pug-2.0.0-beta.12.min.js → pug-2.0.0-beta12.min.js} +0 -0
  38. data/vendor/pug-2.0.0-rc.4-license +22 -0
  39. data/vendor/pug-2.0.0-rc.4.min.js +1 -0
  40. metadata +33 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 38db8339fda802602f9f3f7fab77df46b4ac79c5
4
- data.tar.gz: cb5949a4b292f3ed22f77497d9775557b9816785
3
+ metadata.gz: 472abd77f20a1eeb67fa2cffe420a8df4ccbf5de
4
+ data.tar.gz: a6ca5a7d68c966e8699fce134599d76c3b865d39
5
5
  SHA512:
6
- metadata.gz: 4456d6fdd5e7662d171935a0631acce575680b29e257d0eb790d96aba7a7a50201928286876ec23bbd90cebe5adeab6fbcf0ee4929b809582ca8eb871a8c2287
7
- data.tar.gz: 69b49cc1c3494cfee67f78ce5bb9ece96641c9d574995a0c32a3e003dbfa55b8f6e27bf4fd8fbba57686c1ea57c663642f3be61b2cb52fa6c94a4ceb729ae919
6
+ metadata.gz: 9e8ad1860d59ce06fd3fe602a804d5526bcccf71b4b1d7c000b8c6b5a25e4d66119dc5981b14cdf97f180d9188abb8c4c4b14bfff716994bbbe38ae4c5ed078e
7
+ data.tar.gz: 12d05f2a475c5b76b2148de6140d2c14eb24b8eaf655b708ad52c0c4037b5bc82268d3125bf7f3b00f4e5a6f0344dbc26130489e1eb4bc62cba6af3bd7d4cd42
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pug-ruby (2.0.0.rc2)
4
+ pug-ruby (2.0.0.rc3)
5
5
  execjs (~> 2.0)
6
6
  memoist (~> 0.15)
7
7
  method-not-implemented (~> 1.0, >= 1.0.1)
@@ -13,7 +13,7 @@ GEM
13
13
  execjs (2.7.0)
14
14
  memoist (0.16.0)
15
15
  method-not-implemented (1.0.1)
16
- power_assert (1.0.2)
16
+ power_assert (1.1.0)
17
17
  rake (10.5.0)
18
18
  regexp-match-polyfill (1.0.2)
19
19
  test-unit (3.2.5)
@@ -29,4 +29,4 @@ DEPENDENCIES
29
29
  test-unit (~> 3.1)
30
30
 
31
31
  BUNDLED WITH
32
- 1.15.3
32
+ 1.15.4
data/README.md CHANGED
@@ -216,10 +216,11 @@ Pug.use :system
216
216
  * 2.0.0-beta9
217
217
  * 2.0.0-beta10
218
218
  * 2.0.0-beta11
219
- * 2.0.0-beta.12 (the dot is not an error)
219
+ * 2.0.0-beta12
220
220
  * 2.0.0-rc.1
221
221
  * 2.0.0-rc.2
222
222
  * 2.0.0-rc.3
223
+ * 2.0.0-rc.4
223
224
 
224
225
  **Shipped versions of Pug runtime:**
225
226
 
data/Rakefile CHANGED
@@ -53,10 +53,17 @@ namespace "javascripts" do
53
53
  install_node_modules "tmp/jade-#{version}"
54
54
  build_template_compiler :jade, "tmp/jade-#{version}", version, "vendor/jade-#{version}.min.js"
55
55
  build_template_runtime :jade, "tmp/jade-#{version}", version, "vendor/jade-runtime-#{version}.js"
56
+ copy_license_file :jade, "tmp/jade-#{version}", version, "vendor/jade-#{version}-license"
56
57
  copy_license_file :jade, "tmp/jade-#{version}", version, "vendor/jade-runtime-#{version}-license"
57
58
 
58
59
  elsif tag.match?(/\A(?:pug@|2)/) && !tag.match?(/alpha/)
59
60
  version = tag.gsub(/\Apug@/, "")
61
+
62
+ # Try to remove an extra dot in versions like "2.0.0-beta.12".
63
+ # This is just a typo: ^
64
+ # I try to fix it so user will not be confused why some beta versions
65
+ # are named like "2.0.0-beta.12" and others like "2.0.0-beta5".
66
+ version = version.gsub(/\A(2\.0\.0-beta)\.(\d+)\z/, "\\1\\2")
60
67
  clone_repository "https://github.com/pugjs/pug.git", tag, "tmp/pug-#{version}"
61
68
  install_node_modules "tmp/pug-#{version}"
62
69
  install_node_modules "tmp/pug-#{version}/packages/pug"
data/lib/jade-pug/base.rb CHANGED
@@ -76,7 +76,7 @@ module JadePug
76
76
  end
77
77
 
78
78
  #
79
- # Returns the list of all available engine compiler versions shipped with gem.
79
+ # Returns the list of all available engine compiler versions shipped with the gem.
80
80
  #
81
81
  # @return [Array<String>]
82
82
  def versions
@@ -88,7 +88,7 @@ module JadePug
88
88
  memoize :versions
89
89
 
90
90
  #
91
- # Returns the list of all available engine runtime versions shipped with gem.
91
+ # Returns the list of all available engine runtime versions shipped with the gem.
92
92
  #
93
93
  # @return [Array<String>]
94
94
  def runtime_versions
@@ -119,10 +119,10 @@ module JadePug
119
119
  memoize :check_node_runtime!
120
120
 
121
121
  #
122
- # Checks if engine NPM package has been installed.
122
+ # Checks if engine NPM package is installed.
123
123
  #
124
124
  # @raise {JadePug::CompilerError}
125
- # If engine NPM package han't been installed.
125
+ # If engine NPM package is not installed.
126
126
  # @return [nil]
127
127
  def check_npm_package!
128
128
  exit_status = Open3.capture2("node", "--eval", npm_package_require_snippet)[1]
@@ -4,4 +4,4 @@
4
4
  #
5
5
  # Keeps the "pug-ruby" gem version.
6
6
  #
7
- PUG_RUBY_GEM_VERSION = "2.0.0.rc2"
7
+ PUG_RUBY_GEM_VERSION = "2.0.0.rc3"
data/test/helper.rb CHANGED
@@ -8,6 +8,8 @@ require "regexp-match-polyfill"
8
8
  Jade.silence = true
9
9
  Pug.silence = true
10
10
 
11
+ Test::Unit::TestCase.test_order = :random
12
+
11
13
  module JadePugTestHelpers
12
14
  def engine
13
15
  Object.const_get self.class.name.gsub(/Test\z/, "")
@@ -171,7 +173,7 @@ module JadePugTest
171
173
 
172
174
  def test_version_list
173
175
  assert_equal engine == Jade ? "1.0.0" : "2.0.0-beta1", engine.versions.first
174
- assert_equal engine == Jade ? "1.11.0" : "2.0.0-rc.3", engine.versions.last
176
+ assert_equal engine == Jade ? "1.11.0" : "2.0.0-rc.4", engine.versions.last
175
177
  end
176
178
 
177
179
  def test_runtime_version_list
data/test/manual.rb CHANGED
@@ -1,3 +1,6 @@
1
+ # encoding: UTF-8
2
+ # frozen_string_literal: true
3
+
1
4
  require "pug-ruby"
2
5
 
3
6
  Jade.use :system
@@ -0,0 +1,22 @@
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2009-2010 TJ Holowaychuk <tj@vision-media.ca>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ 'Software'), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
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 OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,22 @@
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2009-2010 TJ Holowaychuk <tj@vision-media.ca>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ 'Software'), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
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 OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,22 @@
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2009-2010 TJ Holowaychuk <tj@vision-media.ca>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ 'Software'), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
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 OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,22 @@
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2009-2010 TJ Holowaychuk <tj@vision-media.ca>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ 'Software'), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
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 OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,22 @@
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2009-2010 TJ Holowaychuk <tj@vision-media.ca>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ 'Software'), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
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 OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,22 @@
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2009-2010 TJ Holowaychuk <tj@vision-media.ca>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ 'Software'), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
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 OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,22 @@
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2009-2010 TJ Holowaychuk <tj@vision-media.ca>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ 'Software'), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
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 OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,22 @@
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2009-2010 TJ Holowaychuk <tj@vision-media.ca>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ 'Software'), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
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 OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,22 @@
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2009-2010 TJ Holowaychuk <tj@vision-media.ca>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ 'Software'), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
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 OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,22 @@
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2009-2014 TJ Holowaychuk <tj@vision-media.ca>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ 'Software'), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
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 OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,22 @@
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2009-2010 TJ Holowaychuk <tj@vision-media.ca>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ 'Software'), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
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 OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,22 @@
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2009-2010 TJ Holowaychuk <tj@vision-media.ca>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ 'Software'), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
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 OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,22 @@
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2009-2014 TJ Holowaychuk <tj@vision-media.ca>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ 'Software'), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
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 OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.