|
1 |
| -# -*- encoding: utf-8 -*- |
2 |
| -require File.expand_path("../lib/pardot/version", __FILE__) |
| 1 | +# frozen_string_literal: true |
| 2 | + |
| 3 | +require File.expand_path('../lib/pardot/version', __FILE__) |
3 | 4 |
|
4 | 5 | Gem::Specification.new do |s|
|
5 |
| - s.name = "ruby-pardot" |
| 6 | + s.name = 'ruby-pardot' |
6 | 7 | s.version = Pardot::VERSION
|
7 | 8 | s.platform = Gem::Platform::RUBY
|
8 |
| - s.authors = ["Dan Cunning"] |
9 |
| - |
10 |
| - s.homepage = "http://github.com/pardot/ruby-pardot" |
11 |
| - s.summary = "Library for interacting with the Pardot API" |
12 |
| - s.description = "Library for interacting with the Pardot API" |
| 9 | + s.authors = ['Dan Cunning'] |
| 10 | + |
| 11 | + s.homepage = 'http://github.com/pardot/ruby-pardot' |
| 12 | + s.summary = 'Library for interacting with the Pardot API' |
| 13 | + s.description = 'Library for interacting with the Pardot API' |
13 | 14 |
|
14 |
| - s.required_rubygems_version = ">= 1.3.6" |
15 |
| - s.rubyforge_project = "ruby-pardot" |
| 15 | + s.required_rubygems_version = '>= 1.3.6' |
| 16 | + s.rubyforge_project = 'ruby-pardot' |
16 | 17 |
|
17 |
| - s.add_dependency "crack", "0.4.3" |
18 |
| - s.add_dependency "httparty", "0.13.1" |
| 18 | + s.add_dependency 'crack', '0.4.3' |
| 19 | + s.add_dependency 'httparty', '>= 0.13' |
19 | 20 |
|
20 |
| - s.add_development_dependency "bundler", ">= 1.10" |
21 |
| - s.add_development_dependency "rspec" |
22 |
| - s.add_development_dependency "fakeweb" |
| 21 | + s.add_development_dependency 'bundler', '>= 1.10' |
| 22 | + s.add_development_dependency 'fakeweb' |
| 23 | + s.add_development_dependency 'rspec' |
23 | 24 |
|
24 | 25 | s.files = `git ls-files`.split("\n")
|
25 |
| - s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact |
| 26 | + s.executables = `git ls-files`.split("\n").map { |f| f =~ %r{^bin\/(.*)} ? $1 : nil }.compact |
26 | 27 | s.require_path = 'lib'
|
27 | 28 | end
|
0 commit comments