erbside 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (67) hide show
  1. data/.gemspec +152 -0
  2. data/.gitignore +8 -0
  3. data/.ruby +48 -0
  4. data/.yardopts +6 -0
  5. data/{HISTORY → HISTORY.rdoc} +0 -0
  6. data/MANIFEST +33 -0
  7. data/NOTICE.rdoc +32 -0
  8. data/PROFILE +6 -3
  9. data/README.rdoc +76 -0
  10. data/VERSION +1 -1
  11. data/lib/erbside.rb +6 -2
  12. data/lib/erbside/context.rb +3 -3
  13. data/lib/erbside/gemspec.rb +19 -0
  14. data/lib/erbside/inline.rb +8 -5
  15. data/lib/erbside/inline/cpp.rb +7 -0
  16. data/lib/erbside/inline/css.rb +7 -0
  17. data/lib/erbside/inline/js.rb +7 -0
  18. data/lib/erbside/metadata.rb +86 -50
  19. data/lib/erbside/runner.rb +14 -5
  20. data/main.assembly +56 -0
  21. data/{test/functional → qed}/applique/env.rb +0 -0
  22. data/{test/functional → qed}/bash.rdoc +0 -0
  23. data/{test/functional → qed}/cli.rdoc +0 -0
  24. data/{test/functional → qed}/cpp.rdoc +0 -0
  25. data/{test/functional → qed}/css.rdoc +0 -0
  26. data/{test/functional → qed}/javascript.rdoc +0 -0
  27. data/{test/functional → qed}/ruby.rdoc +0 -0
  28. data/{test/functional → qed}/sgml.rdoc +0 -0
  29. data/site/.htaccess +2 -0
  30. data/site/.rsync-filter +7 -0
  31. data/site/assets/css/highlight.css +96 -0
  32. data/site/assets/css/reset.css +19 -0
  33. data/site/assets/css/site.css +52 -0
  34. data/site/assets/img/curb.jpg +0 -0
  35. data/site/assets/img/emeraled.png +0 -0
  36. data/site/assets/img/fade.png +0 -0
  37. data/site/assets/img/fork-me.png +0 -0
  38. data/site/assets/img/icon.jpg +0 -0
  39. data/site/assets/js/highlight.js +1 -0
  40. data/site/assets/js/jquery.js +19 -0
  41. data/site/assets/js/jquery.tabs.js +1 -0
  42. data/site/index.html +229 -0
  43. data/test/{unit/fixture → fixture}/inline.rb +3 -3
  44. data/test/{unit/fixture → fixture}/inline_complex.rb +0 -0
  45. data/test/inline_test.rb +15 -0
  46. data/work/defunct/css/color.css +45 -0
  47. data/work/defunct/css/font.css +39 -0
  48. data/work/defunct/css/struct.css +51 -0
  49. data/work/defunct/inline-old/bash.rb +36 -0
  50. data/work/defunct/inline-old/cpp.rb +39 -0
  51. data/work/defunct/inline-old/css.rb +32 -0
  52. data/work/defunct/inline-old/html.rb +32 -0
  53. data/work/defunct/inline-old/js.rb +85 -0
  54. data/work/defunct/inline-old/ruby.rb +147 -0
  55. data/work/defunct/inline-old/type.rb +91 -0
  56. data/work/defunct/inline.rb +202 -0
  57. data/work/defunct/plan.rb +37 -0
  58. data/work/defunct/tiller.rb +200 -0
  59. data/work/defunct/webme/options.yml +4 -0
  60. data/work/defunct/whole.rb +221 -0
  61. data/{lib → work}/plugins/syckle/erbside.rb +0 -0
  62. data/work/radio_earth.jpg +0 -0
  63. data/yard.watchr +12 -0
  64. metadata +94 -50
  65. data/LICENSE +0 -206
  66. data/README +0 -88
  67. data/test/unit/inline_test.rb +0 -14
