Skip to content

Commit 206c6f5

Browse files
committed
revise README
1 parent efb8960 commit 206c6f5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727
ruby-version: '2.7'
2828
bundler-cache: true
2929

30-
- name: Run Standard Ruby linter
30+
- name: Run standard Ruby linter
3131
run: bundle exec standardrb --no-fix --fail-fast
3232

3333
test:
34-
name: Functional Testing
34+
name: Functional testing
3535

3636
strategy:
3737
matrix:

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ruby-vips
22

33
[![Gem Version](https://badge.fury.io/rb/ruby-vips.svg)](https://badge.fury.io/rb/ruby-vips)
4-
![Test](https://github.com/libvips/ruby-vips/workflows/Test/badge.svg)
4+
[![Test](https://github.com/libvips/ruby-vips/workflows/Test/badge.svg)](https://github.com/libvips/ruby-vips/actions?query=workflow%3ATest)
55

66
This gem is a Ruby binding for the [libvips image processing
77
library](https://libvips.github.io/libvips).
@@ -21,7 +21,7 @@ and because it doesn't need to keep entire images in memory, it's light.
2121

2222
* [ruby-ffi](https://github.com/ffi/ffi) 1.9 or later
2323

24-
* Ruby 2.0+, JRuby should work
24+
* Ruby 2.0+, JRuby
2525

2626
## Install
2727

@@ -34,7 +34,7 @@ $ gem install ruby-vips
3434
or include it in `Gemfile`:
3535

3636
```ruby
37-
gem 'ruby-vips'
37+
gem "ruby-vips"
3838
```
3939

4040
On Windows, you'll need to set the `RUBY_DLL_PATH` environment variable to
@@ -43,7 +43,7 @@ point to the libvips bin directory.
4343
# Example
4444

4545
```ruby
46-
require 'vips'
46+
require "vips"
4747

4848
im = Vips::Image.new_from_file filename
4949

0 commit comments

Comments
 (0)