forked from luk4s/mautic-rails
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmautic.gemspec
36 lines (29 loc) · 1.28 KB
/
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
29
30
31
32
33
34
35
36
$:.push File.expand_path('../lib', __FILE__)
# 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 = '>= 2.2'
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', '>= 4.1.1'
# s.add_dependency 'oauth', '~> 0.5.3'
s.add_dependency 'oauth2', '~> 1.4'
s.add_dependency 'rest-client', '~> 1.6'
s.add_development_dependency 'sqlite3', '~> 1.4'
s.add_development_dependency('rspec-rails', '~> 3.9')
s.add_development_dependency('factory_bot_rails', '~> 5.1')
s.add_development_dependency('database_cleaner', '~> 1.7')
s.add_development_dependency('faker', '~> 2.7')
s.add_development_dependency('webmock', '~> 3.7')
s.add_development_dependency('pry-rails', '~> 0.3')
end