diff --git a/lib/micropub.rb b/lib/micropub.rb index 6d29b7b..a49cf8a 100644 --- a/lib/micropub.rb +++ b/lib/micropub.rb @@ -1,5 +1,3 @@ -require "micropub/version" - module Micropub autoload :Webserver, File.expand_path('micropub/webserver.rb', __dir__) autoload :Github, File.expand_path('micropub/github.rb', __dir__) diff --git a/lib/micropub/version.rb b/lib/micropub/version.rb deleted file mode 100644 index df435f8..0000000 --- a/lib/micropub/version.rb +++ /dev/null @@ -1,3 +0,0 @@ -module Micropub - VERSION = "0.1.0" -end diff --git a/test/micropub_test.rb b/test/micropub_test.rb deleted file mode 100644 index 83e6b58..0000000 --- a/test/micropub_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require "test_helper" - -class MicropubTest < Minitest::Test - def test_that_it_has_a_version_number - refute_nil ::Micropub::VERSION - end -end