summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Rodi <redjazz96@gmail.com>2014-07-07 13:27:08 -0400
committerdblock <dblock@dblock.org>2014-07-07 13:27:08 -0400
commit7c0a8ac1b982886713ddeccf98b08ede09555010 (patch)
tree35ad6832b4ad8a517e265bb6d777e26de0a03326
parent8f7dfd86f4e2f5cfd5f64ece3f8234fce8fa9d0a (diff)
downloadhashie-7c0a8ac1b982886713ddeccf98b08ede09555010.tar.gz
Automatically require version.
-rw-r--r--CHANGELOG.md1
-rw-r--r--lib/hashie.rb2
2 files changed, 3 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0269518..ff6509e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,7 @@
* [#179](https://github.com/intridea/hashie/pull/179) Mash#values_at will convert each key before doing the lookup - [@nahiluhmot](https://github.com/nahiluhmot).
* [#184](https://github.com/intridea/hashie/pull/184) Allow ranges on Rash to match all Numeric types - [@medcat](https://github.com/medcat).
+* [#187](https://github.com/intridea/hashie/pull/187) Automatically require version - [@medcat](https://github.com/medcat).
* Your contribution here.
## 3.1 (6/25/2014)
diff --git a/lib/hashie.rb b/lib/hashie.rb
index 2332f7f..6a693d9 100644
--- a/lib/hashie.rb
+++ b/lib/hashie.rb
@@ -1,3 +1,5 @@
+require 'hashie/version'
+
module Hashie
autoload :Clash, 'hashie/clash'
autoload :Dash, 'hashie/dash'