CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 22 Aug 2025 05:09:41 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100503002131
location: https://web.archive.org/web/20100503002131/https://github.com/opscode/mixlib-config
server-timing: captures_list;dur=0.527913, exclusion.robots;dur=0.017796, exclusion.robots.policy;dur=0.007706, esindex;dur=0.010163, cdx.remote;dur=16.317854, LoadShardBlock;dur=182.999527, PetaboxLoader3.datanode;dur=51.473208, PetaboxLoader3.resolve;dur=82.188984
x-app-server: wwwb-app221
x-ts: 302
x-tr: 228
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app221; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Fri, 22 Aug 2025 05:09:42 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Mon, 03 May 2010 00:21:30 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "639425aa0a9f75c4ac7a3140d9549a98"
x-archive-orig-x-runtime: 109ms
x-archive-orig-content-length: 25326
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Mon, 03 May 2010 00:21:31 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Mon, 03 May 2010 00:21:31 GMT", ; rel="memento"; datetime="Mon, 03 May 2010 00:21:31 GMT", ; rel="next memento"; datetime="Wed, 05 May 2010 02:28:20 GMT", ; rel="last memento"; datetime="Sun, 15 Jun 2025 06:54:42 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_15_20100502151509_crawl102-c/51_15_20100503002051_crawl101.arc.gz
server-timing: captures_list;dur=0.692392, exclusion.robots;dur=0.024496, exclusion.robots.policy;dur=0.011077, esindex;dur=0.013305, cdx.remote;dur=13.358172, LoadShardBlock;dur=198.140239, PetaboxLoader3.resolve;dur=92.727255, PetaboxLoader3.datanode;dur=138.644757, load_resource;dur=78.229465
x-app-server: wwwb-app221
x-ts: 200
x-tr: 362
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
opscode's mixlib-config at master - GitHub
opscode / mixlib-config
- Source
- Commits
- Network (15)
- Issues (0)
- Downloads (14)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
Sending Request…
A simple class based Config mechanism, similar to the one found in Chef — Read more
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Thu Feb 18 14:03:40 -0800 2010 | added gemspec to gitignore [Christopher Brown] |
![]() |
LICENSE | Wed Mar 11 18:11:34 -0700 2009 | Initial commit [adamhjk] |
![]() |
NOTICE | Wed Mar 11 18:11:34 -0700 2009 | Initial commit [adamhjk] |
![]() |
README.rdoc | Wed Mar 11 18:11:34 -0700 2009 | Initial commit [adamhjk] |
![]() |
Rakefile | Sun Feb 28 12:11:27 -0800 2010 | Adding the gemcutter task [adamhjk] |
![]() |
VERSION.yml | Sun Feb 28 11:41:47 -0800 2010 | Updating the version to 1.1.0 [adamhjk] |
![]() |
features/ | Thu Aug 20 10:57:36 -0700 2009 | fixed the @@configuration class variable bug, u... [Nuo Yan] |
![]() |
lib/ | Tue Jan 26 16:59:22 -0800 2010 | Merge branch 'master' of github.com:opscode/mix... [adamhjk] |
![]() |
spec/ | Mon Aug 24 15:14:13 -0700 2009 | added config_attr_writer [Christopher Brown] |
README.rdoc
Mixlib::Config
Mixlib::Config provides a class-based configuration object, like the one used in Chef. To use in your project:
require 'rubygems' require 'mixlib/config' class MyConfig extend(Mixlib::Config) configure do |c| c[:first_value] = 'something' c[:other_value] = 'something_else' end end
Or…
class MyConfig extend(Mixlib::Config) first_value 'something' other_value 'something_else' end
To check a configuration variable:
MyConfig.first_value # returns 'something' MyConfig[:first_value] # returns 'something'
To change a configuration variable at runtime:
MyConfig.first_value('foobar') # sets first_value to 'foobar' MyConfig[:first_value] = 'foobar' # sets first_value to 'foobar'
You should populate your class with the default values for every configuration variable that might be accessed. If you try and access a variable that does not exist, Mixlib::Config will throw an <ArgumentError>.
To load a ruby configuration file (which will evaluate in the context of your configuration class):
MyConfig.from_file('your_config_file.rb')
Enjoy!