forked from Bulletproof-Dev/pipedrive-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpipedrive-ruby.gemspec
More file actions
116 lines (111 loc) · 4.25 KB
/
Copy pathpipedrive-ruby.gemspec
File metadata and controls
116 lines (111 loc) · 4.25 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
# stub: pipedrive-ruby 1.0.0 ruby lib
Gem::Specification.new do |s|
s.name = "pipedrive-ruby".freeze
s.version = "1.0.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib".freeze]
s.authors = ["Jan Schwenzien".freeze, "Waldemar Kusnezow".freeze, "Joel Courtney".freeze]
s.date = "2025-12-18"
s.description = "Ruby wrapper for the Pipedrive API".freeze
s.email = "jan@general-scripting.com".freeze
s.extra_rdoc_files = [
"README.md"
]
s.files = [
".devcontainer/Dockerfile",
".devcontainer/compose.yaml",
".devcontainer/devcontainer.json",
".document",
"CLAUDE.md",
"Gemfile",
"Gemfile.lock",
"README.md",
"Rakefile",
"V2_MIGRATION_NOTES.md",
"VERSION",
"lib/pipedrive-ruby.rb",
"lib/pipedrive/activity-type.rb",
"lib/pipedrive/activity.rb",
"lib/pipedrive/authorization.rb",
"lib/pipedrive/base.rb",
"lib/pipedrive/currency.rb",
"lib/pipedrive/deal-field.rb",
"lib/pipedrive/deal.rb",
"lib/pipedrive/file.rb",
"lib/pipedrive/filter.rb",
"lib/pipedrive/goal.rb",
"lib/pipedrive/note.rb",
"lib/pipedrive/organization-field.rb",
"lib/pipedrive/organization.rb",
"lib/pipedrive/permission-set.rb",
"lib/pipedrive/person-field.rb",
"lib/pipedrive/person.rb",
"lib/pipedrive/pipeline.rb",
"lib/pipedrive/product-field.rb",
"lib/pipedrive/product.rb",
"lib/pipedrive/push-notification.rb",
"lib/pipedrive/role.rb",
"lib/pipedrive/search-result.rb",
"lib/pipedrive/stage.rb",
"lib/pipedrive/user-connection.rb",
"lib/pipedrive/user-setting.rb",
"lib/pipedrive/user.rb",
"pipedrive-ruby.gemspec",
"test/data/all_deal_fields_body.json",
"test/data/create_activity_body.json",
"test/data/create_deal_body.json",
"test/data/create_note_body.json",
"test/data/create_organization_body.json",
"test/data/create_person_body.json",
"test/data/find_activity_body.json",
"test/data/find_deal_with_custom_fields_body.json",
"test/data/find_organization_body.json",
"test/data/find_person_body.json",
"test/data/find_user_body.json",
"test/data/update_deal_body.json",
"test/helper.rb",
"test/test_pipedrive_activity.rb",
"test/test_pipedrive_authentication.rb",
"test/test_pipedrive_deal.rb",
"test/test_pipedrive_note.rb",
"test/test_pipedrive_organization.rb",
"test/test_pipedrive_person.rb",
"test/test_v2_abstraction_layer.rb"
]
s.homepage = "https://github.com/GeneralScripting/pipedrive-ruby.git".freeze
s.licenses = ["MIT".freeze]
s.rubygems_version = "3.3.27".freeze
s.summary = "Ruby wrapper for the Pipedrive API".freeze
if s.respond_to? :specification_version then
s.specification_version = 4
end
if s.respond_to? :add_runtime_dependency then
s.add_runtime_dependency(%q<httparty>.freeze, [">= 0"])
s.add_runtime_dependency(%q<json>.freeze, [">= 2.0"])
s.add_runtime_dependency(%q<multi_xml>.freeze, [">= 0.5.2"])
s.add_development_dependency(%q<rdoc>.freeze, [">= 4.0"])
s.add_development_dependency(%q<bundler>.freeze, [">= 1.0.0"])
s.add_development_dependency(%q<jeweler>.freeze, [">= 1.8.4"])
s.add_development_dependency(%q<simplecov>.freeze, [">= 0"])
s.add_development_dependency(%q<test-unit>.freeze, [">= 0"])
s.add_development_dependency(%q<shoulda>.freeze, [">= 0"])
s.add_development_dependency(%q<webmock>.freeze, [">= 0"])
s.add_development_dependency(%q<coveralls>.freeze, [">= 0"])
else
s.add_dependency(%q<httparty>.freeze, [">= 0"])
s.add_dependency(%q<json>.freeze, [">= 2.0"])
s.add_dependency(%q<multi_xml>.freeze, [">= 0.5.2"])
s.add_dependency(%q<rdoc>.freeze, [">= 4.0"])
s.add_dependency(%q<bundler>.freeze, [">= 1.0.0"])
s.add_dependency(%q<jeweler>.freeze, [">= 1.8.4"])
s.add_dependency(%q<simplecov>.freeze, [">= 0"])
s.add_dependency(%q<test-unit>.freeze, [">= 0"])
s.add_dependency(%q<shoulda>.freeze, [">= 0"])
s.add_dependency(%q<webmock>.freeze, [">= 0"])
s.add_dependency(%q<coveralls>.freeze, [">= 0"])
end
end