forked from icalendar/icalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicalendar.gemspec
30 lines (24 loc) · 1.02 KB
/
icalendar.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
25
26
27
28
29
$:.push File.expand_path('../lib', __FILE__)
require 'icalendar/base'
Gem::Specification.new do |s|
s.authors = ['Ryan Ahearn']
s.email = ['[email protected]']
s.name = "icalendar"
s.version = Icalendar::VERSION
s.homepage = "https://github.com/icalendar/icalendar"
s.platform = Gem::Platform::RUBY
s.summary = "A ruby implementation of the iCalendar specification (RFC-2445)."
s.description = <<-EOD
Implements the iCalendar specification (RFC-2445) in Ruby. This allows
for the generation and parsing of .ics files, which are used by a
variety of calendaring applications.
EOD
s.files = `git ls-files`.split "\n"
s.test_files = `git ls-files -- {test,spec,features}/*`.split "\n"
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename f }
s.require_paths = ['lib']
s.add_development_dependency 'rake', '~> 10.0'
s.add_development_dependency 'bundler', '~> 1.3'
s.add_development_dependency 'tzinfo', '~> 0.3'
s.add_development_dependency 'timecop', '~> 0.6.3'
end