summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordblock <dblock@dblock.org>2014-04-06 15:12:41 -0400
committerdblock <dblock@dblock.org>2014-04-06 15:13:03 -0400
commit20a79e5e997ad9ec1bb66b53f675c9233e1639b8 (patch)
tree259fa606908936d8a0d2cd542a5e0f936c2b1c7c
parent6dec18c47d4e6a6eeb38f7896b60e3e5cce112d2 (diff)
downloadhashie-2.1.0.tar.gz
Bump version, preparing for release.v2.1.0
-rw-r--r--hashie.gemspec4
-rw-r--r--lib/hashie/version.rb2
-rw-r--r--spec/hashie/version_spec.rb7
3 files changed, 10 insertions, 3 deletions
diff --git a/hashie.gemspec b/hashie.gemspec
index 6ab510d..28b45b1 100644
--- a/hashie.gemspec
+++ b/hashie.gemspec
@@ -3,8 +3,8 @@ require File.expand_path('../lib/hashie/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Michael Bleigh", "Jerry Cheung"]
gem.email = ["michael@intridea.com", "jollyjerry@gmail.com"]
- gem.description = %q{Hashie is a small collection of tools that make hashes more powerful. Currently includes Mash (Mocking Hash) and Dash (Discrete Hash).}
- gem.summary = %q{Your friendly neighborhood hash toolkit.}
+ gem.description = %q{Hashie is a collection of classes and mixins that make hashes more powerful.}
+ gem.summary = %q{Your friendly neighborhood hash library.}
gem.homepage = 'https://github.com/intridea/hashie'
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
diff --git a/lib/hashie/version.rb b/lib/hashie/version.rb
index f4e74e4..eb4d716 100644
--- a/lib/hashie/version.rb
+++ b/lib/hashie/version.rb
@@ -1,3 +1,3 @@
module Hashie
- VERSION = '2.0.5'
+ VERSION = '2.1.0'
end
diff --git a/spec/hashie/version_spec.rb b/spec/hashie/version_spec.rb
new file mode 100644
index 0000000..11d9e0b
--- /dev/null
+++ b/spec/hashie/version_spec.rb
@@ -0,0 +1,7 @@
+require 'spec_helper'
+
+describe Hashie do
+ it 'has a version' do
+ Hashie::VERSION.should_not be_nil
+ end
+end