blavoshost 0.2.4 → 0.2.5
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/Gemfile +0 -1
- data/Gemfile.lock +0 -8
- data/Rakefile +1 -0
- data/VERSION +1 -1
- data/bin/blavoshost +2 -3
- data/blavoshost.gemspec +5 -2
- metadata +19 -6
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,18 +1,10 @@
|
|
|
1
1
|
GEM
|
|
2
2
|
remote: http://rubygems.org/
|
|
3
3
|
specs:
|
|
4
|
-
columnize (0.3.1)
|
|
5
4
|
json (1.4.6)
|
|
6
|
-
linecache (0.43)
|
|
7
|
-
ruby-debug (0.10.3)
|
|
8
|
-
columnize (>= 0.1)
|
|
9
|
-
ruby-debug-base (~> 0.10.3.0)
|
|
10
|
-
ruby-debug-base (0.10.3)
|
|
11
|
-
linecache (>= 0.3)
|
|
12
5
|
|
|
13
6
|
PLATFORMS
|
|
14
7
|
ruby
|
|
15
8
|
|
|
16
9
|
DEPENDENCIES
|
|
17
10
|
json
|
|
18
|
-
ruby-debug
|
data/Rakefile
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.5
|
data/bin/blavoshost
CHANGED
|
@@ -8,7 +8,6 @@ require 'open3'
|
|
|
8
8
|
require 'ostruct'
|
|
9
9
|
require 'optparse'
|
|
10
10
|
require 'fileutils'
|
|
11
|
-
require 'ruby-debug'
|
|
12
11
|
|
|
13
12
|
module Hipe
|
|
14
13
|
module Vhost
|
|
@@ -809,9 +808,9 @@ module Hipe
|
|
|
809
808
|
|
|
810
809
|
HardCoded.vhost_stuff = Templatesimal[<<-END.gsub(/^ {6}/,'')
|
|
811
810
|
<VirtualHost *:80>
|
|
812
|
-
DocumentRoot "{{doc_root}}"
|
|
811
|
+
DocumentRoot "{{doc_root}}/public"
|
|
813
812
|
ServerName "{{host}}.local"
|
|
814
|
-
<Directory "{{doc_root}}">
|
|
813
|
+
<Directory "{{doc_root}}/public">
|
|
815
814
|
Options All
|
|
816
815
|
AllowOverride All
|
|
817
816
|
Allow from All
|
data/blavoshost.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{blavoshost}
|
|
8
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.5"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Jerrod Blavos"]
|
|
12
|
-
s.date = %q{2010-
|
|
12
|
+
s.date = %q{2010-11-02}
|
|
13
13
|
s.default_executable = %q{blavoshost}
|
|
14
14
|
s.description = %q{A tool to add local vhosts ot apache/OSX}
|
|
15
15
|
s.email = %q{jerrod@indierockmedia.com}
|
|
@@ -47,9 +47,12 @@ Gem::Specification.new do |s|
|
|
|
47
47
|
s.specification_version = 3
|
|
48
48
|
|
|
49
49
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
50
|
+
s.add_runtime_dependency(%q<json>, [">= 0"])
|
|
50
51
|
else
|
|
52
|
+
s.add_dependency(%q<json>, [">= 0"])
|
|
51
53
|
end
|
|
52
54
|
else
|
|
55
|
+
s.add_dependency(%q<json>, [">= 0"])
|
|
53
56
|
end
|
|
54
57
|
end
|
|
55
58
|
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: blavoshost
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 29
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
9
|
+
- 5
|
|
10
|
+
version: 0.2.5
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Jerrod Blavos
|
|
@@ -15,10 +15,23 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-
|
|
18
|
+
date: 2010-11-02 00:00:00 -04:00
|
|
19
19
|
default_executable: blavoshost
|
|
20
|
-
dependencies:
|
|
21
|
-
|
|
20
|
+
dependencies:
|
|
21
|
+
- !ruby/object:Gem::Dependency
|
|
22
|
+
name: json
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 3
|
|
30
|
+
segments:
|
|
31
|
+
- 0
|
|
32
|
+
version: "0"
|
|
33
|
+
type: :runtime
|
|
34
|
+
version_requirements: *id001
|
|
22
35
|
description: A tool to add local vhosts ot apache/OSX
|
|
23
36
|
email: jerrod@indierockmedia.com
|
|
24
37
|
executables:
|