forked from johnnypaper/ruby-technical-analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruby-technical-analysis.gemspec
22 lines (20 loc) · 1.04 KB
/
ruby-technical-analysis.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Gem::Specification.new do |spec|
spec.name = "ruby-technical-analysis"
spec.version = "1.0.4"
spec.authors = ["Brad Saterfiel"]
spec.email = ["[email protected]"]
spec.description = "Ruby technical analysis toolkit for stocks, commodities, and other time series."
spec.summary = "Ruby technical analysis toolkit for stocks, commodities, and other time series."
spec.homepage = "https://github.com/johnnypaper/ruby-technical-analysis"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0"
spec.files = Dir["{spec,lib}/**/*.*"]
spec.require_path = "lib"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/johnnypaper/ruby-technical-analysis"
spec.metadata["changelog_uri"] = "https://github.com/johnnypaper/ruby-technical-analysis/blob/master/CHANGELOG.md"
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "yard", "~> 0.9"
end