README.md in osqp-0.1.2 vs README.md in osqp-0.1.3

- old
+ new

@@ -1,17 +1,17 @@ -# OSQP +# OSQP Ruby The [OSQP](https://osqp.org/) (Operator Splitting Quadratic Program) solver for Ruby -[![Build Status](https://github.com/ankane/osqp/workflows/build/badge.svg?branch=master)](https://github.com/ankane/osqp/actions) +[![Build Status](https://github.com/ankane/osqp-ruby/workflows/build/badge.svg?branch=master)](https://github.com/ankane/osqp-ruby/actions) ## Installation Add this line to your application’s Gemfile: ```ruby -gem 'osqp' +gem "osqp" ``` ## Getting Started Prep the problem - here’s how it should be [setup](https://osqp.org/docs/examples/setup-and-solve.html) @@ -63,25 +63,25 @@ This library is modeled after the OSQP [Python API](https://osqp.org/docs/interfaces/python.html). ## History -View the [changelog](https://github.com/ankane/osqp/blob/master/CHANGELOG.md) +View the [changelog](https://github.com/ankane/osqp-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/osqp/issues) -- Fix bugs and [submit pull requests](https://github.com/ankane/osqp/pulls) +- [Report bugs](https://github.com/ankane/osqp-ruby/issues) +- Fix bugs and [submit pull requests](https://github.com/ankane/osqp-ruby/pulls) - Write, clarify, or fix documentation - Suggest or add new features To get started with development: ```sh -git clone https://github.com/ankane/osqp.git -cd osqp +git clone https://github.com/ankane/osqp-ruby.git +cd osqp-ruby bundle install bundle exec rake vendor:all bundle exec rake test ```