pipekit-webmock 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: cfb40dd8031997d9edf6dd6bb49d2ce93a908931
4
+ data.tar.gz: b28590e950ccafa48c9ee6efdc7700014b8e7ba7
5
+ SHA512:
6
+ metadata.gz: b93a386d84f044c7a45a73685834bb5e6c8c5973a5b5541ef7f529fd45dc60ecd517e2246e65e2047cf45e4f92f31cbaead1c1c0ddd85c55297280ea6db492be
7
+ data.tar.gz: 32d0ce8a820dd49ff7ae014ad0312daaea027b43f118beb2c4e5d1556c201d75d24a81215239e4912a8e8b834c16c166d14e8491988cfe1ddd3783b58d203acf
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.0
5
+ before_install: gem install bundler -v 1.13.3
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at howeveririna@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in pipekit-webmock.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 jafrog
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,116 @@
1
+ # pipekit-webmock
2
+
3
+ This is a [WebMock](https://github.com/bblimke/webmock) extension to stub requests to [Pipedrive](http://www.pipedrive.com) with the [pipekit](https://github.com/makersacademy/pipekit) gem.
4
+
5
+ It provides a `stub_pipedrive_request` method and readable error messages for unregistered requests.
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'pipekit-webmock'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install pipekit-webmock
22
+
23
+ ## Usage
24
+
25
+ To use `pipekit` you will need a dummy Pipedrive config for your tests. Create a file with Pipedrive field mapping in `spec/support/config.yml`. Then add the following to your `spec_helper`:
26
+
27
+ ```ruby
28
+ # Dummy config data
29
+ Pipekit.config_file_path = File.join(File.dirname(__FILE__), "support", "config.yml")
30
+ ```
31
+
32
+ To stub requests to Pipedrive use `stub_pipedrive_request` method where you would normally use `WebMock`'s `stub_request` with the following params:
33
+
34
+ - `resource` - what "entity" is request made to. Possible values are:
35
+ - `:person`
36
+ - `:deal`
37
+ - `:note`
38
+ - `:personField`
39
+ - `action`:
40
+ - `:get` - Stubs a `GET` request to get resource by id or a query string.
41
+ - `:create` - Stubs a `POST` request to create a resource.
42
+ - `:update` - Stubs a `PUT` request to update the resource. `params` hash should include `id`.
43
+ - `:search` - Stubs a `GET` request to the `searchResults` endpoint.
44
+ - `:find_by_person_id` - Only for the `deal` resource. Stubs a `GET` request to `persons/:id/deals` on Pipedrive.
45
+ - `:find_by_email` - Only for the `person` resource. Stubs a `GET` request to `persons` with `search_by_email=1` query param on Pipedrive.
46
+ - `:find_by_name` - Only for the `person` resource. Stubs a `GET` request to `persons` on Pipedrive.
47
+ - `params` - a hash of parameters. Could be either a query string (for `GET` requests) or a body (for `POST` and `PUT`) requests. For `update` action must include `:id` (as a symbol). Custom Pipedrive fields **don't** have to be converted to their Pipedrive ids.
48
+ - `response` - what stubbed request should return. Note that most `GET` requests return an array, even if there's only one match.
49
+
50
+ ## Examples
51
+
52
+ ```ruby
53
+ stub_pipedrive_request(
54
+ resource: :person,
55
+ action: :create,
56
+ params: {
57
+ "email" => "octocat@github.com",
58
+ "name" => "Octocat",
59
+ "middle_name" => "Purr" # custom Pipedrive field
60
+ },
61
+ response: {id: 123}
62
+ )
63
+
64
+ stub_pipedrive_request(
65
+ resource: :deal,
66
+ action: :update,
67
+ params: {
68
+ id: 123,
69
+ stage: "1st Contact"
70
+ },
71
+ response: {id: 123}
72
+ )
73
+
74
+ stub_pipedrive_request(
75
+ resource: :person,
76
+ action: :find_by_email,
77
+ params: {
78
+ email: "octocat@gmail.com"
79
+ }
80
+ response: [{id: 123}] # notice the array
81
+ )
82
+
83
+ stub_pipedrive_request(
84
+ resource: :deal,
85
+ action: :find_by_person_id,
86
+ params: {
87
+ person_id: 123
88
+ },
89
+ response: [{id: 345}]
90
+ )
91
+
92
+ stub_pipedrive_request(
93
+ resource: :person,
94
+ action: :search,
95
+ params: {
96
+ "Middle name" => "Purr" # custom Pipedrive field
97
+ },
98
+ response: [{id: 123}]
99
+ )
100
+ ```
101
+
102
+ ## Development
103
+
104
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
105
+
106
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
107
+
108
+ ## Contributing
109
+
110
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/pipekit-webmock. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
111
+
112
+
113
+ ## License
114
+
115
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
116
+
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "pipekit/webmock"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,8 @@
1
+ require "pipekit"
2
+ require "pipekit/webmock/version"
3
+ require "pipekit/webmock/api"
4
+
5
+ module Pipekit
6
+ module WebMock
7
+ end
8
+ end
@@ -0,0 +1,115 @@
1
+ # Public: An extension over Webmock's `stub_request`.
2
+ # Allows to stub specifically requests to Pipedrive.
3
+ #
4
+ # Examples
5
+ #
6
+ # # in your spec file or spec_helper.rb
7
+ #
8
+ # include Pipekit::Webmock::API
9
+ #
10
+ # before do
11
+ # stub_pipedrive_request(
12
+ # resource: :person,
13
+ # action: :create,
14
+ # params: {name: "Morty"},
15
+ # response: {id: 123}
16
+ # )
17
+ # end
18
+ require "webmock"
19
+ require "pipekit/webmock/errors"
20
+
21
+ module Pipekit
22
+ module WebMock
23
+ module API
24
+ extend self
25
+
26
+ def self.included(mod)
27
+ if const_defined?("::WebMock::NetConnectNotAllowedError")
28
+ ::WebMock.send(:remove_const, :NetConnectNotAllowedError)
29
+ ::WebMock.send(:const_set, :NetConnectNotAllowedError, Pipekit::WebMock::UnregisteredPipedriveRequestError)
30
+ end
31
+ end
32
+
33
+ def stub_pipedrive_request(resource:, action:, params:, response: nil)
34
+ StubRequest.new(resource).stub_request_and_response(action, params, response)
35
+ end
36
+
37
+ class StubRequest
38
+ include ::WebMock::API
39
+
40
+ def initialize(resource)
41
+ @request = Pipekit::Request.new(resource)
42
+ end
43
+
44
+ def stub_request_and_response(action, params, response)
45
+ request = self.send("stub_#{action}_request", params)
46
+ request.and_return(status: 200, body: {"data" => response, "success" => true}.to_json) if response
47
+ request
48
+ end
49
+
50
+ private
51
+
52
+ def stub_create_request(params)
53
+ stub_request(:post, resource_uri).with(body: body_from(params))
54
+ end
55
+
56
+ def stub_update_request(params)
57
+ id = params.delete(:id)
58
+ stub_request(:put, resource_uri(id)).with(body: body_from(params))
59
+ end
60
+
61
+ def stub_get_request(params)
62
+ id = params.delete(:id)
63
+ uri = "#{resource_uri(id)}&#{body_from(pagination_params)}"
64
+ stub_request(:get, uri)
65
+ end
66
+
67
+ def stub_search_request(params)
68
+ field = params.keys.first
69
+ value = params[field]
70
+ query = @request.search_by_field_query(field, value).merge(pagination_params)
71
+ uri = "#{Pipekit::Request::PIPEDRIVE_URL}/searchResults/field?#{api_token_param}&#{body_from(query)}"
72
+ stub_request(:get, uri)
73
+ end
74
+
75
+ def stub_find_by_person_id_request(params)
76
+ person_id = params.delete(:person_id)
77
+ stub_request(:get, "#{Pipekit::Request::PIPEDRIVE_URL}/persons/#{person_id}/deals?#{api_token_param}&#{body_from(pagination_params)}")
78
+ end
79
+
80
+ def stub_find_by_email_request(params)
81
+ email = params.delete(:email)
82
+ stub_request(:get, "#{resource_uri("find")}&#{body_from(pagination_params)}&term=#{email}&search_by_email=1")
83
+ end
84
+
85
+ def stub_find_by_name_request(params)
86
+ name = params.delete(:name)
87
+ stub_request(:get, "#{resource_uri("find")}&#{body_from(pagination_params)}&term=#{name}")
88
+ end
89
+
90
+ def resource_uri(id = "")
91
+ "#{Pipekit::Request::PIPEDRIVE_URL}#{@request.uri(id)}?#{api_token_param}"
92
+ end
93
+
94
+ def body_from(params)
95
+ HTTParty::HashConversions.to_params(@request.parse_body(params))
96
+ end
97
+
98
+ def pagination_params
99
+ {
100
+ limit: @request.pagination_limit,
101
+ start: 0
102
+ }
103
+ end
104
+
105
+ def start
106
+ 0
107
+ end
108
+
109
+ def api_token_param
110
+ "api_token=#{Config.fetch(:api_token)}"
111
+ end
112
+ end
113
+ end
114
+ end
115
+ end
@@ -0,0 +1,36 @@
1
+ require "rack"
2
+ require "webmock"
3
+
4
+ module Pipekit
5
+ module WebMock
6
+ class UnregisteredPipedriveRequestError < StandardError
7
+ WebMockNetConnectNotAllowedError = ::WebMock::NetConnectNotAllowedError unless const_defined?(:WebMockNetConnectNotAllowedError)
8
+
9
+ def initialize(request_signature)
10
+ return WebMockNetConnectNotAllowedError.new(request_signature) unless request_signature.uri.hostname == "api.pipedrive.com"
11
+
12
+ resource = request_signature.uri.path.split("/").last[0..-2]
13
+ query = request_signature.uri.query
14
+ body = request_signature.body
15
+ text = [
16
+ "Unregistered request to Pipedrive: #{request_signature.uri}",
17
+ "with params:",
18
+ extract_params(resource, query),
19
+ "and body:",
20
+ extract_params(resource, body),
21
+ "="*60
22
+ ].compact.join("\n\n")
23
+ super(text)
24
+ end
25
+
26
+ def extract_params(resource, query)
27
+ params = Rack::Utils.parse_nested_query(query)
28
+ params.reduce({}) do |result, (field, value)|
29
+ field = Config.field_name(resource, field)
30
+ value = Config.field_value(resource, field, value)
31
+ result.tap { |result| result[field] = value }
32
+ end.map { |k, v| "#{k}: #{v}" }.join("\n")
33
+ end
34
+ end
35
+ end
36
+ end
@@ -0,0 +1,5 @@
1
+ module Pipekit
2
+ module WebMock
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
@@ -0,0 +1,32 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'pipekit/webmock/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "pipekit-webmock"
8
+ spec.version = Pipekit::WebMock::VERSION
9
+ spec.authors = ["jafrog"]
10
+ spec.email = ["howeveririna@gmail.com"]
11
+
12
+ spec.summary = %q{WebMock extension for requests to Pipedrive}
13
+ spec.description = %q{Registers a `stub_pipedrive_request` method and makes unregistered request error messages more readable}
14
+ spec.homepage = "https://github.com/makersacademy/pipekit-webmock"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
+ f.match(%r{^(test|spec|features)/})
19
+ end
20
+ spec.bindir = "exe"
21
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
+ spec.require_paths = ["lib"]
23
+
24
+ spec.add_dependency "webmock", "~>2.1"
25
+ spec.add_dependency "pipekit", "~>1.2"
26
+ spec.add_dependency "rack"
27
+
28
+ spec.add_development_dependency "bundler", "~> 1.13"
29
+ spec.add_development_dependency "rake", "~> 10.0"
30
+ spec.add_development_dependency "rspec", "~> 3.0"
31
+ spec.add_development_dependency "pry"
32
+ end
metadata ADDED
@@ -0,0 +1,158 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pipekit-webmock
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - jafrog
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-11-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: webmock
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: pipekit
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.2'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.2'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rack
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.13'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.13'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '10.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '10.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '3.0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '3.0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: pry
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ description: Registers a `stub_pipedrive_request` method and makes unregistered request
112
+ error messages more readable
113
+ email:
114
+ - howeveririna@gmail.com
115
+ executables: []
116
+ extensions: []
117
+ extra_rdoc_files: []
118
+ files:
119
+ - ".gitignore"
120
+ - ".rspec"
121
+ - ".travis.yml"
122
+ - CODE_OF_CONDUCT.md
123
+ - Gemfile
124
+ - LICENSE.txt
125
+ - README.md
126
+ - Rakefile
127
+ - bin/console
128
+ - bin/setup
129
+ - lib/pipekit/webmock.rb
130
+ - lib/pipekit/webmock/api.rb
131
+ - lib/pipekit/webmock/errors.rb
132
+ - lib/pipekit/webmock/version.rb
133
+ - pipekit-webmock.gemspec
134
+ homepage: https://github.com/makersacademy/pipekit-webmock
135
+ licenses:
136
+ - MIT
137
+ metadata: {}
138
+ post_install_message:
139
+ rdoc_options: []
140
+ require_paths:
141
+ - lib
142
+ required_ruby_version: !ruby/object:Gem::Requirement
143
+ requirements:
144
+ - - ">="
145
+ - !ruby/object:Gem::Version
146
+ version: '0'
147
+ required_rubygems_version: !ruby/object:Gem::Requirement
148
+ requirements:
149
+ - - ">="
150
+ - !ruby/object:Gem::Version
151
+ version: '0'
152
+ requirements: []
153
+ rubyforge_project:
154
+ rubygems_version: 2.5.1
155
+ signing_key:
156
+ specification_version: 4
157
+ summary: WebMock extension for requests to Pipedrive
158
+ test_files: []