shere 0.9.1 → 0.9.2

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.
data/CHANGES.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # CHANGES
2
2
 
3
+ ## shere 0.9.2 -- 2012-01-13
4
+
5
+ Fixed a bug where root path is not quoted.
6
+
3
7
  ## shere 0.9.1 -- 2011-12-28
4
8
 
5
9
  Now `-h` is the alias of `--help`, and `-o` is the alias of `--host`.
data/lib/shere.rb CHANGED
@@ -98,7 +98,7 @@ http {
98
98
  index index.xhtml index.html index.htm;
99
99
 
100
100
  location / {
101
- root #{root};
101
+ root "#{root}";
102
102
  autoindex on;
103
103
  }
104
104
  }
data/lib/shere/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
 
2
2
  module Shere
3
- VERSION = '0.9.1'
3
+ VERSION = '0.9.2'
4
4
  end
data/shere.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "shere"
5
- s.version = "0.9.1"
5
+ s.version = "0.9.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Lin Jen-Shin (godfat)"]
9
- s.date = "2011-12-28"
9
+ s.date = "2012-01-13"
10
10
  s.description = "_Share_ the directory _here_ with [Nginx][]!\nShere would create a temporary Nginx config and run an\nNginx instance to serve the directory you specified."
11
11
  s.email = ["godfat (XD) godfat.org"]
12
12
  s.executables = ["shere"]
@@ -28,7 +28,7 @@ Gem::Specification.new do |s|
28
28
  "task/gemgem.rb"]
29
29
  s.homepage = "https://github.com/godfat/shere"
30
30
  s.require_paths = ["lib"]
31
- s.rubygems_version = "1.8.13"
31
+ s.rubygems_version = "1.8.15"
32
32
  s.summary = "_Share_ the directory _here_ with [Nginx][]!"
33
33
 
34
34
  if s.respond_to? :specification_version then
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shere
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.9.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-12-28 00:00:00.000000000 Z
12
+ date: 2012-01-13 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: ! '_Share_ the directory _here_ with [Nginx][]!
15
15
 
@@ -58,7 +58,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
58
58
  version: '0'
59
59
  requirements: []
60
60
  rubyforge_project:
61
- rubygems_version: 1.8.13
61
+ rubygems_version: 1.8.15
62
62
  signing_key:
63
63
  specification_version: 3
64
64
  summary: _Share_ the directory _here_ with [Nginx][]!