-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdarian_calendar.gemspec
24 lines (20 loc) · 1.13 KB
/
darian_calendar.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- encoding: utf-8 -*-
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'darian_calendar/version'
Gem::Specification.new do |gem|
gem.name = 'darian_calendar'
gem.version = DarianCalendar::VERSION
gem.date = Time.now.strftime('%Y-%m-%d')
gem.platform = Gem::Platform::RUBY
gem.summary = 'Converts earth time to mars time and back again. You can choose between 5 variants of the Darian calendar system.'
gem.description = 'This Ruby library converts earth time to mars time and back again. You can choose between 5 variants of the Darian calendar system; Martiana, Defrost, Areosynchronous, Hensel and Aqua.'
gem.authors = ['Christian Worreschk']
gem.email = ['[email protected]']
gem.homepage = 'http://github.com/cworreschk/darian_calendar'
gem.licenses = ['MIT']
gem.require_paths = ['lib']
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {spec}/*`.split("\n")
gem.extra_rdoc_files = ['README.md', 'LICENSE.md', 'CHANGELOG.md']
gem.rdoc_options = ['--line-numbers', '--inline-source', '--title', 'Darian Calendar']
end