Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,3 @@
/twsearch
/twsearch.wasm
/package-lock.json

# Temporary ignores for dev.
/src/ruby-gem
4 changes: 4 additions & 0 deletions src/ruby-gem/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/.rspec_status
/tmp
/lib
/target
3 changes: 3 additions & 0 deletions src/ruby-gem/.rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
--format documentation
--color
--require spec_helper
18 changes: 18 additions & 0 deletions src/ruby-gem/.rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
plugins:
- rubocop-rake
- rubocop-rspec

AllCops:
NewCops: enable
TargetRubyVersion: 3.0

Style/StringLiterals:
Enabled: true
EnforcedStyle: double_quotes

Style/StringLiteralsInInterpolation:
Enabled: true
EnforcedStyle: double_quotes

Layout/LineLength:
Max: 120
1 change: 1 addition & 0 deletions src/ruby-gem/.ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.4.6
Loading