template_configurator 1.0.0
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/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE +674 -0
- data/README.md +60 -0
- data/Rakefile +2 -0
- data/bin/template_configurator +31 -0
- data/lib/template_configurator/command_line.rb +191 -0
- data/lib/template_configurator/processor.rb +108 -0
- data/lib/template_configurator/service.rb +115 -0
- data/lib/template_configurator/version.rb +24 -0
- data/lib/template_configurator.rb +37 -0
- data/template_configurator.gemspec +18 -0
- data/test/test.cfg +2 -0
- data/test/test.cfg.erb +2 -0
- data/test/test.js +1 -0
- metadata +92 -0
metadata
ADDED
@@ -0,0 +1,92 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: template_configurator
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 1
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
version: 1.0.0
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Erik Osterman
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2012-08-04 00:00:00 -07:00
|
18
|
+
default_executable:
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: json
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
segments:
|
28
|
+
- 1
|
29
|
+
- 4
|
30
|
+
- 3
|
31
|
+
version: 1.4.3
|
32
|
+
type: :runtime
|
33
|
+
version_requirements: *id001
|
34
|
+
description: Template Configurator is a utility to write configuration files from ERB templates. When the file's content changes, it can then call an init script to intelligently reload the configuration. Through out the entire process exclusive file locks are used on the output file and json file to help ensure they are unmanipulated during the transformation process.
|
35
|
+
email:
|
36
|
+
- e@osterman.com
|
37
|
+
executables:
|
38
|
+
- template_configurator
|
39
|
+
extensions: []
|
40
|
+
|
41
|
+
extra_rdoc_files: []
|
42
|
+
|
43
|
+
files:
|
44
|
+
- .gitignore
|
45
|
+
- Gemfile
|
46
|
+
- LICENSE
|
47
|
+
- README.md
|
48
|
+
- Rakefile
|
49
|
+
- bin/template_configurator
|
50
|
+
- lib/template_configurator.rb
|
51
|
+
- lib/template_configurator/command_line.rb
|
52
|
+
- lib/template_configurator/processor.rb
|
53
|
+
- lib/template_configurator/service.rb
|
54
|
+
- lib/template_configurator/version.rb
|
55
|
+
- template_configurator.gemspec
|
56
|
+
- test/test.cfg
|
57
|
+
- test/test.cfg.erb
|
58
|
+
- test/test.js
|
59
|
+
has_rdoc: true
|
60
|
+
homepage: https://github.com/osterman/template_configurator
|
61
|
+
licenses: []
|
62
|
+
|
63
|
+
post_install_message:
|
64
|
+
rdoc_options: []
|
65
|
+
|
66
|
+
require_paths:
|
67
|
+
- lib
|
68
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
69
|
+
requirements:
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
segments:
|
73
|
+
- 0
|
74
|
+
version: "0"
|
75
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
76
|
+
requirements:
|
77
|
+
- - ">="
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
segments:
|
80
|
+
- 0
|
81
|
+
version: "0"
|
82
|
+
requirements: []
|
83
|
+
|
84
|
+
rubyforge_project:
|
85
|
+
rubygems_version: 1.3.6
|
86
|
+
signing_key:
|
87
|
+
specification_version: 3
|
88
|
+
summary: Template Configurator is a utility to write configuration files from ERB templates.
|
89
|
+
test_files:
|
90
|
+
- test/test.cfg
|
91
|
+
- test/test.cfg.erb
|
92
|
+
- test/test.js
|