ENVied v0.4.0 Release Notes

Release Date: 2014-05-16 // almost 10 years ago
    • groups added

      This allows for more fine-grained requiring. See the section in the README.

    • configuring is now simpler:

      ENVied.configure { variable :RACK_ENV }
      # vs
      ENVied.configure {|env| env.variable :RACK_ENV }
      
    • Deprecate require!. Use require instead.

      Just like requiring groups with Bundler.

    • Deprecate lowercase methods for uppercase ENV-variables.

      ENV['RACK_ENV'] is no longer accessible as ENVied.rack_env, only as ENVied.RACK_ENV. This is not only what you would expect, but it also reduces the chance of clashing with existing class-methods.