File: UPGRADING.md

package info (click to toggle)
ruby-rspec-parameterized 2.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 156 kB
  • sloc: ruby: 403; makefile: 4
file content (16 lines) | stat: -rw-r--r-- 609 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# v1.0
Moved all implements to https://github.com/rspec-parameterized/rspec-parameterized-core and https://github.com/rspec-parameterized/rspec-parameterized-table_syntax

For v0.x users, there is basically no need to do anything other than `bundle update`.

If you are not using `RSpec::Parameterized::TableSyntax`, you can write `rspec-parameterized-core` instead of `rspec-parameterized` in your `Gemfile` to reduce the dependency. (`rspec-parameterized-table_syntax` includes dependency on native extension...)

e.g.

```ruby
# Before
gem "rspec-parameterized"

# After
gem "rspec-parameterized-core"
```