forked from edbond/talib-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
18 lines (18 loc) · 702 Bytes
/
Rakefile
File metadata and controls
18 lines (18 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "talib_ruby"
gemspec.summary = "Ruby Wrapper for ta-lib"
gemspec.description = "Ruby Wrapper for the Technical Analysis Library ta-lib"
gemspec.email = "rivella50@gmail.com"
gemspec.homepage = "http://github.com/rivella50/talib-ruby"
gemspec.authors = ["Valentin Treu"]
gemspec.extensions << 'ext/talib/extconf.rb'
gemspec.version = '1.0.6'
gemspec.files = FileList['example/ma.rb','ext/talib/talib.c', 'README.rdoc','lib/**/*.rb']
gemspec.test_files = []
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install jeweler"
end