template_configurator 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- 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
data/.gitignore
ADDED
data/Gemfile
ADDED