File without changes
Binary file
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ watch /qed\/.*?\.rdoc/ do
4
+ File.open('DEMOS.rdoc', 'w') do |f|
5
+ f << "= <i>DEMONSTRATIONS</i>\n\n"
6
+ Dir['qed/*.rdoc'].sort.each do |qed_file|
7
+ f << File.read(qed_file)
8
+ f << "\n\n"
9
+ end
10
+ end
11
+ end
12
+
metadata CHANGED
@@ -1,13 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: erbside
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
5
- prerelease: false
6
- segments:
7
- - 0
8
- - 1
9
- - 0
10
- version: 0.1.0
4
+ prerelease:
5
+ version: 0.2.0
11
6
  platform: ruby
12
7
  authors:
13
8
  - Thomas Sawyer
@@ -15,8 +10,7 @@ autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
12
 
18
- date: 2011-02-21 00:00:00 -05:00
19
- default_executable:
13
+ date: 2011-08-22 00:00:00 Z
20
14
  dependencies:
21
15
  - !ruby/object:Gem::Dependency
22
16
  name: facets
@@ -26,60 +20,116 @@ dependencies:
26
20
  requirements:
27
21
  - - ">="
28
22
  - !ruby/object:Gem::Version
29
- hash: 3
30
- segments:
31
- - 0
32
23
  version: "0"
33
24
  type: :runtime
34
25
  version_requirements: *id001
26
+ - !ruby/object:Gem::Dependency
27
+ name: pom
28
+ prerelease: false
29
+ requirement: &id002 !ruby/object:Gem::Requirement
30
+ none: false
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: "0"
35
+ type: :runtime
36
+ version_requirements: *id002
37
+ - !ruby/object:Gem::Dependency
38
+ name: ko
39
+ prerelease: false
40
+ requirement: &id003 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: "0"
46
+ type: :development
47
+ version_requirements: *id003
35
48
  description: Erbside is a simple project-oriented erb-based inline template system. Inline templates make it easy to do basic code generation without the need for duplicate files.
36
- email: transfire@gmail.com
49
+ email:
50
+ - transfire@gmail.com
37
51
  executables:
38
52
  - erbside
39
53
  extensions: []
40
54
 
41
55
  extra_rdoc_files:
42
- - README
56
+ - HISTORY.rdoc
57
+ - README.rdoc
58
+ - NOTICE.rdoc
43
59
  files:
60
+ - .gemspec
61
+ - .gitignore
62
+ - .ruby
63
+ - .yardopts
64
+ - HISTORY.rdoc
65
+ - MANIFEST
66
+ - NOTICE.rdoc
67
+ - PROFILE
68
+ - README.rdoc
69
+ - VERSION
44
70
  - bin/erbside
71
+ - lib/erbside.rb
45
72
  - lib/erbside/context.rb
73
+ - lib/erbside/gemspec.rb
74
+ - lib/erbside/inline.rb
46
75
  - lib/erbside/inline/bash.rb
47
76
  - lib/erbside/inline/cpp.rb
48
77
  - lib/erbside/inline/css.rb
49
78
  - lib/erbside/inline/js.rb
50
79
  - lib/erbside/inline/ruby.rb
51
80
  - lib/erbside/inline/sgml.rb
52
- - lib/erbside/inline.rb
53
81
  - lib/erbside/metadata.rb
54
82
  - lib/erbside/runner.rb
