funkenplate 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/README.textile +25 -9
- data/bin/funkenplate +13 -0
- metadata +5 -4
data/README.textile
CHANGED
|
@@ -1,11 +1,31 @@
|
|
|
1
|
-
|
|
1
|
+
h3. What is it?
|
|
2
2
|
|
|
3
|
-
A
|
|
3
|
+
A Rails 3 template for funkensturm. applications.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
h3. Requirements
|
|
6
6
|
|
|
7
|
-
* Ruby >= 1.8.7
|
|
8
|
-
* Rails >= 3.0.0
|
|
7
|
+
* Ruby >= @1.8.7@
|
|
8
|
+
* Rails >= @3.0.0@
|
|
9
|
+
|
|
10
|
+
h3. Installation
|
|
11
|
+
|
|
12
|
+
<pre>
|
|
13
|
+
gem install funkenplate
|
|
14
|
+
</pre>
|
|
15
|
+
|
|
16
|
+
h3. Online Usage
|
|
17
|
+
|
|
18
|
+
<pre>
|
|
19
|
+
rails myapp --template http://github.com/funkensturm/funkenplate/raw/master/funkenplate.rb
|
|
20
|
+
</pre>
|
|
21
|
+
|
|
22
|
+
h3. Offline Usage
|
|
23
|
+
|
|
24
|
+
Just hit this into your console and you will get the path to your local funkenplate template:
|
|
25
|
+
|
|
26
|
+
<pre>
|
|
27
|
+
funkenplate
|
|
28
|
+
</pre>
|
|
9
29
|
|
|
10
30
|
h3. Design guidelines
|
|
11
31
|
|
|
@@ -15,7 +35,3 @@ h3. Assumptions
|
|
|
15
35
|
|
|
16
36
|
* The application is deployed to @/u/apps/APP@ where @APP@ stands for the name of the application you just created using funkenplate. If you need to change this, it is _safe_ to modify @deploy.rb@ afterwards without breaking any dependencies.
|
|
17
37
|
|
|
18
|
-
h3. Usage
|
|
19
|
-
|
|
20
|
-
rails myapp --template http://github.com/funkensturm/funkenplate/raw/master/funkenplate.rb
|
|
21
|
-
|
data/bin/funkenplate
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require 'rubygems'
|
|
4
|
+
|
|
5
|
+
puts
|
|
6
|
+
puts "FUNKENPLATE"
|
|
7
|
+
puts
|
|
8
|
+
puts "Online Usage:"
|
|
9
|
+
puts "rails myapp --template http://github.com/funkensturm/funkenplate/raw/master/funkenplate.rb"
|
|
10
|
+
puts
|
|
11
|
+
puts "Offline Usage:"
|
|
12
|
+
puts "rails myapp --template #{Gem.source_index.find_name('funkenplate').last.full_gem_path}/funkenplate.rb"
|
|
13
|
+
puts
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 0.0.
|
|
8
|
+
- 2
|
|
9
|
+
version: 0.0.2
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Captain Future
|
|
@@ -20,8 +20,8 @@ dependencies: []
|
|
|
20
20
|
|
|
21
21
|
description: " funkenplate is a Rails Template according to the funkensturm. standards.\n"
|
|
22
22
|
email:
|
|
23
|
-
executables:
|
|
24
|
-
|
|
23
|
+
executables:
|
|
24
|
+
- funkenplate
|
|
25
25
|
extensions: []
|
|
26
26
|
|
|
27
27
|
extra_rdoc_files:
|
|
@@ -52,6 +52,7 @@ files:
|
|
|
52
52
|
- templates/lib/restful.rb
|
|
53
53
|
- templates/tmproj
|
|
54
54
|
- lib/dummy
|
|
55
|
+
- bin/funkenplate
|
|
55
56
|
has_rdoc: true
|
|
56
57
|
homepage: http://github.com/funkensturm/funkenplate
|
|
57
58
|
licenses: []
|