backpack 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/AUTHORS +1 -0
- data/COPYING +340 -0
- data/README +11 -0
- data/bin/backpack +55 -0
- data/lib/backpack.rb +103 -0
- data/lib/template/INSTALL.rb +5 -0
- data/lib/template/LICENCE.rb +21 -0
- data/lib/template/README.rb +26 -0
- data/lib/template/generators/plugin_begin.rb +8 -0
- data/lib/template/generators/plugin_end.rb +2 -0
- data/lib/template/generators/plugin_generator.rb +32 -0
- data/lib/template/generators/template/template_controller.rb +17 -0
- data/lib/template/generators/template/template_view.rb +12 -0
- data/lib/template/init.rb +2 -0
- data/lib/template/init_controller.rb +3 -0
- data/lib/template/init_view.rb +3 -0
- data/lib/template/lib/plugin/controller_helpers.rb +5 -0
- data/lib/template/lib/plugin/view_helpers.rb +5 -0
- data/lib/template/tasks/tasks.rb +27 -0
- data/setup.rb +1585 -0
- metadata +98 -0
metadata
ADDED
@@ -0,0 +1,98 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: backpack
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- "Gr\xC3\xA9goire Lejeune"
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2008-04-10 00:00:00 +02:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: bivouac
|
17
|
+
version_requirement:
|
18
|
+
version_requirements: !ruby/object:Gem::Requirement
|
19
|
+
requirements:
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 0.2.2
|
23
|
+
version:
|
24
|
+
description: A plugin generator for Bivouac
|
25
|
+
email: gregoire.lejeune@free.fr
|
26
|
+
executables:
|
27
|
+
- backpack
|
28
|
+
extensions: []
|
29
|
+
|
30
|
+
extra_rdoc_files:
|
31
|
+
- README
|
32
|
+
- AUTHORS
|
33
|
+
- COPYING
|
34
|
+
files:
|
35
|
+
- COPYING
|
36
|
+
- README
|
37
|
+
- AUTHORS
|
38
|
+
- setup.rb
|
39
|
+
- bin/backpack
|
40
|
+
- lib/backpack.rb
|
41
|
+
- lib/template
|
42
|
+
- lib/template/generators
|
43
|
+
- lib/template/generators/plugin_begin.rb
|
44
|
+
- lib/template/generators/plugin_end.rb
|
45
|
+
- lib/template/generators/plugin_generator.rb
|
46
|
+
- lib/template/generators/template
|
47
|
+
- lib/template/generators/template/template_controller.rb
|
48
|
+
- lib/template/generators/template/template_view.rb
|
49
|
+
- lib/template/init.rb
|
50
|
+
- lib/template/init_controller.rb
|
51
|
+
- lib/template/init_view.rb
|
52
|
+
- lib/template/INSTALL.rb
|
53
|
+
- lib/template/lib
|
54
|
+
- lib/template/lib/plugin
|
55
|
+
- lib/template/lib/plugin/controller_helpers.rb
|
56
|
+
- lib/template/lib/plugin/view_helpers.rb
|
57
|
+
- lib/template/LICENCE.rb
|
58
|
+
- lib/template/README.rb
|
59
|
+
- lib/template/tasks
|
60
|
+
- lib/template/tasks/tasks.rb
|
61
|
+
has_rdoc: true
|
62
|
+
homepage: http://greg.rubyfr.net
|
63
|
+
post_install_message:
|
64
|
+
rdoc_options:
|
65
|
+
- --quiet
|
66
|
+
- --title
|
67
|
+
- Bivouac, the Documentation
|
68
|
+
- --opname
|
69
|
+
- index.html
|
70
|
+
- --line-numbers
|
71
|
+
- --main
|
72
|
+
- README
|
73
|
+
- --inline-source
|
74
|
+
- --exclude
|
75
|
+
- ^(extras|lib)\/
|
76
|
+
require_paths:
|
77
|
+
- lib
|
78
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 1.8.1
|
83
|
+
version:
|
84
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: "0"
|
89
|
+
version:
|
90
|
+
requirements: []
|
91
|
+
|
92
|
+
rubyforge_project: bivouac
|
93
|
+
rubygems_version: 1.1.0
|
94
|
+
signing_key:
|
95
|
+
specification_version: 2
|
96
|
+
summary: A plugin generator for Bivouac
|
97
|
+
test_files: []
|
98
|
+
|