forked from larsch/ocra
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move ocran.rb from bin to exe directory and update file settings
This commit relocates the ocran.rb command script from the bin directory to the exe directory, aligning with the standard structure for Ruby gems. Additionally, the encoding comment has been removed as UTF-8 is the default setting. Also, `# frozen_string_literal: true` was added to adopt a standard practice in Ruby implementation.
- Loading branch information
Showing
3 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/usr/bin/env ruby | ||
# encoding: UTF-8 | ||
# frozen_string_literal: true | ||
|
||
load File.expand_path("../lib/ocran/runner.rb", __dir__) | ||
load Ocran::Runner.new.run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters