From db76e98305f49b6134cf5cd694f711e6d1b12c1b Mon Sep 17 00:00:00 2001 From: Daniel Barber Date: Thu, 14 Nov 2019 22:13:35 -0500 Subject: [PATCH] We don't really need to version this --- lib/micropub.rb | 2 -- lib/micropub/version.rb | 3 --- test/micropub_test.rb | 7 ------- 3 files changed, 12 deletions(-) delete mode 100644 lib/micropub/version.rb delete mode 100644 test/micropub_test.rb 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