poll-rerun 0.11.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 +7 -0
- data/LICENSE +34 -0
- data/README.md +377 -0
- data/Rakefile +82 -0
- data/bin/rerun +12 -0
- data/icons/rails_grn_sml.png +0 -0
- data/icons/rails_red_sml.png +0 -0
- data/lib/goo.rb +3 -0
- data/lib/rerun/glob.rb +85 -0
- data/lib/rerun/notification.rb +64 -0
- data/lib/rerun/options.rb +124 -0
- data/lib/rerun/runner.rb +339 -0
- data/lib/rerun/system.rb +22 -0
- data/lib/rerun/watcher.rb +130 -0
- data/lib/rerun.rb +15 -0
- data/poll-rerun.gemspec +34 -0
- metadata +78 -0
metadata
ADDED
@@ -0,0 +1,78 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: poll-rerun
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.11.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Alex Chaffee
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-06-12 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: listen
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
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.
|
30
|
+
email: alex@stinky.com
|
31
|
+
executables:
|
32
|
+
- rerun
|
33
|
+
extensions: []
|
34
|
+
extra_rdoc_files:
|
35
|
+
- README.md
|
36
|
+
files:
|
37
|
+
- LICENSE
|
38
|
+
- README.md
|
39
|
+
- Rakefile
|
40
|
+
- bin/rerun
|
41
|
+
- icons/rails_grn_sml.png
|
42
|
+
- icons/rails_red_sml.png
|
43
|
+
- lib/goo.rb
|
44
|
+
- lib/rerun.rb
|
45
|
+
- lib/rerun/glob.rb
|
46
|
+
- lib/rerun/notification.rb
|
47
|
+
- lib/rerun/options.rb
|
48
|
+
- lib/rerun/runner.rb
|
49
|
+
- lib/rerun/system.rb
|
50
|
+
- lib/rerun/watcher.rb
|
51
|
+
- poll-rerun.gemspec
|
52
|
+
homepage: http://github.com/hawry/rerun
|
53
|
+
licenses:
|
54
|
+
- MIT
|
55
|
+
metadata: {}
|
56
|
+
post_install_message:
|
57
|
+
rdoc_options: []
|
58
|
+
require_paths:
|
59
|
+
- lib
|
60
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
61
|
+
requirements:
|
62
|
+
- - ">="
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: '0'
|
65
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - ">="
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
requirements: []
|
71
|
+
rubyforge_project:
|
72
|
+
rubygems_version: 2.6.8
|
73
|
+
signing_key:
|
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
|
77
|
+
alternative to Guard, Shotgun, Autotest, etc.
|
78
|
+
test_files: []
|