From 9489855f065cdc4b521eb55458988bbdb4734b7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Beausoleil?= Date: Sun, 12 Oct 2014 03:57:41 +0000 Subject: [PATCH] Upgrade version, in order to deploy to Rubygems --- lib/quicken_parser/version.rb | 3 +++ quicken_parser.gemspec | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 lib/quicken_parser/version.rb diff --git a/lib/quicken_parser/version.rb b/lib/quicken_parser/version.rb new file mode 100644 index 0000000..2965990 --- /dev/null +++ b/lib/quicken_parser/version.rb @@ -0,0 +1,3 @@ +module QuickenParser + VERSION = "0.2.0" +end diff --git a/quicken_parser.gemspec b/quicken_parser.gemspec index c81f088..50d0a1d 100644 --- a/quicken_parser.gemspec +++ b/quicken_parser.gemspec @@ -1,8 +1,10 @@ # -*- encoding: utf-8 -*- +$:.unshift File.expand_path("../lib", __FILE__) +require "quicken_parser/version" Gem::Specification.new do |s| s.name = %q{quicken_parser} - s.version = "0.1.5" + s.version = QuickenParser::VERSION s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Fran\303\247ois Beausoleil"]