Skip to content

Commit ee4f638

Browse files
committed
Updates dependencies
1 parent d1f2859 commit ee4f638

File tree

2 files changed

+37
-29
lines changed

2 files changed

+37
-29
lines changed

Gemfile.lock

Lines changed: 20 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,35 @@ PATH
33
specs:
44
ruby-pardot (1.3.2)
55
crack (= 0.4.3)
6-
httparty (= 0.13.1)
6+
httparty (>= 0.14)
77

88
GEM
99
remote: http://rubygems.org/
1010
specs:
1111
crack (0.4.3)
1212
safe_yaml (~> 1.0.0)
13-
diff-lcs (1.1.2)
13+
diff-lcs (1.3)
1414
fakeweb (1.3.0)
15-
httparty (0.13.1)
16-
json (~> 1.8)
15+
httparty (0.18.0)
16+
mime-types (~> 3.0)
1717
multi_xml (>= 0.5.2)
18-
json (1.8.6)
18+
mime-types (3.3.1)
19+
mime-types-data (~> 3.2015)
20+
mime-types-data (3.2019.1009)
1921
multi_xml (0.6.0)
20-
rspec (2.5.0)
21-
rspec-core (~> 2.5.0)
22-
rspec-expectations (~> 2.5.0)
23-
rspec-mocks (~> 2.5.0)
24-
rspec-core (2.5.1)
25-
rspec-expectations (2.5.0)
26-
diff-lcs (~> 1.1.2)
27-
rspec-mocks (2.5.0)
22+
rspec (3.9.0)
23+
rspec-core (~> 3.9.0)
24+
rspec-expectations (~> 3.9.0)
25+
rspec-mocks (~> 3.9.0)
26+
rspec-core (3.9.1)
27+
rspec-support (~> 3.9.1)
28+
rspec-expectations (3.9.0)
29+
diff-lcs (>= 1.2.0, < 2.0)
30+
rspec-support (~> 3.9.0)
31+
rspec-mocks (3.9.1)
32+
diff-lcs (>= 1.2.0, < 2.0)
33+
rspec-support (~> 3.9.0)
34+
rspec-support (3.9.2)
2835
safe_yaml (1.0.5)
2936

3037
PLATFORMS

ruby-pardot.gemspec

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,28 @@
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__)
34

45
Gem::Specification.new do |s|
5-
s.name = "ruby-pardot"
6+
s.name = 'ruby-pardot'
67
s.version = Pardot::VERSION
78
s.platform = Gem::Platform::RUBY
8-
s.authors = ["Dan Cunning"]
9-
s.email = ["[email protected]"]
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+
s.email = ['[email protected]']
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'
1314

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'
1617

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'
1920

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'
2324

2425
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
2627
s.require_path = 'lib'
2728
end

0 commit comments

Comments
 (0)