File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -27,11 +27,11 @@ jobs:
27
27
ruby-version : ' 2.7'
28
28
bundler-cache : true
29
29
30
- - name : Run Standard Ruby linter
30
+ - name : Run standard Ruby linter
31
31
run : bundle exec standardrb --no-fix --fail-fast
32
32
33
33
test :
34
- name : Functional Testing
34
+ name : Functional testing
35
35
36
36
strategy :
37
37
matrix :
Original file line number Diff line number Diff line change 1
1
# ruby-vips
2
2
3
3
[ ![ 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 )
5
5
6
6
This gem is a Ruby binding for the [ libvips image processing
7
7
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.
21
21
22
22
* [ ruby-ffi] ( https://github.com/ffi/ffi ) 1.9 or later
23
23
24
- * Ruby 2.0+, JRuby should work
24
+ * Ruby 2.0+, JRuby
25
25
26
26
## Install
27
27
@@ -34,7 +34,7 @@ $ gem install ruby-vips
34
34
or include it in ` Gemfile ` :
35
35
36
36
``` ruby
37
- gem ' ruby-vips'
37
+ gem " ruby-vips"
38
38
```
39
39
40
40
On Windows, you'll need to set the ` RUBY_DLL_PATH ` environment variable to
@@ -43,7 +43,7 @@ point to the libvips bin directory.
43
43
# Example
44
44
45
45
``` ruby
46
- require ' vips'
46
+ require " vips"
47
47
48
48
im = Vips ::Image .new_from_file filename
49
49
You can’t perform that action at this time.
0 commit comments