-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcandl.gemspec
34 lines (28 loc) · 1.86 KB
/
candl.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
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "candl/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "candl"
s.version = Candl::VERSION
s.authors = ["Andreas Schau"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/hicknhack-software/candl"
s.summary = %q{This gem provides functionality to handle the loading of event data from a public google calendar via an api key and displaying it in a view. (Without the need for OAuth.)}
s.description = %q{This gem provides functionality to handle the loading of event data from a public google calendar via an api key and display it in a view. (Without the need for OAuth.) It does so by offering functions that gather the event data, cache it and structure it in a way that makes it easy to display in an agenda or monthly overview-like style. Visit us and see an example at: https://www.hicknhack-software.com/it-events}
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
s.test_files = Dir["spec/**/*"]
s.add_dependency 'rails', '~> 5.2', '>= 5.2.0'
s.add_dependency 'slim-rails', '~> 3.2', '>= 3.2.0'
s.add_dependency 'sass-rails', '~> 5.0', '>= 5.0.0'
s.add_dependency 'sass', '~> 3.7', '>= 3.7.0'
s.add_dependency 'rails_autolink', '~> 1.1', '>= 1.1.0'
s.add_dependency 'coffee-rails', '~> 4.2', '>= 4.2.0'
s.add_development_dependency 'sqlite3', '~> 1.3.6', '< 1.4'
s.add_development_dependency 'rspec-rails', '~> 3.8', '>= 3.8.0'
s.add_development_dependency 'material_icons', '~> 2.2', '>= 2.2.0'
s.add_development_dependency 'jquery-rails', '~> 4.3', '>= 4.3.0'
s.add_development_dependency 'turbolinks', '~> 5.2', '>= 5.2.0'
s.add_development_dependency 'bootstrap-sass', '~> 3.3', '>= 3.3.7'
end