nanoc-live 1.0.0a2 → 1.0.0b1

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
  SHA256:
3
- metadata.gz: 412c66134e3f76c210f21c2b074f56d828843ac36f6bde4608226e65a8fa700b
4
- data.tar.gz: 04e281da49f03ae98a92429a2a528b972573a195facb38431d2f60721585e6cb
3
+ metadata.gz: 07af7fba9b95c88f6ff855251fa66ff92cf1f001600dc6e324e09f91c402fb05
4
+ data.tar.gz: 16111dc862f98559aafcf915d8436b1717e94e5293b90cc6be6e62b74d97abd4
5
5
  SHA512:
6
- metadata.gz: 5fbcefbcb984f6b526ae00b07356332c8f9bcc5c1b44980a6a43c58b22a9c5cdb1d4d7a5c8c79f4ce85f94ca5cfa1aa69812f15de6f7574945b5b89095e5bd49
7
- data.tar.gz: c5051c3f36441a9b84ce7e56a02219852690d3132bb8415a3282e5db2ac4b250b15ac9b9f1d2a575e36de0615ab54405acd5a93c197c0937021c069950a6c8ba
6
+ metadata.gz: 2c2ad29c479071c3d38af11c35deb9b65d4593fc81aaa8c70c85f98e2467e21c9140030d0becfad6ed8ff7592b595cf45edbdced6bf772f0e84bc8cc7f71fb3b
7
+ data.tar.gz: 3827e0624538bb45fed69f69b97df5dc2c746509884a663e518ba885461ef6485d52b317ae5be64ae16421791826ac817ff4ccbc4feb15286162d421a5a2c383
data/NEWS.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Release notes for nanoc-live
2
2
 
3
+ ## 1.0.0b1 (2018-01-07)
4
+
5
+ Changes:
6
+
7
+ * Removed `--live-reload` (always enabled) (#1291)
8
+
3
9
  ## 1.0.0a2 (2017-12-09)
4
10
 
5
11
  Fixes:
@@ -11,7 +11,6 @@ EOS
11
11
  required :H, :handler, 'specify the handler to use (webrick/mongrel/...)'
12
12
  required :o, :host, 'specify the host to listen on (default: 127.0.0.1)'
13
13
  required :p, :port, 'specify the port to listen on (default: 3000)'
14
- flag :L, :'live-reload', 'reload on changes'
15
14
 
16
15
  module Nanoc::Live::Commands
17
16
  class Live < ::Nanoc::CLI::CommandRunner
@@ -20,7 +19,8 @@ module Nanoc::Live::Commands
20
19
 
21
20
  Thread.new do
22
21
  Thread.current.abort_on_exception = true
23
- Nanoc::CLI::Commands::View.new(options, [], self).run
22
+ view_options = options.merge('live-reload': true)
23
+ Nanoc::CLI::Commands::View.new(view_options, [], self).run
24
24
  end
25
25
 
26
26
  Nanoc::Live::LiveRecompiler.new(command_runner: self).run
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Nanoc
4
4
  module Live
5
- VERSION = '1.0.0a2'
5
+ VERSION = '1.0.0b1'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nanoc-live
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0a2
4
+ version: 1.0.0b1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Denis Defreyne
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-12-09 00:00:00.000000000 Z
11
+ date: 2018-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: adsf-live
@@ -90,7 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
90
90
  version: 1.3.1
91
91
  requirements: []
92
92
  rubyforge_project:
93
- rubygems_version: 2.7.3
93
+ rubygems_version: 2.7.4
94
94
  signing_key:
95
95
  specification_version: 4
96
96
  summary: Live recompilation support for Nanoc