55
- - lib/erbside.rb
56
- - lib/plugins/syckle/erbside.rb
57
- - test/functional/applique/env.rb
58
- - test/functional/bash.rdoc
59
- - test/functional/cli.rdoc
60
- - test/functional/cpp.rdoc
61
- - test/functional/css.rdoc
62
- - test/functional/javascript.rdoc
63
- - test/functional/ruby.rdoc
64
- - test/functional/sgml.rdoc
65
- - test/unit/fixture/inline.rb
66
- - test/unit/fixture/inline_complex.rb
67
- - test/unit/inline_test.rb
68
- - PROFILE
69
- - LICENSE
70
- - README
71
- - HISTORY
72
- - VERSION
73
- has_rdoc: true
83
+ - main.assembly
84
+ - qed/applique/env.rb
85
+ - qed/bash.rdoc
86
+ - qed/cli.rdoc
87
+ - qed/cpp.rdoc
88
+ - qed/css.rdoc
89
+ - qed/javascript.rdoc
90
+ - qed/ruby.rdoc
91
+ - qed/sgml.rdoc
92
+ - site/.htaccess
93
+ - site/.rsync-filter
94
+ - site/assets/css/highlight.css
95
+ - site/assets/css/reset.css
96
+ - site/assets/css/site.css
97
+ - site/assets/img/curb.jpg
98
+ - site/assets/img/emeraled.png
99
+ - site/assets/img/fade.png
100
+ - site/assets/img/fork-me.png
101
+ - site/assets/img/icon.jpg
102
+ - site/assets/js/highlight.js
103
+ - site/assets/js/jquery.js
104
+ - site/assets/js/jquery.tabs.js
105
+ - site/index.html
106
+ - test/fixture/inline.rb
107
+ - test/fixture/inline_complex.rb
108
+ - test/inline_test.rb
109
+ - work/defunct/css/color.css
110
+ - work/defunct/css/font.css
111
+ - work/defunct/css/struct.css
112
+ - work/defunct/inline-old/bash.rb
113
+ - work/defunct/inline-old/cpp.rb
114
+ - work/defunct/inline-old/css.rb
115
+ - work/defunct/inline-old/html.rb
116
+ - work/defunct/inline-old/js.rb
117
+ - work/defunct/inline-old/ruby.rb
118
+ - work/defunct/inline-old/type.rb
119
+ - work/defunct/inline.rb
120
+ - work/defunct/plan.rb
121
+ - work/defunct/tiller.rb
122
+ - work/defunct/webme/options.yml
123
+ - work/defunct/whole.rb
124
+ - work/plugins/syckle/erbside.rb
125
+ - work/radio_earth.jpg
126
+ - yard.watchr
74
127
  homepage: http://rubyworks.github.com/erbside
75
- licenses:
76
- - Apache 2.0
128
+ licenses: []
129
+
77
130
  post_install_message:
78
- rdoc_options:
79
- - --title
80
- - Erbside API
81
- - --main
82
- - README
131
+ rdoc_options: []
132
+
83
133
  require_paths:
84
134
  - lib
85
135
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -87,25 +137,19 @@ required_ruby_version: !ruby/object:Gem::Requirement
87
137
  requirements:
88
138
  - - ">="
89
139
  - !ruby/object:Gem::Version
90
- hash: 3
91
- segments:
92
- - 0
93
140
  version: "0"
94
141
  required_rubygems_version: !ruby/object:Gem::Requirement
95
142
  none: false
96
143
  requirements:
97
144
  - - ">="
98
145
  - !ruby/object:Gem::Version
99
- hash: 3
100
- segments:
101
- - 0
102
146
  version: "0"
103
147
  requirements: []
104
148
 
105
- rubyforge_project: erbside
106
- rubygems_version: 1.3.7
149
+ rubyforge_project:
150
+ rubygems_version: 1.8.2
107
151
  signing_key:
108
152
  specification_version: 3
109
153
  summary: ERB-based Inline Templating
110
154
  test_files:
