forked from dustacio/ri_cal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathri_cal.gemspec
47 lines (39 loc) · 1.92 KB
/
ri_cal.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# -*- encoding: utf-8 -*-
#- 2009 Rick DeNatale, All rights reserved. Refer to the file README.txt for the license
require File.join File.dirname(__FILE__), 'lib', 'ri_cal', 'version'
Gem::Specification.new do |gem|
gem.authors = ["Jon Phenow, Rick DeNatale"]
gem.email = ["[email protected]"]
gem.description = %q{A new Ruby implementation of RFC2445 iCalendar.
The existing Ruby iCalendar libraries (e.g. icalendar, vpim) provide for parsing and generating icalendar files,
but do not support important things like enumerating occurrences of repeating events.
This is a clean-slate implementation of RFC2445.
A Google group for discussion of this library has been set up http://groups.google.com/group/rical_gem}
gem.summary = %q{a new implementation of RFC2445 in Ruby}
gem.homepage = "http://github.com/kdgm/ri_cal"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "ri_cal"
gem.require_paths = ["lib"]
gem.version = RiCal::VERSION
gem.required_ruby_version = '>= 2.4.0'
gem.add_dependency 'tzinfo'
gem.add_development_dependency 'activesupport', "~> 3.2.22"
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'rspec-its'
gem.add_development_dependency 'rspec-collection_matchers'
gem.add_development_dependency 'rspec-autotest'
gem.add_development_dependency 'autotest-standalone'
gem.add_development_dependency 'autotest-fsevent'
gem.add_development_dependency 'awesome_print'
if gem.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
gem.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0')
else
end
else
end
end