poll-rerun 0.11.1 → 0.11.2
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 +4 -4
- data/README.md +2 -3
- data/{poll-rerun.gemspec → rerun.gemspec} +5 -5
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 57100bf090e2154ce5a1e56ef134d216ee2e8b27
|
|
4
|
+
data.tar.gz: e8491ecd661f90adc0a3b907641819e5dd55032d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e0659978bb263966314c45abcc8ca66760e2e150dfe5997486f0ab324835332c7f6f9d641fa0d19d00a514f2aef004299893e805e5122a24ba6901d72f7b458e
|
|
7
|
+
data.tar.gz: f70b576e0c213a449ba87a77c4ab29b4f63403880d3b372e48ffe860b18f7d09fe207eb3ccb22876580e2d136752c3cff7d2154bf230379c3147574443ccc757
|
data/README.md
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
# Rerun
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
<http://github.com/alexch/rerun>
|
|
3
|
+
A fork of the original rerun: <http://github.com/alexch/rerun>
|
|
5
4
|
|
|
6
|
-
|
|
5
|
+
This fork only releases the latest commit to rubygems, which includes the `--force-polling`-flag and therefore work on WSL.
|
|
7
6
|
|
|
8
7
|
Rerun launches your program, then watches the filesystem. If a relevant file
|
|
9
8
|
changes, then it restarts your program.
|
|
@@ -3,10 +3,10 @@ $spec = Gem::Specification.new do |s|
|
|
|
3
3
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
4
4
|
|
|
5
5
|
s.name = 'poll-rerun'
|
|
6
|
-
s.version = '0.11.
|
|
6
|
+
s.version = '0.11.2'
|
|
7
7
|
|
|
8
|
-
s.description = "
|
|
9
|
-
s.summary = "
|
|
8
|
+
s.description = "A fork of the original rerun. This version includes the force-polling flag. Restarts your app when a file changes. A no-frills, command-line alternative to Guard, Shotgun, Autotest, etc."
|
|
9
|
+
s.summary = "A fork of the original rerun. This version includes the force-polling flag. Launches an app, and restarts it whenever the filesystem changes. A no-frills, command-line alternative to Guard, Shotgun, Autotest, etc."
|
|
10
10
|
|
|
11
11
|
s.authors = ["Alex Chaffee"]
|
|
12
12
|
s.email = "alex@stinky.com"
|
|
@@ -15,7 +15,7 @@ $spec = Gem::Specification.new do |s|
|
|
|
15
15
|
README.md
|
|
16
16
|
LICENSE
|
|
17
17
|
Rakefile
|
|
18
|
-
|
|
18
|
+
rerun.gemspec
|
|
19
19
|
bin/rerun
|
|
20
20
|
icons/rails_grn_sml.png
|
|
21
21
|
icons/rails_red_sml.png] +
|
|
@@ -27,7 +27,7 @@ $spec = Gem::Specification.new do |s|
|
|
|
27
27
|
|
|
28
28
|
s.add_runtime_dependency 'listen', '~> 3.0'
|
|
29
29
|
|
|
30
|
-
s.homepage = "http://github.com/hawry/rerun"
|
|
30
|
+
s.homepage = "http://github.com/hawry/rerun/"
|
|
31
31
|
s.require_paths = %w[lib]
|
|
32
32
|
|
|
33
33
|
s.license = 'MIT'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: poll-rerun
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.11.
|
|
4
|
+
version: 0.11.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alex Chaffee
|
|
@@ -24,9 +24,9 @@ dependencies:
|
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '3.0'
|
|
27
|
-
description:
|
|
28
|
-
flag
|
|
29
|
-
|
|
27
|
+
description: A fork of the original rerun. This version includes the force-polling
|
|
28
|
+
flag. Restarts your app when a file changes. A no-frills, command-line alternative
|
|
29
|
+
to Guard, Shotgun, Autotest, etc.
|
|
30
30
|
email: alex@stinky.com
|
|
31
31
|
executables:
|
|
32
32
|
- rerun
|
|
@@ -48,8 +48,8 @@ files:
|
|
|
48
48
|
- lib/rerun/runner.rb
|
|
49
49
|
- lib/rerun/system.rb
|
|
50
50
|
- lib/rerun/watcher.rb
|
|
51
|
-
-
|
|
52
|
-
homepage: http://github.com/hawry/rerun
|
|
51
|
+
- rerun.gemspec
|
|
52
|
+
homepage: http://github.com/hawry/rerun/
|
|
53
53
|
licenses:
|
|
54
54
|
- MIT
|
|
55
55
|
metadata: {}
|
|
@@ -72,7 +72,7 @@ rubyforge_project:
|
|
|
72
72
|
rubygems_version: 2.6.8
|
|
73
73
|
signing_key:
|
|
74
74
|
specification_version: 2
|
|
75
|
-
summary:
|
|
76
|
-
an app, and restarts it whenever the filesystem changes. A no-frills, command-line
|
|
75
|
+
summary: A fork of the original rerun. This version includes the force-polling flag.
|
|
76
|
+
Launches an app, and restarts it whenever the filesystem changes. A no-frills, command-line
|
|
77
77
|
alternative to Guard, Shotgun, Autotest, etc.
|
|
78
78
|
test_files: []
|