Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Security
- N/A

[0.2.0]: https://github.com/Youngv/ta_lib_ffi/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/Youngv/ta_lib_ffi/releases/tag/v0.1.0
[0.2.0]: https://github.com/TA-Lib/ta-lib-ruby/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/TA-Lib/ta-lib-ruby/releases/tag/v0.1.0
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# TALibFFI

![Tests](https://github.com/Youngv/ta_lib_ffi/actions/workflows/main.yml/badge.svg)
![Tests](https://github.com/TA-Lib/ta-lib-ruby/actions/workflows/main.yml/badge.svg)

## Introduction

Expand Down Expand Up @@ -83,7 +83,7 @@ puts TALibFFI.sma(prices, time_period: 3)

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/Youngv/ta_lib_ffi
Bug reports and pull requests are welcome on GitHub at https://github.com/TA-Lib/ta-lib-ruby

## License

Expand Down
2 changes: 1 addition & 1 deletion bin/console
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# frozen_string_literal: true

require "bundler/setup"
require "ta_lib"
require "ta_lib_ffi"

# You can add fixtures and/or initialization code here to make experimenting
# with your gem easier. You can also use a different console, if you like.
Expand Down
6 changes: 3 additions & 3 deletions ta_lib_ffi.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ Gem::Specification.new do |spec|
spec.email = ["[email protected]"]
spec.summary = "Ruby FFI bindings for TA-Lib (Technical Analysis Library)"
spec.description = "A Ruby wrapper for TA-Lib using FFI, providing technical analysis functions for financial market data"
spec.homepage = "https://github.com/Youngv/ta_lib_ffi"
spec.homepage = "https://github.com/TA-Lib/ta-lib-ruby"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/Youngv/ta_lib_ffi"
spec.metadata["changelog_uri"] = "https://github.com/Youngv/ta_lib_ffi/blob/main/CHANGELOG.md"
spec.metadata["source_code_uri"] = "https://github.com/TA-Lib/ta-lib-ruby"
spec.metadata["changelog_uri"] = "https://github.com/TA-Lib/ta-lib-ruby/blob/main/CHANGELOG.md"
spec.files = Dir[
"lib/**/*",
"LICENSE.txt",
Expand Down
Loading