We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e6dde7 commit 017c792Copy full SHA for 017c792
Gemfile
@@ -1,7 +1,5 @@
1
source 'https://rubygems.org'
2
3
-ruby '3.3.5'
4
-
5
gemspec
6
7
group :development, :test do
lib/br_danfe.rb
@@ -9,7 +9,7 @@
9
require 'i18n'
10
require 'br_documents'
11
12
-Dir["#{File.dirname(__FILE__)}/**/*.rb"].each { |f| require f }
+Dir["#{File.dirname(__FILE__)}/**/*.rb"].sort.each { |f| require f } # rubocop:disable Lint/RedundantDirGlobSort
13
14
I18n.load_path << File.expand_path('../config/locales/pt-BR.yml', __dir__)
15
I18n.available_locales = ['pt-BR']
0 commit comments