Skip to content

Commit b27bba1

Browse files
committed
naming
1 parent 5afd351 commit b27bba1

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@
99

1010
# rspec failure tracking
1111
.rspec_status
12-
.idea/
12+
.idea/
13+
*.gem

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ bundle install
3030
Here's a quick example of how to use BinarySearch:
3131

3232
```ruby
33-
require 'binary_search'
33+
require 'ruby_binary_search'
3434

3535
# Create a new list
3636
list = BinarySearch::List.new([3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5])
@@ -55,7 +55,7 @@ puts list.max # Output: 9
5555
```
5656
Custom objects
5757
```ruby
58-
require 'binary_search'
58+
require 'ruby_binary_search'
5959
class Person
6060
attr_accessor :name, :age
6161

File renamed without changes.

spec/spec_helper.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

3-
require 'binary_search'
3+
require 'ruby_binary_search'
44
require 'pry'
55
require 'rspec-benchmark'
66

0 commit comments

Comments
 (0)