We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cae1658 commit ec531abCopy full SHA for ec531ab
lib/jruby_art/runners/watch.rb
@@ -22,8 +22,8 @@ class Watcher
22
SLEEP_TIME = 0.2
23
def initialize
24
count = Dir["**.*rb"].length
25
- max_watch = RP_CONFIG.fetch('MAX_WATCH', 30).to_i
26
- return warn format(WATCH_MESSAGE, max_watch, count) if count > max_watch
+ max_watch = RP_CONFIG.fetch('MAX_WATCH', 20)
+ return warn format(WATCH_MESSAGE, max_watch, count) if count > max_watch.to_i
27
reload_files_to_watch
28
@time = Time.now
29
start_watching
vendors/Rakefile
@@ -11,7 +11,7 @@ EOS
11
12
JRUBYC_VERSION = '9.1.16.0'
13
14
-EXAMPLES = '2.8'
+EXAMPLES = '2.9'
15
HOME_DIR = ENV['HOME']
16
MAC_OR_LINUX = /linux|mac|darwin/ =~ RbConfig::CONFIG['host_os']
17
0 commit comments