From 1fdf9b8a0a4d37afe518ac1abe9e699d19ec8d7d Mon Sep 17 00:00:00 2001 From: Valentin Treu Date: Sun, 7 Apr 2013 13:28:06 +0200 Subject: [PATCH] New version 1.0.5 which support Ruby 1.9.3 (thanks to marcocarvalho) --- README.textile | 6 +++--- Rakefile | 2 +- talib_ruby.gemspec | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.textile b/README.textile index 3c8f96f..e11f549 100644 --- a/README.textile +++ b/README.textile @@ -21,10 +21,10 @@ bc. sudo env ARCHFLAGS="-arch PLATFORM" gem install talib_ruby -- --with-talib-i * PLATFORM = [i386 | x86_64 | ...] * ABSOLUTE_PATH_TO_TALIB_HEADERS = The path to the ta-lib header files -** e.g. for Port: /opt/local/var/macports/software/ta-lib/0.4.0_0/opt/local/include/ta-lib -** e.g. for Homebrew: /usr/local/Cellar/ta-lib/0.4.0/include/ta-lib +** e.g. for Port: /opt/local/var/macports/software/ta-lib/0.4.0_0/opt/local/include +** e.g. for Homebrew: /usr/local/Cellar/ta-lib/0.4.0/include * ABSOLUTE_PATH_TO_TALIB_LIBS = The path to the ta-lib lib files -** e.g. fo Port: /opt/local/var/macports/software/ta-lib/0.4.0_0/opt/local/lib) +** e.g. fo Port: /opt/local/var/macports/software/ta-lib/0.4.0_0/opt/local/lib ** e.g. fo Homebrew: /usr/local/Cellar/ta-lib/0.4.0/lib Now ta-lib can be used by using _require 'talib_ruby'_ diff --git a/Rakefile b/Rakefile index 4505251..f9ac7fb 100644 --- a/Rakefile +++ b/Rakefile @@ -8,7 +8,7 @@ begin gemspec.homepage = "http://github.com/rivella50/talib-ruby" gemspec.authors = ["Valentin Treu"] gemspec.extensions << 'ext/talib/extconf.rb' - gemspec.version = '1.0.4' + gemspec.version = '1.0.5' gemspec.files = FileList['example/ma.rb','ext/talib/talib.c', 'README.rdoc','lib/**/*.rb'] gemspec.test_files = [] end diff --git a/talib_ruby.gemspec b/talib_ruby.gemspec index 30266a6..290a4f0 100644 --- a/talib_ruby.gemspec +++ b/talib_ruby.gemspec @@ -5,11 +5,11 @@ Gem::Specification.new do |s| s.name = %q{talib_ruby} - s.version = "1.0.4" + s.version = "1.0.5" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Valentin Treu"] - s.date = %q{2011-07-22} + s.date = %q{2013-04-07} s.description = %q{Ruby Wrapper for the Technical Analysis Library ta-lib} s.email = %q{rivella50@gmail.com} s.extensions = ["ext/talib/extconf.rb", "ext/talib/extconf.rb"] @@ -23,14 +23,14 @@ Gem::Specification.new do |s| ] s.homepage = %q{http://github.com/rivella50/talib-ruby} s.require_paths = ["lib"] - s.rubygems_version = %q{1.3.7} + s.rubygems_version = %q{1.3.6} s.summary = %q{Ruby Wrapper for ta-lib} if s.respond_to? :specification_version then current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION s.specification_version = 3 - if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then + if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then else end else