README.md in prophet-rb-0.2.5 vs README.md in prophet-rb-0.3.0
- old
+ new
@@ -8,18 +8,18 @@
- Linear and non-linear growth
- Holidays and special events
And gracefully handles missing data
-[](https://github.com/ankane/prophet/actions)
+[](https://github.com/ankane/prophet-ruby/actions)
## Installation
Add this line to your application’s Gemfile:
```ruby
-gem 'prophet-rb'
+gem "prophet-rb"
```
## Simple API
Get future predictions for a time series
@@ -293,25 +293,25 @@
This library was ported from the [Prophet Python library](https://github.com/facebook/prophet) and is available under the same license.
## History
-View the [changelog](https://github.com/ankane/prophet/blob/master/CHANGELOG.md)
+View the [changelog](https://github.com/ankane/prophet-ruby/blob/master/CHANGELOG.md)
## Contributing
Everyone is encouraged to help improve this project. Here are a few ways you can help:
-- [Report bugs](https://github.com/ankane/prophet/issues)
-- Fix bugs and [submit pull requests](https://github.com/ankane/prophet/pulls)
+- [Report bugs](https://github.com/ankane/prophet-ruby/issues)
+- Fix bugs and [submit pull requests](https://github.com/ankane/prophet-ruby/pulls)
- Write, clarify, or fix documentation
- Suggest or add new features
To get started with development:
```sh
-git clone https://github.com/ankane/prophet.git
-cd prophet
+git clone https://github.com/ankane/prophet-ruby.git
+cd prophet-ruby
bundle install
-bundle exec ruby ext/prophet/extconf.rb
+bundle exec rake vendor:all
bundle exec rake test
```