sssmoke 1.0.0 → 1.0.1
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/README.md +5 -8
- data/lib/sssmoke/version.rb +1 -1
- data/sssmoke.gemspec +1 -1
- metadata +2 -2
data/README.md
CHANGED
@@ -8,18 +8,15 @@ Slap Ruby scripts on a web server in seconds.
|
|
8
8
|
|
9
9
|
## Usage
|
10
10
|
|
11
|
-
|
11
|
+
Put your erb templates in a directory, then run them in a web server by typing:
|
12
12
|
|
13
13
|
sssmoke
|
14
14
|
|
15
|
-
|
15
|
+
A template named `foo.erb` will get the URL `http://localhost:8888/foo`.
|
16
16
|
|
17
17
|
## Pro Usage for Powah Usahs
|
18
18
|
|
19
|
-
|
19
|
+
sssmoke directory_name # sssmoke templates from another directory
|
20
|
+
sssmoke template_name.erb # sssmoke a single template at http://localhost:8888/
|
20
21
|
|
21
|
-
|
22
|
-
|
23
|
-
To smoke a single erb template at _http://localhost:8888_:
|
24
|
-
|
25
|
-
sssmoke <file name>
|
22
|
+
That's all. (As to the reason why it's called "Sssmoke"- that story would be better told in person.)
|
data/lib/sssmoke/version.rb
CHANGED
data/sssmoke.gemspec
CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |gem|
|
|
8
8
|
gem.version = Sssmoke::VERSION
|
9
9
|
gem.authors = ["Paolo \"Nusco\" Perrotta"]
|
10
10
|
gem.email = ["paolo.nusco.perrotta@gmail.com"]
|
11
|
-
gem.description = %q{Slap
|
11
|
+
gem.description = %q{Slap Ruby scripts on a web server in seconds.}
|
12
12
|
gem.summary = %q{Put erb templates in a folder and run them in a server with the 'sssmoke' command.}
|
13
13
|
gem.homepage = "https://github.com/nusco/sssmoke"
|
14
14
|
gem.files = `git ls-files`.split($/)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sssmoke
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -59,7 +59,7 @@ dependencies:
|
|
59
59
|
- - ! '>='
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '0'
|
62
|
-
description: Slap
|
62
|
+
description: Slap Ruby scripts on a web server in seconds.
|
63
63
|
email:
|
64
64
|
- paolo.nusco.perrotta@gmail.com
|
65
65
|
executables:
|