wlang 2.3.1 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,51 +0,0 @@
1
- # Installs a rake task to generate API documentation using yard.
2
- #
3
- # This file installs the 'rake yard' task. It is automatically generated by Noe from
4
- # your .noespec file, and should therefore be configured there, under the
5
- # variables/rake_tasks/yard entry, as illustrated below:
6
- #
7
- # variables:
8
- # rake_tasks:
9
- # yard:
10
- # files: lib/**/*.rb
11
- # options: []
12
- # ...
13
- #
14
- # If you have specific needs requiring manual intervention on this file,
15
- # don't forget to set safe-override to false in your noe specification:
16
- #
17
- # template-info:
18
- # manifest:
19
- # tasks/yard.rake:
20
- # safe-override: false
21
- #
22
- # This file has been written to conform to yard v0.6.4. More information about
23
- # yard and the rake task installed below can be found on http://yardoc.org/
24
- #
25
- begin
26
- require "yard"
27
- desc "Generate yard documentation"
28
- YARD::Rake::YardocTask.new(:yard) do |t|
29
- # Array of options passed to yardoc commandline. See 'yardoc --help' about this
30
- t.options = ["--output-dir", "doc/api", "-", "README.md", "CHANGELOG.md", "LICENCE.md"]
31
-
32
- # Array of ruby source files (and any extra documentation files
33
- # separated by '-')
34
- t.files = ["lib/**/*.rb"]
35
-
36
- # A proc to call before running the task
37
- # t.before = proc{ }
38
-
39
- # A proc to call after running the task
40
- # r.after = proc{ }
41
-
42
- # An optional lambda to run against all objects being generated.
43
- # Any object that the lambda returns false for will be excluded
44
- # from documentation.
45
- # t.verifier = lambda{|obj| true}
46
- end
47
- rescue LoadError
48
- task :yard do
49
- abort 'yard is not available. In order to run yard, you must: gem install yard'
50
- end
51
- end
@@ -1,45 +0,0 @@
1
- template-info:
2
- name: "rubygem.noe"
3
- version: 2.0.0
4
- links:
5
- source: https://github.com/blambeau/noe
6
- manifest:
7
- lib/__lower__/loader.rb:
8
- safe-override: false
9
- variables:
10
- lower:
11
- wlang
12
- upper:
13
- WLang
14
- version:
15
- 2.3.1
16
- summary: |-
17
- WLang is a powerful code generation and templating engine
18
- description: |-
19
- WLang is a general-purpose *code generation*/*templating engine*. It's main aim is to
20
- help you generating web pages, sql queries, ruby code (that is, generating text in
21
- general) without having to worry too much about html entities encoding, sql back
22
- quoting, string escaping and the like. WLang proposes a generic engine that you can
23
- easily extend to fit your needs. It also proposes standard instantiations of this
24
- engine for common tasks such as rendering HTML web pages.
25
- authors:
26
- - {name: Bernard Lambeau, email: blambeau@gmail.com}
27
- - {name: Louis Lambeau, email: llambeau@gmail.com}
28
- links:
29
- - http://github.com/blambeau/wlang
30
- - http://rubygems.org/gems/wlang
31
- - http://blambeau.github.com/wlang
32
- - http://revision-zero.org/wlang
33
- dependencies:
34
- - {name: citrus, version: "~> 3.0", groups: [runtime]}
35
- - {name: temple, version: "~> 0.6", groups: [runtime]}
36
- - {name: quickl, version: "~> 0.4.3", groups: [runtime]}
37
- - {name: path, version: "~> 1.3", groups: [runtime]}
38
- - {name: backports, version: "~> 2.6", groups: [runtime]}
39
- - {name: awesome_print, version: "~> 1.0.2", groups: [extra]}
40
- - {name: tilt, version: "~> 1.3", groups: [development]}
41
- - {name: rake, version: "~> 0.9.2", groups: [development]}
42
- - {name: bundler, version: "~> 1.0", groups: [development]}
43
- - {name: rspec, version: "~> 2.10.0", groups: [development]}
44
- - {name: sinatra, version: ">= 1.4", groups: [development]}
45
- - {name: rack-test, version: "~> 0.6", groups: [development]}