forked from rahmal/rconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
71 lines (61 loc) · 1.93 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
0.4.4
=====
* Updated README file
0.4.3
=====
* Fixed error handling in parse_load_paths
* Updated specs
* Update Rakefile and rake tasks.
* Updated Docs.
0.4.2
=====
* Fixed indifferent access in Config object.
0.4.1
=====
* Fixed error occuring in non-Rails apps (NameError/HashWithIndifferentAccess missing) - From vandries/rconfig (github)
* Fixed install generator
* Fixed application file shorthand (i.e. RConfig[key] == RConfig.application.key)
0.4.0
=====
* Broke RConfig core into separate modules to decrease core class size.
* Added Rails generator to override RConfig settings in Rails projects
* Added support for git-like config files, giving key/value properties files potentially three levels.
* Added support for values referencing other properties in key-value config files
* Refactored settings module to allow for clean defaults, and overriding.
* Added RConfig logger.
* Renamed overlay to cascade
* Fixed a syntax error in when clause of config_hash.rb for ruby 1.9.1 - From dvyjones/rconfig (github).
* Fixed raise on allow_reload method.
* Fixed unit test, rconfig_test.rb.
* Fixed minor typos, comments, and bugs.
* Refactored Hash#weave signature; changed dont_clobber=true, to clobber=false (reads more intuitively).
* Removed redundant validate method from PropertiesFileParser.
* Renamed PropertiesFileParser to PropertiesFile
0.3.3
=====
* Fixed overlay class variable not loaded warning.
0.3.2
=====
* Fixed bug in 0.3.1 causing stackrace
0.3.1 (bug - DO NOT USE)
=====
* Added rake scripts
* Finished gemspec
* Created rdocs
* Built gem file
0.3
=====
* Re-factored rconfig core.
* Added new helper method to init rconfig.
* Re-factored core_ext/hash.
* Added custom exceptions.
* Added global instance $config, for convenience.
* Updated comments.
0.2
=====
* Added support for setting config path(s) programmtically.
* Added support for using multiple file types at once.
* Cleaned up STDERR statements.
0.1
=====
* First public release