Skip to content

Commit

Permalink
New version 1.0.5 which support Ruby 1.9.3 (thanks to marcocarvalho)
Browse files Browse the repository at this point in the history
  • Loading branch information
rivella50 committed Apr 7, 2013
1 parent a1691ab commit 1fdf9b8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.textile
Expand Up @@ -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'_
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions talib_ruby.gemspec
Expand Up @@ -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"]
Expand All @@ -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
Expand Down

0 comments on commit 1fdf9b8

Please sign in to comment.