README.md in scs-0.3.1 vs README.md in scs-0.3.2
- old
+ new
@@ -1,19 +1,19 @@
-# SCS
+# SCS Ruby
[SCS](https://github.com/cvxgrp/scs) - the splitting conic solver - for Ruby
:fire: Supports many different [problem types](https://www.cvxpy.org/tutorial/advanced/index.html#choosing-a-solver)
-[![Build Status](https://github.com/ankane/scs/workflows/build/badge.svg?branch=master)](https://github.com/ankane/scs/actions)
+[![Build Status](https://github.com/ankane/scs-ruby/workflows/build/badge.svg?branch=master)](https://github.com/ankane/scs-ruby/actions)
## Installation
Add this line to your application’s Gemfile:
```ruby
-gem 'scs'
+gem "scs"
```
If installation fails, you may need to install [dependencies](#dependencies).
## Getting Started
@@ -79,25 +79,25 @@
- [Conic Optimization via Operator Splitting and Homogeneous Self-Dual Embedding](https://web.stanford.edu/~boyd/papers/scs.html)
## History
-View the [changelog](https://github.com/ankane/scs/blob/master/CHANGELOG.md)
+View the [changelog](https://github.com/ankane/scs-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/scs/issues)
-- Fix bugs and [submit pull requests](https://github.com/ankane/scs/pulls)
+- [Report bugs](https://github.com/ankane/scs-ruby/issues)
+- Fix bugs and [submit pull requests](https://github.com/ankane/scs-ruby/pulls)
- Write, clarify, or fix documentation
- Suggest or add new features
To get started with development:
```sh
-git clone --recursive https://github.com/ankane/scs.git
-cd scs
+git clone --recursive https://github.com/ankane/scs-ruby.git
+cd scs-ruby
bundle install
bundle exec rake compile
bundle exec rake test
```