-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathruby-pardot.gemspec
More file actions
30 lines (24 loc) · 1.05 KB
/
ruby-pardot.gemspec
File metadata and controls
30 lines (24 loc) · 1.05 KB
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
# frozen_string_literal: true
require File.expand_path('lib/pardot/version', __dir__)
Gem::Specification.new do |s|
s.name = 'ruby-pardot'
s.version = Pardot::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Dan Cunning']
s.email = ['support@pardot.com']
s.homepage = 'http://github.com/pardot/ruby-pardot'
s.summary = 'Library for interacting with the Pardot API'
s.description = 'Library for interacting with the Pardot API'
s.required_ruby_version = '>= 2.7'
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "ruby-pardot"
s.add_dependency 'crack', '0.4.5'
s.add_dependency 'httparty', '~> 0.24.0'
s.add_development_dependency "bundler", ">= 1.10"
s.add_development_dependency "rspec", "3.5.0"
s.add_development_dependency "fakeweb", "1.3.0"
s.add_development_dependency "rake", "~> 13.0"
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map { |f| f =~ %r{^bin/(.*)} ? Regexp.last_match(1) : nil }.compact
s.require_path = 'lib'
end