31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# File 'lib/xmimerge/app.rb', line 31
def self.specification
return @@spec unless @@spec.nil?
@@spec = Gem::Specification.new do |s|
s.name = 'xmimerge'
s.version = '0.0.1'
s.date = '2013-08-28'
s.summary = "Xmi Merge"
s.description = "A helper gem for merge XMI files"
s.authors = ["Marcus Siqueira"]
s.email = '[email protected]'
s.files = FileList['lib/*.rb', 'lib/**/*.rb'].to_a
s.homepage = 'https://github.com/marvinsiq/xmimerge'
s.executables << 'xmimerge'
end
end
|