Skip to content

Commit

Permalink
Merge pull request #2 from ninoseki/fix-typo
Browse files Browse the repository at this point in the history
fix: fix a stupid typo
  • Loading branch information
ninoseki committed Mar 20, 2020
2 parents e737c0e + 57dec2a commit 7baa231
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions dsndb.gemspec → dnsdb.gemspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# frozen_string_literal: true

require_relative 'lib/dsndb/version'
require_relative 'lib/dnsdb/version'

Gem::Specification.new do |spec|
spec.name = "dsndb"
spec.name = "dnsdb"
spec.version = DNSDB::VERSION
spec.authors = ["Manabu Niseki"]
spec.email = ["manabu.niseki@gmail.com"]
Expand Down
13 changes: 13 additions & 0 deletions lib/dnsdb.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# frozen_string_literal: true

require "dnsdb/version"

require "dnsdb/clients/client"
require "dnsdb/clients/lookup"
require "dnsdb/clients/summarize"

require "dnsdb/api"

module DNSDB
class Error < StandardError; end
end
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
13 changes: 0 additions & 13 deletions lib/dsndb.rb

This file was deleted.

File renamed without changes.
2 changes: 1 addition & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

require "vcr"

require "dsndb"
require "dnsdb"

RSpec.configure do |config|
# Enable flags like --only-failures and --next-failure
Expand Down

0 comments on commit 7baa231

Please sign in to comment.