Skip to content

Commit 8a468c2

Browse files
authored
Allow bundler to auto require (#10)
* Allow bundler to auto require * Lock file updates * Exclude hyphenated file from rubocop linting
1 parent dc67716 commit 8a468c2

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

.rubocop.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ Style/NumericPredicate:
2121
Exclude:
2222
- lib/redis_single_file/semaphore.rb
2323

24+
Naming/FileName:
25+
Exclude:
26+
- lib/redis-single-file.rb
27+
2428
#
2529
# rspec stuff
2630
#

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
redis-single-file (0.1.4)
4+
redis-single-file (0.1.5)
55
redis (~> 5.4)
66
redis-clustering (~> 5.4)
77

lib/redis-single-file.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# frozen_string_literal: true
2+
3+
require_relative 'redis_single_file'

lib/redis_single_file/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module RedisSingleFile
4-
VERSION = '0.1.4'
4+
VERSION = '0.1.5'
55
end

0 commit comments

Comments
 (0)