forked from thiesen/pipedrive-ruby
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from ResultadosDigitais/blackops-fix-gemfile
Move dev gems to dev dependency group
- Loading branch information
Showing
12 changed files
with
102 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
language: ruby | ||
rvm: | ||
- 2.2 | ||
- 2.3 | ||
- 2.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
source "http://rubygems.org" | ||
source 'https://rubygems.org' | ||
# Add dependencies required to use your gem here. | ||
# Example: | ||
# gem "activesupport", ">= 2.3.5" | ||
|
||
gem 'httparty' | ||
gem 'json', '>= 1.7.7' | ||
gem 'multi_xml', '>= 0.5.2' | ||
gem 'webmock' | ||
gem 'coveralls', :require => false | ||
|
||
# Add dependencies to develop your gem here. | ||
# Include everything needed to run rake, tests, features, etc. | ||
group :development do | ||
gem "shoulda", ">= 0" | ||
gem "rdoc", "~> 3.12" | ||
gem "bundler", ">= 1.0.0" | ||
gem "jeweler", ">= 1.8.4" | ||
gem "simplecov", ">= 0" | ||
gem 'bundler', '>= 1.0.0' | ||
gem 'coveralls', require: false | ||
gem 'jeweler', '>= 1.8.4' | ||
gem 'rdoc', '~> 3.12' | ||
gem 'shoulda', '>= 0' | ||
gem 'simplecov', '>= 0' | ||
gem 'test-unit' | ||
gem 'webmock' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.3.3 | ||
0.3.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,112 +2,84 @@ | |
# DO NOT EDIT THIS FILE DIRECTLY | ||
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' | ||
# -*- encoding: utf-8 -*- | ||
|
||
# stub: pipedrive-ruby 0.3.3 ruby lib | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "pipedrive-ruby" | ||
s.version = "0.3.3" | ||
s.name = 'pipedrive-ruby' | ||
s.version = '0.3.6' | ||
|
||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | ||
s.require_paths = ["lib"] | ||
s.authors = ["Jan Schwenzien", "Waldemar Kusnezow", "Joel Courtney"] | ||
s.date = "2017-03-15" | ||
s.description = "Ruby wrapper for the Pipedrive API" | ||
s.email = "[email protected]" | ||
s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version= | ||
s.require_paths = ['lib'] | ||
s.authors = ['Jan Schwenzien', 'Waldemar Kusnezow', 'Joel Courtney'] | ||
s.date = '2017-03-15' | ||
s.description = 'Ruby wrapper for the Pipedrive API' | ||
s.email = '[email protected]' | ||
s.extra_rdoc_files = [ | ||
"README.md" | ||
'README.md' | ||
] | ||
s.files = [ | ||
".document", | ||
"Gemfile", | ||
"Gemfile.lock", | ||
"README.md", | ||
"Rakefile", | ||
"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", | ||
"lib/pipedrive/webhook.rb", | ||
"pipedrive-ruby.gemspec", | ||
"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/create_stages_body.json", | ||
"test/helper.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_pipedrive_stage.rb" | ||
'.document', | ||
'Gemfile', | ||
'Gemfile.lock', | ||
'README.md', | ||
'Rakefile', | ||
'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', | ||
'lib/pipedrive/webhook.rb', | ||
'pipedrive-ruby.gemspec', | ||
'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/create_stages_body.json', | ||
'test/helper.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_pipedrive_stage.rb' | ||
] | ||
s.homepage = "https://github.com/GeneralScripting/pipedrive-ruby.git" | ||
s.licenses = ["MIT"] | ||
s.rubygems_version = "2.4.8" | ||
s.summary = "Ruby wrapper for the Pipedrive API" | ||
|
||
if s.respond_to? :specification_version then | ||
s.specification_version = 4 | ||
s.homepage = 'https://github.com/GeneralScripting/pipedrive-ruby.git' | ||
s.licenses = ['MIT'] | ||
s.rubygems_version = '2.4.8' | ||
s.summary = 'Ruby wrapper for the Pipedrive API' | ||
|
||
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then | ||
s.add_runtime_dependency(%q<httparty>, [">= 0"]) | ||
s.add_runtime_dependency(%q<json>, [">= 1.7.7"]) | ||
s.add_runtime_dependency(%q<multi_xml>, [">= 0.5.2"]) | ||
s.add_runtime_dependency(%q<webmock>, [">= 0"]) | ||
s.add_runtime_dependency(%q<coveralls>, [">= 0"]) | ||
s.add_development_dependency(%q<shoulda>, [">= 0"]) | ||
s.add_development_dependency(%q<rdoc>, ["~> 3.12"]) | ||
s.add_development_dependency(%q<bundler>, [">= 1.0.0"]) | ||
s.add_development_dependency(%q<jeweler>, [">= 1.8.4"]) | ||
s.add_development_dependency(%q<simplecov>, [">= 0"]) | ||
else | ||
s.add_dependency(%q<httparty>, [">= 0"]) | ||
s.add_dependency(%q<json>, [">= 1.7.7"]) | ||
s.add_dependency(%q<multi_xml>, [">= 0.5.2"]) | ||
s.add_dependency(%q<webmock>, [">= 0"]) | ||
s.add_dependency(%q<coveralls>, [">= 0"]) | ||
s.add_dependency(%q<shoulda>, [">= 0"]) | ||
s.add_dependency(%q<rdoc>, ["~> 3.12"]) | ||
s.add_dependency(%q<bundler>, [">= 1.0.0"]) | ||
s.add_dependency(%q<jeweler>, [">= 1.8.4"]) | ||
s.add_dependency(%q<simplecov>, [">= 0"]) | ||
end | ||
if s.respond_to?(:metadata) | ||
s.metadata['allowed_push_host'] = 'https://resultadosdigitais.jfrog.io/resultadosdigitais/api/gems/gems' | ||
else | ||
s.add_dependency(%q<httparty>, [">= 0"]) | ||
s.add_dependency(%q<json>, [">= 1.7.7"]) | ||
s.add_dependency(%q<multi_xml>, [">= 0.5.2"]) | ||
s.add_dependency(%q<webmock>, [">= 0"]) | ||
s.add_dependency(%q<coveralls>, [">= 0"]) | ||
s.add_dependency(%q<shoulda>, [">= 0"]) | ||
s.add_dependency(%q<rdoc>, ["~> 3.12"]) | ||
s.add_dependency(%q<bundler>, [">= 1.0.0"]) | ||
s.add_dependency(%q<jeweler>, [">= 1.8.4"]) | ||
s.add_dependency(%q<simplecov>, [">= 0"]) | ||
raise 'RubyGems 2.0 or newer is required to protect against ' \ | ||
'public gem pushes.' | ||
end | ||
end | ||
|
||
s.add_runtime_dependency('httparty', ['>= 0']) | ||
s.add_runtime_dependency('json', ['>= 1.7.7']) | ||
s.add_runtime_dependency('multi_xml', ['>= 0.5.2']) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters