20 lines
614 B
Ruby
20 lines
614 B
Ruby
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
|
|
|
|
# Maintain your wagon's version:
|
|
require 'hitobito_lit/version'
|
|
|
|
# Describe your gem and declare its dependencies:
|
|
Gem::Specification.new do |s|
|
|
# rubocop:disable SingleSpaceBeforeFirstArg
|
|
s.name = 'hitobito_lit'
|
|
s.version = HitobitoLit::VERSION
|
|
s.authors = ['Your name']
|
|
s.email = ['Your email']
|
|
# s.homepage = 'TODO'
|
|
s.summary = 'Lit'
|
|
s.description = 'Wagon description'
|
|
|
|
s.files = Dir['{app,config,db,lib}/**/*'] + ['Rakefile']
|
|
s.test_files = Dir['test/**/*']
|
|
# rubocop:enable SingleSpaceBeforeFirstArg
|
|
end
|