-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b1dccb6
commit 17f832c
Showing
1 changed file
with
11 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |