feat!: Implement blank_gem that does nothing.

This commit is contained in:
2020-02-12 18:23:08 +00:00
commit 392826342b
11 changed files with 136 additions and 0 deletions

5
lib/blank_gem.rb Normal file
View File

@@ -0,0 +1,5 @@
# frozen_string_literal: true
require 'blank_gem/version'
module BlankGem; end

7
lib/blank_gem/version.rb Normal file
View File

@@ -0,0 +1,7 @@
# frozen_string_literal: true
module BlankGem
VERSION = File.read(
File.expand_path(File.join('..', '..', 'VERSION'), __dir__)
)
end