servo 0.0.1 → 0.0.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.
Files changed (6) hide show
  1. data/README.md +9 -0
  2. data/Version +1 -0
  3. data/servo.gemspec +8 -3
  4. metadata +7 -7
  5. data/Rakefile +0 -13
  6. data/VERSION +0 -1
data/README.md ADDED
@@ -0,0 +1,9 @@
1
+ Servo
2
+ =
3
+
4
+ It's easy.
5
+
6
+ 1. `gem install servo`
7
+ 2. `servo ~/Path/to/directory` or just `servo` for current directory
8
+ 3. Open [http://localhost:9292/](http://localhost:9292/)
9
+ 4. Profit
data/Version ADDED
@@ -0,0 +1 @@
1
+ 0.0.2
data/servo.gemspec CHANGED
@@ -5,18 +5,23 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{servo}
8
- s.version = "0.0.1"
8
+ s.version = "0.0.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Flip Sasser"]
12
12
  s.date = %q{2011-02-14}
13
+ s.default_executable = %q{servo}
13
14
  s.description = %q{
14
15
  Servo makes it dead simple to serve up a static filesystem using Rack::Directory.
15
16
  }
16
17
  s.email = %q{flip@x451.com}
18
+ s.executables = ["servo"]
19
+ s.extra_rdoc_files = [
20
+ "README.md"
21
+ ]
17
22
  s.files = [
18
- "Rakefile",
19
- "VERSION",
23
+ "README.md",
24
+ "Version",
20
25
  "bin/servo",
21
26
  "servo.gemspec"
22
27
  ]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: servo
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 2
10
+ version: 0.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Flip Sasser
@@ -40,11 +40,11 @@ executables:
40
40
  - servo
41
41
  extensions: []
42
42
 
43
- extra_rdoc_files: []
44
-
43
+ extra_rdoc_files:
44
+ - README.md
45
45
  files:
46
- - Rakefile
47
- - VERSION
46
+ - README.md
47
+ - Version
48
48
  - bin/servo
49
49
  - servo.gemspec
50
50
  has_rdoc: true
data/Rakefile DELETED
@@ -1,13 +0,0 @@
1
- require "jeweler"
2
- Jeweler::Tasks.new do |gemspec|
3
- gemspec.name = "servo"
4
- gemspec.summary = "A command-line static file server"
5
- gemspec.files = Dir['**/*']
6
- gemspec.description = %{
7
- Servo makes it dead simple to serve up a static filesystem using Rack::Directory.
8
- }
9
- gemspec.email = "flip@x451.com"
10
- gemspec.homepage = "http://github.com/flipsasser/servo"
11
- gemspec.authors = ["Flip Sasser"]
12
- gemspec.add_dependency 'rack', '>= 1.2.1'
13
- end
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 0.0.1