wtails 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ # A sample Gemfile
2
+ source "https://rubygems.org"
3
+
4
+ gemspec
data/README.md CHANGED
@@ -7,6 +7,11 @@ You can watch multiple files with slider UI.
7
7
 
8
8
  Wtails can serve files without launching browser(--serve), this option is usable for watching remote files.
9
9
 
10
+ install
11
+ =======
12
+
13
+ % gem install wtails
14
+
10
15
  usage
11
16
  =====
12
17
 
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
@@ -12,7 +12,7 @@ require "wtails/web_server"
12
12
  require "wtails/web_socket"
13
13
  require "wtails/tail"
14
14
  require "wtails/stdin"
15
- #require "wtails/browser"
15
+ require "wtails/browser"
16
16
 
17
17
  module Wtails
18
18
  extend self
@@ -24,7 +24,7 @@ module Wtails
24
24
  EM.run do
25
25
  EM.defer { WebSocket.run(opts, files) }
26
26
  EM.defer { WebServer.run(opts, files) }
27
- #EM.defer { Browser.run }
27
+ EM.defer { Browser.run }
28
28
  Tail.run(opts, files)
29
29
  end
30
30
  end
@@ -1,3 +1,3 @@
1
1
  module Wtails
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wtails
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 2
10
- version: 0.0.2
9
+ - 3
10
+ version: 0.0.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Naoyuki HIRAYAMA
@@ -113,7 +113,9 @@ extensions: []
113
113
  extra_rdoc_files: []
114
114
 
115
115
  files:
116
+ - Gemfile
116
117
  - README.md
118
+ - Rakefile
117
119
  - bin/wtails
118
120
  - doc/img/dual_view.png
119
121
  - doc/img/single_view.png