assets-watchify 0.2.0 → 0.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0fc574bdc0daf1342d47c720bd1b962c9f2a6745
4
- data.tar.gz: c7520b80c34aa9c47f868595ca6845b9aa159d07
3
+ metadata.gz: d9118d1338a17224d583d6b31592b706009a3ae9
4
+ data.tar.gz: d3a82e6d930c290b5b9006dff88863dc6973abd5
5
5
  SHA512:
6
- metadata.gz: a56590dd75819e9e506a70428dfcb1fef54ad7f10db853bc845995b2f1a00261eac1c29166605fd9c42601a070bd53f39a5968a826f2cf80a91bcfb9db1fc73a
7
- data.tar.gz: f568d30307814c2dd959aa65ea1aeb58ac6c6d88d4ec022d277dcc34ed67ab8e06fe6243837270adf887323a428c6e52f4e249456d3b0cb0c75fbadf7ed7648a
6
+ metadata.gz: 5361769ccd7824b45df5296de5bafc8e2b74a29284e9d495b15c069ec0f2b171e712d46e7a2f8ccc3a49b115eef8dfd83a3b1719c57b7b039f2ebc78a4fa4c91
7
+ data.tar.gz: 58cc55f7348ffd7edda00b41b4a789084d2eef6b7a5f37a2264839bdfa47da58b7c0f812cb27ca544963fa47584a0ae721d88218053a2a4b00b917c7c025bd34
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in assets-watchify.gemspec
4
- gemspec
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in assets-watchify.gemspec
4
+ gemspec
@@ -1,22 +1,22 @@
1
- Copyright (c) 2015 Stas Ukolov
2
-
3
- MIT License
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
19
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1
+ Copyright (c) 2015 Stas Ukolov
2
+
3
+ MIT License
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
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile CHANGED
@@ -1 +1 @@
1
- require "bundler/gem_tasks"
1
+ require "bundler/gem_tasks"
@@ -1,32 +1,31 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'assets/watchify/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "assets-watchify"
8
- spec.version = Assets::Watchify::VERSION
9
- spec.authors = ["Stas Ukolov"]
10
- spec.email = ["ukoloff@gmail.com"]
11
- spec.summary = 'Fast serving Rails assets in development'
12
- spec.description = ''
13
- spec.homepage = "https://github.com/ukoloff/assets-watchify"
14
- spec.license = "MIT"
15
-
16
- spec.files = `git ls-files`.split($/)
17
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
- spec.require_paths = ["lib"]
20
-
21
- spec.add_dependency "railties"
22
- spec.add_dependency 'source_map'
23
- spec.add_dependency 'listen'
24
- if Gem.win_platform?
25
- spec.add_dependency 'wdm'
26
- spec.add_dependency 'execjs-xtrn'
27
- spec.add_dependency 'openssl-win-root'
28
- end
29
-
30
- spec.add_development_dependency "bundler", "~> 1.3"
31
- spec.add_development_dependency "rake"
32
- end
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'assets/watchify/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "assets-watchify"
8
+ spec.version = Assets::Watchify::VERSION
9
+ spec.authors = ["Stas Ukolov"]
10
+ spec.email = ["ukoloff@gmail.com"]
11
+ spec.summary = 'Fast serving Rails assets in development'
12
+ spec.description = ''
13
+ spec.homepage = "https://github.com/ukoloff/assets-watchify"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_dependency "railties"
22
+ spec.add_dependency 'source_map'
23
+ spec.add_dependency 'listen'
24
+ # Windows dependencies
25
+ spec.add_dependency 'wdm'
26
+ spec.add_dependency 'execjs-xtrn'
27
+ spec.add_dependency 'openssl-win-root'
28
+
29
+ spec.add_development_dependency "bundler", "~> 1.3"
30
+ spec.add_development_dependency "rake"
31
+ end
@@ -56,6 +56,7 @@ module Assets::Watchify
56
56
 
57
57
  def self.path? f
58
58
  Pathname.new(f).realpath.ascend do |z|
59
+ return false if 'gems'==z.basename.to_s
59
60
  return false if Pathname.glob(z+'*.gemspec').any?
60
61
  return true if z.join('Gemfile').file?
61
62
  end
@@ -1,5 +1,5 @@
1
- module Assets::Watchify::Helper
2
- def javascript_include_tag(*sources)
3
- sources.map {|s| Assets::Watchify.jstag s }.join("\n").html_safe
4
- end
5
- end
1
+ module Assets::Watchify::Helper
2
+ def javascript_include_tag(*sources)
3
+ sources.map {|s| Assets::Watchify.jstag s }.join("\n").html_safe
4
+ end
5
+ end
@@ -1,5 +1,5 @@
1
1
  module Assets
2
2
  module Watchify
3
- VERSION = "0.2.0"
3
+ VERSION = "0.2.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: assets-watchify
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stas Ukolov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-25 00:00:00.000000000 Z
11
+ date: 2015-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -161,7 +161,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
161
161
  version: '0'
162
162
  requirements: []
163
163
  rubyforge_project:
164
- rubygems_version: 2.4.6
164
+ rubygems_version: 2.0.14
165
165
  signing_key:
166
166
  specification_version: 4
167
167
  summary: Fast serving Rails assets in development