├── LICENSE ├── README.rdoc ├── Rakefile ├── config ├── a.rb ├── b.rb ├── c.rb ├── d.rb ├── e.rb └── f.rb ├── configuration.gemspec ├── lib └── configuration.rb ├── pkg └── configuration-1.3.4.gem ├── samples ├── a.rb ├── b.rb ├── c.rb ├── d.rb ├── e.rb └── f.rb └── test └── overwrite_test.rb /LICENSE: -------------------------------------------------------------------------------- 1 | same as ruby's 2 | -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/configuration/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/configuration/HEAD/Rakefile -------------------------------------------------------------------------------- /config/a.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/configuration/HEAD/config/a.rb -------------------------------------------------------------------------------- /config/b.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/configuration/HEAD/config/b.rb -------------------------------------------------------------------------------- /config/c.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/configuration/HEAD/config/c.rb -------------------------------------------------------------------------------- /config/d.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/configuration/HEAD/config/d.rb -------------------------------------------------------------------------------- /config/e.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/configuration/HEAD/config/e.rb -------------------------------------------------------------------------------- /config/f.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/configuration/HEAD/config/f.rb -------------------------------------------------------------------------------- /configuration.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/configuration/HEAD/configuration.gemspec -------------------------------------------------------------------------------- /lib/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/configuration/HEAD/lib/configuration.rb -------------------------------------------------------------------------------- /pkg/configuration-1.3.4.gem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/configuration/HEAD/pkg/configuration-1.3.4.gem -------------------------------------------------------------------------------- /samples/a.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/configuration/HEAD/samples/a.rb -------------------------------------------------------------------------------- /samples/b.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/configuration/HEAD/samples/b.rb -------------------------------------------------------------------------------- /samples/c.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/configuration/HEAD/samples/c.rb -------------------------------------------------------------------------------- /samples/d.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/configuration/HEAD/samples/d.rb -------------------------------------------------------------------------------- /samples/e.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/configuration/HEAD/samples/e.rb -------------------------------------------------------------------------------- /samples/f.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/configuration/HEAD/samples/f.rb -------------------------------------------------------------------------------- /test/overwrite_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahoward/configuration/HEAD/test/overwrite_test.rb --------------------------------------------------------------------------------