servloko 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.
data/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ .DS_STORE
2
+ servloko-*.gem
data/README.md CHANGED
@@ -2,6 +2,10 @@ servloko
2
2
  ========
3
3
  A simple way to take a ruby script and serve it up via an HTTP port.
4
4
 
5
+ install
6
+ =======
7
+ $> gem install servloko
8
+
5
9
  usage
6
10
  =====
7
11
  servloko <file> [thin opts (thin -h)]
@@ -1,3 +1,3 @@
1
1
  module Servloko
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
data/servloko.gemspec CHANGED
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
13
13
  s.description = %q{Servloko takes a ruby script and magically provides it's output to the web. Be careful though, you could expose system details.}
14
14
 
15
15
  s.rubyforge_project = "servloko"
16
- s.add_dependency "thin", "~> 1.3.0"
16
+ s.add_dependency "thin", "~> 1.4.0"
17
17
  s.add_development_dependency "rake", "~> 0.9.0"
18
18
 
19
19
  s.files = `git ls-files`.split("\n")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: servloko
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,22 +9,22 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-02-11 00:00:00.000000000 Z
12
+ date: 2012-07-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: thin
16
- requirement: &70331977298500 !ruby/object:Gem::Requirement
16
+ requirement: &70280601490440 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
20
20
  - !ruby/object:Gem::Version
21
- version: 1.3.0
21
+ version: 1.4.0
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70331977298500
24
+ version_requirements: *70280601490440
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: rake
27
- requirement: &70331977297780 !ruby/object:Gem::Requirement
27
+ requirement: &70280601489940 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ~>
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: 0.9.0
33
33
  type: :development
34
34
  prerelease: false
35
- version_requirements: *70331977297780
35
+ version_requirements: *70280601489940
36
36
  description: Servloko takes a ruby script and magically provides it's output to the
37
37
  web. Be careful though, you could expose system details.
38
38
  email:
@@ -42,6 +42,7 @@ executables:
42
42
  extensions: []
43
43
  extra_rdoc_files: []
44
44
  files:
45
+ - .gitignore
45
46
  - Gemfile
46
47
  - README.md
47
48
  - Rakefile