Skip to content

Commit

Permalink
Fix RuboCop violations in gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed Jan 16, 2014
1 parent 7d032d8 commit 2ac32c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions omniauth.gemspec
Expand Up @@ -11,14 +11,14 @@ Gem::Specification.new do |spec|
spec.cert_chain = %w(certs/sferik.pem)
spec.description = %q{A generalized Rack framework for multiple-provider authentication.}
spec.email = ['michael@intridea.com', 'sferik@gmail.com']
spec.files = `git ls-files`.split($/)
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
spec.homepage = 'http://github.com/intridea/omniauth'
spec.licenses = ['MIT']
spec.name = 'omniauth'
spec.require_paths = ['lib']
spec.required_rubygems_version = '>= 1.3.5'
spec.signing_key = File.expand_path('~/.gem/private_key.pem') if $PROGRAM_NAME =~ /gem\z/
spec.summary = spec.description
spec.test_files = spec.files.grep(%r{^spec/})
spec.test_files = spec.files.grep(/^spec\//)
spec.version = OmniAuth::VERSION
end

0 comments on commit 2ac32c6

Please sign in to comment.