remi-rack-staticifier 0.1.3 → 0.1.4
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/Rakefile +2 -2
- data/VERSION.yml +1 -1
- data/bin/staticify +5 -0
- metadata +15 -6
data/Rakefile
CHANGED
@@ -15,8 +15,8 @@ begin
|
|
15
15
|
s.description = ''
|
16
16
|
s.authors = %w( remi )
|
17
17
|
s.files = FileList['[A-Z]*', '{lib,spec,bin,examples}/**/*']
|
18
|
-
|
19
|
-
|
18
|
+
s.add_dependency 'remi-rackbox'
|
19
|
+
s.executables << 'staticify'
|
20
20
|
# s.rubyforge_project = 'gemname'
|
21
21
|
# s.extra_rdoc_files = %w( README.rdoc )
|
22
22
|
end
|
data/VERSION.yml
CHANGED
data/bin/staticify
CHANGED
@@ -20,6 +20,11 @@ def usage
|
|
20
20
|
staticify # print this usage information
|
21
21
|
staticify . # staticify Rack app in current directory
|
22
22
|
|
23
|
+
Options:
|
24
|
+
-d, --dir some/directory # directory to save files to
|
25
|
+
-a, --app "MyApp.new" # ruby to eval to get Rack app
|
26
|
+
-r, --require file[.rb] # ruby file(s) to require
|
27
|
+
|
23
28
|
USAGE
|
24
29
|
end
|
25
30
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: remi-rack-staticifier
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- remi
|
@@ -10,13 +10,22 @@ bindir: bin
|
|
10
10
|
cert_chain: []
|
11
11
|
|
12
12
|
date: 2009-05-07 00:00:00 -07:00
|
13
|
-
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
13
|
+
default_executable: staticify
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: remi-rackbox
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
16
25
|
description: ""
|
17
26
|
email: remi@remitaylor.com
|
18
|
-
executables:
|
19
|
-
|
27
|
+
executables:
|
28
|
+
- staticify
|
20
29
|
extensions: []
|
21
30
|
|
22
31
|
extra_rdoc_files: []
|