diff options
author | Lars Henrik Mai <lars.mai@kontinui.de> | 2014-10-14 22:09:41 +0200 |
---|---|---|
committer | Lars Henrik Mai <lars.mai@kontinui.de> | 2014-10-14 22:09:41 +0200 |
commit | f93dbc72aad6b62c94bc76f32d6386f9dfa3a84c (patch) | |
tree | d72ed2625869b9c65b08fe4db12e53965d66d796 /sublab_calendar.gemspec | |
parent | 0afbfb6fba261cab450f069caa70e161e13ac51f (diff) |
Diffstat (limited to 'sublab_calendar.gemspec')
-rw-r--r-- | sublab_calendar.gemspec | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/sublab_calendar.gemspec b/sublab_calendar.gemspec new file mode 100644 index 0000000..bd53a9f --- /dev/null +++ b/sublab_calendar.gemspec @@ -0,0 +1,30 @@ +# coding: utf-8 +lib = File.expand_path('../lib', __FILE__) +$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) +require 'sublab_calendar/version' + +Gem::Specification.new do |spec| + spec.name = "sublab_calendar" + spec.version = SublabCalendar::VERSION + spec.authors = ["Lars Henrik Mai"] + spec.email = ["lars@pingfm.org"] + spec.summary = %q{Ical parser for the sublab} + spec.description = %q{} + spec.homepage = "http://sublab.org" + spec.license = "MIT" + + spec.files = `git ls-files -z`.split("\x0") + spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } + spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) + spec.require_paths = ["lib"] + + spec.add_development_dependency "bundler", "~> 1.6" + spec.add_development_dependency "rake" + + spec.add_runtime_dependency "activesupport" + spec.add_runtime_dependency "icalendar" + spec.add_runtime_dependency "icalendar-recurrence" + spec.add_runtime_dependency "tzinfo" + spec.add_runtime_dependency "httpi" + spec.add_runtime_dependency "httpclient" +end |