Skip to content

Commit

Permalink
Fix bundler errors (#22)
Browse files Browse the repository at this point in the history
* Fix bundler errors

Remove instances of `bundler/setup` which are unnecessary.
Add missing homepage entry in gemspec.
  • Loading branch information
Herbert Kagumba committed Mar 3, 2017
1 parent 714016c commit f524118
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion bin/console
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/usr/bin/env ruby

require 'bundler/setup'
require 'hscode'

require 'pry'
Expand Down
1 change: 0 additions & 1 deletion bin/hscode
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/usr/bin/env ruby

require 'bundler/setup'
require 'hscode'

Hscode::CliController.call(ARGV)
2 changes: 1 addition & 1 deletion hscode.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |spec|

spec.summary = %q{A HTTP status code lookup command line tool.}
spec.description = %q{Quickly look up any status code without leaving your terminal.}
spec.homepage = 'https://github.com/akabiru/hscode'
spec.homepage = 'https://akabiru.github.io/hscode/'
spec.license = 'MIT'

spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
Expand Down

0 comments on commit f524118

Please sign in to comment.