configtemplate 0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 3cbfa7e9144223ff4fbe3d06306d4ceb7218d749
4
+ data.tar.gz: ed23f383ccf0e505c635bb2bf89a5071aad1dd1a
5
+ SHA512:
6
+ metadata.gz: 4c4674de0a2991bb98acc40bba165ea569dd48dc704fc25827d15ab29884361a081091a13d22a0d6ab3fe9f562703c72a557e7b2c537740751dc34c8365fa803
7
+ data.tar.gz: ad6aa7021e393bdb5e021ac7c87b5845327b244d73d0bc6bb349bb77db693ac0b28bb8bd33a0c7489202d5f4746585e02cdc7a29b225f470ce1da5b32b639a06
data/.gitignore ADDED
@@ -0,0 +1,24 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ *~
23
+ *.swp
24
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://ehdevapp01:9292"
2
+
3
+ # Specify your gem's dependencies in configtemplate.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Richard Cottrill
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Configtemplate
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'configtemplate'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install configtemplate
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( https://github.com/[my-github-username]/configtemplate/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,21 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
3
+ require 'rake/testtask'
4
+ require_relative 'lib/configtemplate/version'
5
+
6
+ Rake::TestTask.new do |t|
7
+ t.libs << 'lib/configtemplate'
8
+ t.test_files = FileList['test/lib/configtemplate/*_test.rb']
9
+ t.verbose = true
10
+ end
11
+
12
+ task :default => :test
13
+
14
+ task :build => :test do
15
+ system "gem build configtemplate.gemspec"
16
+ end
17
+
18
+ task :release => :build do
19
+ system "gem inabox configtemplate-#{Configtemplate::VERSION}.gem -g http://ehdevapp01:9292/"
20
+ end
21
+
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'configtemplate/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "configtemplate"
8
+ spec.version = Configtemplate::VERSION
9
+ spec.authors = ["Richard Cottrill"]
10
+ spec.email = ["richard.cottrill@rxpservices.com.au"]
11
+ spec.summary = %q{Apply configuration changes across templates}
12
+ spec.description = %q{Contains classes and methods to apply a single configuration file to configured templates usgin ERB. Configuration is stored as a YAML file, and may have default values, as well as environment specific overrides, and embedded ERB/macros.}
13
+ spec.homepage = ""
14
+ spec.license = ""
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.6"
22
+ spec.add_development_dependency "rake", "~> 0"
23
+ end
@@ -0,0 +1,51 @@
1
+ require 'yaml'
2
+ require 'erb'
3
+ require_relative "configtemplate/version"
4
+
5
+ module Configtemplate
6
+
7
+ class ::Struct
8
+ def get_binding
9
+ binding
10
+ end
11
+ end
12
+
13
+ class ConfigTemplate
14
+ def initialize(configfile, environment)
15
+ conf = YAML.load_file configfile
16
+ raise "No such environment: #{environment}" if not conf.has_key? environment
17
+ env = conf[environment]
18
+ if conf.has_key? 'default'
19
+ env = conf['default'].merge env
20
+ end
21
+ env['environment_name'] = environment
22
+ @binding = make_binding env
23
+ end
24
+
25
+ def convert_file(infile, outfile)
26
+ e = ERB.new File.open(infile).read
27
+ File.open(outfile, 'w') { |f|
28
+ f.write e.result(@binding)
29
+ }
30
+ end
31
+
32
+ def get(name)
33
+ eval name.to_s, @binding
34
+ end
35
+
36
+ def method_missing(name, *args, &block)
37
+ get name
38
+ end
39
+
40
+ private
41
+ def make_binding(env)
42
+ #puts env
43
+ klass = ::Struct.new( *env.keys.map { |k| k.intern } )
44
+ #klass = Struct
45
+ k = klass.new *env.values
46
+ # support up to 5 levels of embedding
47
+ 5.times { k = klass.new *env.values.map { |v| ERB.new(v.to_s).result(k.get_binding) } }
48
+ k.get_binding
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,3 @@
1
+ module Configtemplate
2
+ VERSION = "0.1"
3
+ end
@@ -0,0 +1,11 @@
1
+ default:
2
+ username: myuser
3
+ password: mypass
4
+ hostname: localhost
5
+ rootpath: /root/path
6
+ myfiles: <%= rootpath %>/files
7
+
8
+ localmachine:
9
+ hostname: someserver
10
+ rootpath: /home/bmuller
11
+ date: <%= Date.today.to_s %>
@@ -0,0 +1,9 @@
1
+ <xml>
2
+ <date><%= date %></date>
3
+ <time><%= Time.now %></time>
4
+ <dbaccess>
5
+ <hostname><%= hostname %></hostname>
6
+ <username><%= username %></username>
7
+ </dbaccess>
8
+ <myfiles><%= myfiles %></myfiles>
9
+ </xml>
@@ -0,0 +1,13 @@
1
+ require_relative '../../test_helper'
2
+
3
+ describe Configtemplate::ConfigTemplate do
4
+
5
+ subject { Configtemplate::ConfigTemplate }
6
+
7
+ describe "apply a default config" do
8
+
9
+ it "must be able to be created" do
10
+ subject.new('test/fixtures/config.yml', 'localmachine').must_be_instance_of(subject)
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,9 @@
1
+ require_relative '../../test_helper'
2
+
3
+ describe Configtemplate do
4
+
5
+ it "must be defined" do
6
+ Configtemplate::VERSION.wont_be_nil
7
+ end
8
+
9
+ end
@@ -0,0 +1,3 @@
1
+ require 'minitest/autorun'
2
+ require 'minitest/pride'
3
+ require File.expand_path('../../lib/configtemplate.rb', __FILE__)
metadata ADDED
@@ -0,0 +1,92 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: configtemplate
3
+ version: !ruby/object:Gem::Version
4
+ version: '0.1'
5
+ platform: ruby
6
+ authors:
7
+ - Richard Cottrill
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-07-17 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Contains classes and methods to apply a single configuration file to
42
+ configured templates usgin ERB. Configuration is stored as a YAML file, and may
43
+ have default values, as well as environment specific overrides, and embedded ERB/macros.
44
+ email:
45
+ - richard.cottrill@rxpservices.com.au
46
+ executables: []
47
+ extensions: []
48
+ extra_rdoc_files: []
49
+ files:
50
+ - ".gitignore"
51
+ - Gemfile
52
+ - LICENSE.txt
53
+ - README.md
54
+ - Rakefile
55
+ - configtemplate.gemspec
56
+ - lib/configtemplate.rb
57
+ - lib/configtemplate/version.rb
58
+ - test/fixtures/config.yml
59
+ - test/fixtures/template.xml
60
+ - test/lib/configtemplate/configtemplate_test.rb
61
+ - test/lib/configtemplate/version_test.rb
62
+ - test/test_helper.rb
63
+ homepage: ''
64
+ licenses:
65
+ - ''
66
+ metadata: {}
67
+ post_install_message:
68
+ rdoc_options: []
69
+ require_paths:
70
+ - lib
71
+ required_ruby_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ required_rubygems_version: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: '0'
81
+ requirements: []
82
+ rubyforge_project:
83
+ rubygems_version: 2.2.2
84
+ signing_key:
85
+ specification_version: 4
86
+ summary: Apply configuration changes across templates
87
+ test_files:
88
+ - test/fixtures/config.yml
89
+ - test/fixtures/template.xml
90
+ - test/lib/configtemplate/configtemplate_test.rb
91
+ - test/lib/configtemplate/version_test.rb
92
+ - test/test_helper.rb