Skip to content

v0.4.6

Compare
Choose a tag to compare
@jwoertink jwoertink released this 09 Mar 16:23
· 6 commits to master since this release
1716596

This release contains a new feature for extending Habitat by reopening a configured container:

# defined in some shard
class Server
  Habitat.create do
    # some setttings
  end
end

# defined in your code
class Server
  Habitat.extend do
    # some more settings you need
  end
end