Skip to content

Commit

Permalink
Fix code smells reported by rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
excpt committed Dec 22, 2015
1 parent 4d440dc commit 451d950
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ruby-jwt.gemspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
lib = File.expand_path('../lib/', __FILE__);
lib = File.expand_path('../lib/', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'jwt/version'

Expand All @@ -11,12 +11,12 @@ Gem::Specification.new do |spec|
]
spec.email = 'timrudat@gmail.com'
spec.summary = 'JSON Web Token implementation in Ruby'
spec.description = 'A pure ruby implementation of the RFC 7519 OAuth JSON Web Token standard.'
spec.description = 'A pure ruby implementation of the RFC 7519 OAuth JSON Web Token (JWT) standard.'
spec.homepage = 'http://github.com/jwt/ruby-jwt'
spec.license = 'MIT'

spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}){|f| File.basename(f)}
spec.executables = spec.files.grep(%r{^bin/}){ |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = %w(lib)

Expand Down

0 comments on commit 451d950

Please sign in to comment.