alki-reload 0.3.3 → 0.3.4
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 +5 -5
- data/.gitignore +1 -0
- data/.travis.yml +3 -0
- data/README.adoc +2 -0
- data/alki-reload.gemspec +2 -1
- data/lib/alki/reload/version.rb +1 -1
- metadata +7 -10
- data/bin/alki +0 -17
- data/bin/bundler +0 -17
- data/bin/listen +0 -17
- data/bin/rake +0 -17
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: e989c542270823f9f989771f67ea24b31a10d02a9e061f9904657a2fc7b79678
|
|
4
|
+
data.tar.gz: 363f26b6b21ad466242cf62b8109515a242887e2f152e2cb161ad54492d82245
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8deb29835394d314368398fc0d337e3a1de3393dc51e23454242ee2f04e5cb6ba338020b57e3347bb441ca92d9bfd039fa0cd149b0bae371f518c4dbe0f229a6
|
|
7
|
+
data.tar.gz: 51c54244d0a12b41fecd5e21b6167f991fcf396eb81282287c0a4c14116437fbfa14be2568c913ed7f2c10f7cb59f16e301d396abcf1071d9eab3d10b6224c10
|
data/.gitignore
CHANGED
data/.travis.yml
ADDED
data/README.adoc
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
= Alki::Reload
|
|
2
2
|
|
|
3
|
+
image:https://travis-ci.org/alki-project/alki-reload.svg?branch=master["Build Status", link="https://travis-ci.org/alki-project/alki-reload"]
|
|
4
|
+
|
|
3
5
|
Provides auto-reload feature to Alki projects. Like the auto-reload feature in Ruby on Rails, when
|
|
4
6
|
enabled it will monitor source files and whenever a change is detected, will reload the project.
|
|
5
7
|
|
data/alki-reload.gemspec
CHANGED
|
@@ -12,6 +12,7 @@ Gem::Specification.new do |spec|
|
|
|
12
12
|
spec.summary = %q{Automatic reloading of alki projects}
|
|
13
13
|
spec.homepage = "https://github.com/alki-project/alki-reload"
|
|
14
14
|
spec.license = "MIT"
|
|
15
|
+
spec.required_ruby_version = '>= 2.1.0'
|
|
15
16
|
|
|
16
17
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
17
18
|
f.match(%r{^(test|spec|features)/})
|
|
@@ -21,5 +22,5 @@ Gem::Specification.new do |spec|
|
|
|
21
22
|
spec.require_paths = ["lib"]
|
|
22
23
|
|
|
23
24
|
spec.add_dependency "listen", "~> 3.0"
|
|
24
|
-
spec.add_dependency "alki", "~> 0.
|
|
25
|
+
spec.add_dependency "alki", "~> 0.14.0"
|
|
25
26
|
end
|
data/lib/alki/reload/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: alki-reload
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Edlefsen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-04-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: listen
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 0.
|
|
33
|
+
version: 0.14.0
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 0.
|
|
40
|
+
version: 0.14.0
|
|
41
41
|
description:
|
|
42
42
|
email:
|
|
43
43
|
- matt.edlefsen@gmail.com
|
|
@@ -46,16 +46,13 @@ extensions: []
|
|
|
46
46
|
extra_rdoc_files: []
|
|
47
47
|
files:
|
|
48
48
|
- ".gitignore"
|
|
49
|
+
- ".travis.yml"
|
|
49
50
|
- CODE_OF_CONDUCT.md
|
|
50
51
|
- Gemfile
|
|
51
52
|
- LICENSE.txt
|
|
52
53
|
- README.adoc
|
|
53
54
|
- Rakefile
|
|
54
55
|
- alki-reload.gemspec
|
|
55
|
-
- bin/alki
|
|
56
|
-
- bin/bundler
|
|
57
|
-
- bin/listen
|
|
58
|
-
- bin/rake
|
|
59
56
|
- config/assembly.rb
|
|
60
57
|
- lib/alki/reload.rb
|
|
61
58
|
- lib/alki/reload/assembly_delegator.rb
|
|
@@ -79,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
79
76
|
requirements:
|
|
80
77
|
- - ">="
|
|
81
78
|
- !ruby/object:Gem::Version
|
|
82
|
-
version:
|
|
79
|
+
version: 2.1.0
|
|
83
80
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
84
81
|
requirements:
|
|
85
82
|
- - ">="
|
|
@@ -87,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
87
84
|
version: '0'
|
|
88
85
|
requirements: []
|
|
89
86
|
rubyforge_project:
|
|
90
|
-
rubygems_version: 2.6
|
|
87
|
+
rubygems_version: 2.7.6
|
|
91
88
|
signing_key:
|
|
92
89
|
specification_version: 4
|
|
93
90
|
summary: Automatic reloading of alki projects
|
data/bin/alki
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
# frozen_string_literal: true
|
|
3
|
-
#
|
|
4
|
-
# This file was generated by Bundler.
|
|
5
|
-
#
|
|
6
|
-
# The application 'alki' is installed as part of a gem, and
|
|
7
|
-
# this file is here to facilitate running it.
|
|
8
|
-
#
|
|
9
|
-
|
|
10
|
-
require "pathname"
|
|
11
|
-
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
|
12
|
-
Pathname.new(__FILE__).realpath)
|
|
13
|
-
|
|
14
|
-
require "rubygems"
|
|
15
|
-
require "bundler/setup"
|
|
16
|
-
|
|
17
|
-
load Gem.bin_path("alki", "alki")
|
data/bin/bundler
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
# frozen_string_literal: true
|
|
3
|
-
#
|
|
4
|
-
# This file was generated by Bundler.
|
|
5
|
-
#
|
|
6
|
-
# The application 'bundler' is installed as part of a gem, and
|
|
7
|
-
# this file is here to facilitate running it.
|
|
8
|
-
#
|
|
9
|
-
|
|
10
|
-
require "pathname"
|
|
11
|
-
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
|
12
|
-
Pathname.new(__FILE__).realpath)
|
|
13
|
-
|
|
14
|
-
require "rubygems"
|
|
15
|
-
require "bundler/setup"
|
|
16
|
-
|
|
17
|
-
load Gem.bin_path("bundler", "bundler")
|
data/bin/listen
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
# frozen_string_literal: true
|
|
3
|
-
#
|
|
4
|
-
# This file was generated by Bundler.
|
|
5
|
-
#
|
|
6
|
-
# The application 'listen' is installed as part of a gem, and
|
|
7
|
-
# this file is here to facilitate running it.
|
|
8
|
-
#
|
|
9
|
-
|
|
10
|
-
require "pathname"
|
|
11
|
-
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
|
12
|
-
Pathname.new(__FILE__).realpath)
|
|
13
|
-
|
|
14
|
-
require "rubygems"
|
|
15
|
-
require "bundler/setup"
|
|
16
|
-
|
|
17
|
-
load Gem.bin_path("listen", "listen")
|
data/bin/rake
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
# frozen_string_literal: true
|
|
3
|
-
#
|
|
4
|
-
# This file was generated by Bundler.
|
|
5
|
-
#
|
|
6
|
-
# The application 'rake' is installed as part of a gem, and
|
|
7
|
-
# this file is here to facilitate running it.
|
|
8
|
-
#
|
|
9
|
-
|
|
10
|
-
require "pathname"
|
|
11
|
-
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../Gemfile",
|
|
12
|
-
Pathname.new(__FILE__).realpath)
|
|
13
|
-
|
|
14
|
-
require "rubygems"
|
|
15
|
-
require "bundler/setup"
|
|
16
|
-
|
|
17
|
-
load Gem.bin_path("rake", "rake")
|