-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathmautic.gemspec
28 lines (22 loc) · 939 Bytes
/
mautic.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
$LOAD_PATH.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require 'mautic/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'mautic'
s.version = Mautic::VERSION
s.authors = ['Lukáš Pokorný']
s.email = ['[email protected]']
s.homepage = 'https://github.com/luk4s/mautic-rails'
s.summary = 'Ruby on Rails Mautic integration'
s.description = 'Rails client for Mautic API. Provide wrapper for push to mautic form'
s.license = 'MIT'
s.required_ruby_version = '>= 3.1'
s.metadata['allowed_push_host'] = 'https://rubygems.org'
s.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']
s.test_files = Dir['spec/*']
s.add_dependency 'rails', '>= 6.0.0', '< 7.0'
# s.add_dependency 'oauth', '~> 0.5.3'
s.add_dependency 'oauth2', '~> 1.4'
s.add_dependency 'rest-client', '~> 2.1'
end