poll-rerun 0.11.1 → 0.11.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: afdc9586c6a6101dea11606085d1d10fc0887d60
4
- data.tar.gz: c8129748d4c63516fd44e28c2ff8c728515c788c
3
+ metadata.gz: 57100bf090e2154ce5a1e56ef134d216ee2e8b27
4
+ data.tar.gz: e8491ecd661f90adc0a3b907641819e5dd55032d
5
5
  SHA512:
6
- metadata.gz: 4c33ce48a27db3773cd195621f3682d0b3e395d494f939bac3cfcb84155cfa414a2d87f180f7ef82a655f6e26347b93a3a29db387702b79ee798fe7a8a18bca2
7
- data.tar.gz: 9b74cab2dae5b506441edfeb8f88b12f3b5768cab495a0b66a108a98fa8d989224fd473c9a9acda0a1678a0394539d61a7423d738313eaa9847888496116b0e7
6
+ metadata.gz: e0659978bb263966314c45abcc8ca66760e2e150dfe5997486f0ab324835332c7f6f9d641fa0d19d00a514f2aef004299893e805e5122a24ba6901d72f7b458e
7
+ data.tar.gz: f70b576e0c213a449ba87a77c4ab29b4f63403880d3b372e48ffe860b18f7d09fe207eb3ccb22876580e2d136752c3cff7d2154bf230379c3147574443ccc757
data/README.md CHANGED
@@ -1,9 +1,8 @@
1
1
  # Rerun
2
2
 
3
- This is a fork of the original rerun available here:
4
- <http://github.com/alexch/rerun>
3
+ A fork of the original rerun: <http://github.com/alexch/rerun>
5
4
 
6
- The only difference between this version and the original is the versioning that also includes the `--force-polling` flag.
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.1'
6
+ s.version = '0.11.2'
7
7
 
8
- s.description = "Fork of the original rerun gem but with a 'released' --force-polling flag available. Restarts your app when a file changes. A no-frills, command-line alternative to Guard, Shotgun, Autotest, etc."
9
- s.summary = "Fork of original rerun, but with 'released' --force-polling flag. Launches an app, and restarts it whenever the filesystem changes. A no-frills, command-line alternative to Guard, Shotgun, Autotest, etc."
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
- poll-rerun.gemspec
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.1
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: Fork of the original rerun gem but with a 'released' --force-polling
28
- flag available. Restarts your app when a file changes. A no-frills, command-line
29
- alternative to Guard, Shotgun, Autotest, etc.
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
- - poll-rerun.gemspec
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: Fork of original rerun, but with 'released' --force-polling flag. Launches
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: []