Skip to content

Commit

Permalink
Format the gemspec file
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrelegall committed Jan 15, 2021
1 parent b1dccb6 commit 17f832c
Showing 1 changed file with 11 additions and 15 deletions.
26 changes: 11 additions & 15 deletions eavi.gemspec
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
Gem::Specification.new do |s|
s.name = 'eavi'
s.version = '2.0.2'
s.date = '2018-01-14'

s.summary = 'A visitor pattern helper for Ruby.'
s.description = 'Make the visitor pattern very accessible in Ruby.'

s.homepage = 'http://github.com/lepieru/eavi'
s.files = Dir['lib/**/*', 'LICENSE']

s.authors = ['Pierre Le Gall']
s.email = '[email protected]'

s.license = 'MIT'
Gem::Specification.new do |spec|
spec.name = 'eavi'
spec.version = '2.0.2'
spec.date = '2018-01-14'
spec.summary = 'A visitor pattern helper for Ruby.'
spec.description = 'Make the visitor pattern very accessible in Ruby.'
spec.homepage = 'http://github.com/lepieru/eavi'
spec.files = Dir['lib/**/*', 'LICENSE']
spec.authors = ['Pierre Le Gall']
spec.email = '[email protected]'
spec.license = 'MIT'
end

0 comments on commit 17f832c

Please sign in to comment.