111
- - test/unit/inline_test.rb
155
+ - test/inline_test.rb
data/LICENSE DELETED
@@ -1,206 +0,0 @@
1
- .
2
-
3
- Apache License
4
- Version 2.0, January 2004
5
- http://www.apache.org/licenses/
6
-
7
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
8
-
9
- 1. Definitions.
10
-
11
- "License" shall mean the terms and conditions for use, reproduction,
12
- and distribution as defined by Sections 1 through 9 of this document.
13
-
14
- "Licensor" shall mean the copyright owner or entity authorized by
15
- the copyright owner that is granting the License.
16
-
17
- "Legal Entity" shall mean the union of the acting entity and all
18
- other entities that control, are controlled by, or are under common
19
- control with that entity. For the purposes of this definition,
20
- "control" means (i) the power, direct or indirect, to cause the
21
- direction or management of such entity, whether by contract or
22
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
23
- outstanding shares, or (iii) beneficial ownership of such entity.
24
-
25
- "You" (or "Your") shall mean an individual or Legal Entity
26
- exercising permissions granted by this License.
27
-
28
- "Source" form shall mean the preferred form for making modifications,
29
- including but not limited to software source code, documentation
30
- source, and configuration files.
31
-
32
- "Object" form shall mean any form resulting from mechanical
33
- transformation or translation of a Source form, including but
34
- not limited to compiled object code, generated documentation,
35
- and conversions to other media types.
36
-
37
- "Work" shall mean the work of authorship, whether in Source or
38
- Object form, made available under the License, as indicated by a
39
- copyright notice that is included in or attached to the work
40
- (an example is provided in the Appendix below).
41
-
42
- "Derivative Works" shall mean any work, whether in Source or Object
43
- form, that is based on (or derived from) the Work and for which the
44
- editorial revisions, annotations, elaborations, or other modifications
45
- represent, as a whole, an original work of authorship. For the purposes
46
- of this License, Derivative Works shall not include works that remain
47
- separable from, or merely link (or bind by name) to the interfaces of,
48
- the Work and Derivative Works thereof.
49
-
50
- "Contribution" shall mean any work of authorship, including
51
- the original version of the Work and any modifications or additions
52
- to that Work or Derivative Works thereof, that is intentionally
53
- submitted to Licensor for inclusion in the Work by the copyright owner
54
- or by an individual or Legal Entity authorized to submit on behalf of
55
- the copyright owner. For the purposes of this definition, "submitted"
56
- means any form of electronic, verbal, or written communication sent
57
- to the Licensor or its representatives, including but not limited to
58
- communication on electronic mailing lists, source code control systems,
59
- and issue tracking systems that are managed by, or on behalf of, the
60
- Licensor for the purpose of discussing and improving the Work, but
61
- excluding communication that is conspicuously marked or otherwise
62
- designated in writing by the copyright owner as "Not a Contribution."
63
-
64
- "Contributor" shall mean Licensor and any individual or Legal Entity
65
- on behalf of whom a Contribution has been received by Licensor and
66
- subsequently incorporated within the Work.
67
-
68
- 2. Grant of Copyright License. Subject to the terms and conditions of
69
- this License, each Contributor hereby grants to You a perpetual,
70
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
71
- copyright license to reproduce, prepare Derivative Works of,
72
- publicly display, publicly perform, sublicense, and distribute the
73
- Work and such Derivative Works in Source or Object form.
74
-
75
- 3. Grant of Patent License. Subject to the terms and conditions of
76
- this License, each Contributor hereby grants to You a perpetual,
77
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
78
- (except as stated in this section) patent license to make, have made,
79
- use, offer to sell, sell, import, and otherwise transfer the Work,
80
- where such license applies only to those patent claims licensable
81
- by such Contributor that are necessarily infringed by their
82
- Contribution(s) alone or by combination of their Contribution(s)
83
- with the Work to which such Contribution(s) was submitted. If You
84
- institute patent litigation against any entity (including a
85
- cross-claim or counterclaim in a lawsuit) alleging that the Work
86
- or a Contribution incorporated within the Work constitutes direct
87
- or contributory patent infringement, then any patent licenses
88
- granted to You under this License for that Work shall terminate
89
- as of the date such litigation is filed.
90
-
91
- 4. Redistribution. You may reproduce and distribute copies of the
92
- Work or Derivative Works thereof in any medium, with or without
93
- modifications, and in Source or Object form, provided that You
94
- meet the following conditions:
95
-
96
- (a) You must give any other recipients of the Work or
97
- Derivative Works a copy of this License; and
98
-
99
- (b) You must cause any modified files to carry prominent notices
100
- stating that You changed the files; and
101
-
102
- (c) You must retain, in the Source form of any Derivative Works
103
- that You distribute, all copyright, patent, trademark, and
104
- attribution notices from the Source form of the Work,
105
- excluding those notices that do not pertain to any part of
106
- the Derivative Works; and
107
-
108
- (d) If the Work includes a "NOTICE" text file as part of its
109
- distribution, then any Derivative Works that You distribute must
110
- include a readable copy of the attribution notices contained
111
- within such NOTICE file, excluding those notices that do not
112
- pertain to any part of the Derivative Works, in at least one
113
- of the following places: within a NOTICE text file distributed
114
- as part of the Derivative Works; within the Source form or
115
- documentation, if provided along with the Derivative Works; or,
116
- within a display generated by the Derivative Works, if and
117
- wherever such third-party notices normally appear. The contents
118
- of the NOTICE file are for informational purposes only and
119
- do not modify the License. You may add Your own attribution
120
- notices within Derivative Works that You distribute, alongside
121
- or as an addendum to the NOTICE text from the Work, provided
122
- that such additional attribution notices cannot be construed
123
- as modifying the License.
124
-
125
- You may add Your own copyright statement to Your modifications and
126
- may provide additional or different license terms and conditions
127
- for use, reproduction, or distribution of Your modifications, or
128
- for any such Derivative Works as a whole, provided Your use,
129
- reproduction, and distribution of the Work otherwise complies with
130
- the conditions stated in this License.
131
-
132
- 5. Submission of Contributions. Unless You explicitly state otherwise,
133
- any Contribution intentionally submitted for inclusion in the Work
134
- by You to the Licensor shall be under the terms and conditions of
135
- this License, without any additional terms or conditions.
136
- Notwithstanding the above, nothing herein shall supersede or modify
137
- the terms of any separate license agreement you may have executed
138
- with Licensor regarding such Contributions.
139
-
140
- 6. Trademarks. This License does not grant permission to use the trade
141
- names, trademarks, service marks, or product names of the Licensor,
142
- except as required for reasonable and customary use in describing the
143
- origin of the Work and reproducing the content of the NOTICE file.
144
-
145
- 7. Disclaimer of Warranty. Unless required by applicable law or
146
- agreed to in writing, Licensor provides the Work (and each
147
- Contributor provides its Contributions) on an "AS IS" BASIS,
148
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
149
- implied, including, without limitation, any warranties or conditions
150
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
151
- PARTICULAR PURPOSE. You are solely responsible for determining the
152
- appropriateness of using or redistributing the Work and assume any
153
- risks associated with Your exercise of permissions under this License.
154
-
155
- 8. Limitation of Liability. In no event and under no legal theory,
156
- whether in tort (including negligence), contract, or otherwise,
157
- unless required by applicable law (such as deliberate and grossly
158
- negligent acts) or agreed to in writing, shall any Contributor be
159
- liable to You for damages, including any direct, indirect, special,
160
- incidental, or consequential damages of any character arising as a
161
- result of this License or out of the use or inability to use the
162
- Work (including but not limited to damages for loss of goodwill,
163
- work stoppage, computer failure or malfunction, or any and all
164
- other commercial damages or losses), even if such Contributor
165
- has been advised of the possibility of such damages.
166
-
167
- 9. Accepting Warranty or Additional Liability. While redistributing
168
- the Work or Derivative Works thereof, You may choose to offer,
169
- and charge a fee for, acceptance of support, warranty, indemnity,
170
- or other liability obligations and/or rights consistent with this
171
- License. However, in accepting such obligations, You may act only
172
- on Your own behalf and on Your sole responsibility, not on behalf
173
- of any other Contributor, and only if You agree to indemnify,
174
- defend, and hold each Contributor harmless for any liability
175
- incurred by, or claims asserted against, such Contributor by reason
176
- of your accepting any such warranty or additional liability.
177
-
178
- END OF TERMS AND CONDITIONS
179
-
180
- APPENDIX: How to apply the Apache License to your work.
181
-
182
- To apply the Apache License to your work, attach the following
183
- boilerplate notice, with the fields enclosed by brackets "[]"
184
- replaced with your own identifying information. (Don't include
185
- the brackets!) The text should be enclosed in the appropriate
186
- comment syntax for the file format. We also recommend that a
187
- file or class name and description of purpose be included on the
188
- same "printed page" as the copyright notice for easier
189
- identification within third-party archives.
190
-
191
- Copyright [yyyy] [name of copyright owner]
192
-
193
- Licensed under the Apache License, Version 2.0 (the "License");
194
- you may not use this file except in compliance with the License.
195
- You may obtain a copy of the License at
196
-
197
- http://www.apache.org/licenses/LICENSE-2.0
198
-
199
- Unless required by applicable law or agreed to in writing, software
200
- distributed under the License is distributed on an "AS IS" BASIS,
201
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
202
- See the License for the specific language governing permissions and
203
- limitations under the License.
204
-
205
- .
206
-
data/README DELETED
@@ -1,88 +0,0 @@
1
- = Erbside
2
-
3
- == DESCRIPTION
4
-
5
- Erbside is a simple inline project-oriented ERB-based template system.
6
- With Erbside it is very easy to do basic templating without the need
7
- for file duplication.
8
-
9
- Erbside also provides access to POM metadata, if present.
10
-
11
-
12
- == FEATURES
13
-
14
- * Easy to use.
15
- * Used eRuby. Easy.
16
- * Uses POM metadata. Easy.
17
- * Templates go where the file goes. Easy.
18
- * Did I mention it was easy?
19
-
20
-
21
- == RESOURCES
22
-
23
- * home: http://rubyworks.github.com/erbsie
24
- * docs: http://rubyworks.github.com/erbside/doc/api
25
- * code: http://github.com/rubyworks/erbsie
26
- * talk: http://googlegroups.com/group/rubyworks
27
-
28
-
29
- == SYNOPSIS
30
-
31
- Create an template file, such as README.erb.
32
-
33
- In a Ruby script add a erb comment.
34
-
35
- module YourLibrary
36
- VERSION = "1.0.0" #:erb: VERSION="<%= version %>"
37
- end
38
-
39
- Then run:
40
-
41
- $ erb
42
-
43
- All .erb files and all #:erb: inline templates will
44
- be filled in.
45
-
46
-
47
- == HOW TO INSTALL
48
-
49
- Describe your installation procedure here.
50
-
51
- To install with RubyGems simply open a console and type:
52
-
53
- $ gem install erb
54
-
55
- Local installation requires Setup.rb (gem install setup),
56
- then download the tarball package and type:
57
-
58
- $ tar -xvzf erb-1.0.0.tgz
59
- $ cd erb-1.0.0.tgz
60
- $ sudo setup.rb all
61
-
62
- Windows users use 'ruby setup.rb all'.
63
-
64
-
65
- == LIMITATIONS
66
-
67
- Multiline inline ruby templating is not yet supported.
68
- Would love to implement but need idea on how best to do it.
69
-
70
- Also, currently the POM library is not used for accessing meta/
71
- files. This will change once POM properly supports arbitrary metadata.
72
-
73
-
74
- == COPYRIGHT & LICENSE
75
-
76
- Copyright (c) 2009 Thomas Sawyer
77
-
78
- Licensed under the Apache License, Version 2.0 (the "License");
79
- you may not use the Erbside source code except in compliance with the
80
- License. You may obtain a copy of the License at
81
-
82
- http://www.apache.org/licenses/LICENSE-2.0
83
-
84
- Unless required by applicable law or agreed to in writing, software
85
- distributed under the License is distributed on an "AS IS" BASIS,
86
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
87
- See the License for the specific language governing permissions and
88
- limitations under the License.