Skip to content

Commit

Permalink
Merge branch 'main' into customized/px5
Browse files Browse the repository at this point in the history
  • Loading branch information
ParadoxV5 committed Aug 13, 2023
2 parents 49e0171 + 1cb2969 commit 2e815ce
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ require 'minitest/test_task'
# * test:isolated : run tests independently to surface order dependencies
# * test:deps : (alias of test:isolated)
# * test:slow : run tests and reports the slowest 25
# Also makes the default task depend on the test task (https://github.com/minitest/minitest/issues/958)
# Also makes the default task depend on the test task
Minitest::TestTask.create
6 changes: 5 additions & 1 deletion lib/mygem.rb
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
require_relative 'mygem/version'
require_relative 'mygem/version'
module MyGem


end
9 changes: 9 additions & 0 deletions test/mygem_test.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# frozen_string_literal: true
require 'minitest/autorun'
require 'mygem'
describe MyGem do

it '' do
end

end

0 comments on commit 2e815ce

Please sign in to comment.