You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ Ruby bindings for [BitmapPlusPlus](https://github.com/baderouaich/BitmapPlusPlus
6
6
7
7
This gem serves as both a useful library and a **practical example of using [Rice](https://github.com/ruby-rice/rice) to create Ruby bindings for C++ libraries**.
8
8
9
-
The binding code in `ext/bitmap_plus_plus/bitmap_plus_plus.cpp` is well-commented and can serve as a reference for your own Rice projects.
9
+
The binding code in `ext/BitmapPlusPlus-rb.cpp` is well-commented and can serve as a reference for your own Rice projects.
10
10
11
11
## Features
12
12
@@ -22,7 +22,7 @@ The binding code in `ext/bitmap_plus_plus/bitmap_plus_plus.cpp` is well-commente
22
22
## Quick Start
23
23
24
24
```ruby
25
-
require'bitmap_plus_plus'
25
+
require'bitmap-plus-plus'
26
26
27
27
# Create a new 640x480 bitmap
28
28
image =Bmp::Bitmap.new(640, 480)
@@ -43,7 +43,7 @@ image.save("output.bmp")
43
43
## Installation
44
44
45
45
```bash
46
-
gem install bitmap_plus_plus
46
+
gem install bitmap-plus-plus
47
47
```
48
48
49
49
For detailed installation options including building from source and CMake builds, see the [Installation Guide](https://ruby-rice.github.io/BitmapPlusPlus-ruby/installation/).
Copy file name to clipboardExpand all lines: docs/about-rice.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
This gem serves as a practical example of using [Rice](https://github.com/ruby-rice/rice) to create Ruby bindings for C++ libraries.
4
4
5
-
Rice is a C++ header-only library that makes it easy to create Ruby extensions. The binding code in `ext/bitmap_plus_plus/bitmap_plus_plus.cpp` is well-commented and can serve as a reference for your own Rice projects.
5
+
Rice is a C++ header-only library that makes it easy to create Ruby extensions. The binding code in `ext/BitmapPlusPlus-rb.cpp` is well-commented and can serve as a reference for your own Rice projects.
0 commit comments