-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeetalender.gemspec
47 lines (36 loc) · 2.01 KB
/
meetalender.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
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "meetalender/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "meetalender"
spec.version = Meetalender::VERSION
spec.authors = ["Andreas Schau"]
spec.email = ["[email protected]"]
spec.homepage = "https://www.hicknhack-software.com/"
spec.summary = "To have a section on a website that allows gathering of meetup groups. So that their events can regularely be syncronized into a google calendar."
spec.description = "This gem prensents all the needed functionality to search for relevant groups on meetup, remember the chosen ones and offers a task that can be called regularely to transcribe the meetup-groups events to a google calendar. TLDR: It allows the user to subscribe to meetup-groups events."
spec.license = "MIT"
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
if spec.respond_to?(:metadata)
spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
else
raise "RubyGems 2.0 or newer is required to protect against " \
"public gem pushes."
end
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.add_dependency 'rails', '~> 5.2.2'
# httpclient for manual auth calls
spec.add_dependency 'httpclient', '~> 2.8', '>= 2.8.3'
# google api for calendar event insetion
spec.add_dependency 'google-api-client', '~> 0.30.3'
# helps encrypt and decrypt tokens from the database
spec.add_dependency 'attr_encrypted', '~> 3.1'
# Asset processors
spec.add_dependency 'slim', '~> 4.0', '>= 4.0.1'
spec.add_dependency 'multi_json', '~> 1.13', '>= 1.13.1'
# development dependencies
spec.add_development_dependency "sqlite3", '~> 1.3.6'
spec.add_development_dependency 'rspec-rails', '~> 3.8', '>= 3.8.0'
end