From 227e410cf5fa1a1afd2818ee03069b497a382e8f Mon Sep 17 00:00:00 2001 From: Kyle McAlpine Date: Wed, 23 Nov 2016 16:47:57 +0000 Subject: [PATCH] Depending on danger-plugin-api instead of danger (#2) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Switching danger dependancy to 'danger-plugin-api` This will stop danger-xcodebuild from stopping users from updating to major versions of Danger when the plugin API didn’t change. * Gemfile.lock updated --- Gemfile.lock | 45 +++++++++++++++++---------------------- danger-xcodebuild.gemspec | 2 +- 2 files changed, 21 insertions(+), 26 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index f3053b0..52316ff 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,12 +2,13 @@ PATH remote: . specs: danger-xcodebuild (0.0.5) - danger (~> 3.0) + danger-plugin-api (~> 1.0) GEM remote: https://rubygems.org/ specs: - addressable (2.4.0) + addressable (2.5.0) + public_suffix (~> 2.0, >= 2.0.2) claide (1.0.1) claide-plugins (0.9.2) cork @@ -17,29 +18,27 @@ GEM colored (1.2) cork (0.2.0) colored (~> 1.2) - danger (3.0.3) + danger (4.0.1) claide (~> 1.0) - claide-plugins (> 0.9.0) + claide-plugins (>= 0.9.2) colored (~> 1.2) cork (~> 0.1) faraday (~> 0.9) faraday-http-cache (~> 1.0) git (~> 1) - gitlab (~> 3.7.0) kramdown (~> 1.5) octokit (~> 4.2) terminal-table (~> 1) + danger-plugin-api (1.0.0) + danger (> 2.0) diff-lcs (1.2.5) - faraday (0.9.2) + faraday (0.10.0) multipart-post (>= 1.2, < 3) faraday-http-cache (1.3.1) faraday (~> 0.8) ffi (1.9.14) formatador (0.2.5) git (1.3.0) - gitlab (3.7.0) - httparty (~> 0.13.0) - terminal-table guard (2.14.0) formatador (>= 0.2.4) listen (>= 2.7, < 4.0) @@ -54,39 +53,35 @@ GEM guard (~> 2.1) guard-compat (~> 1.1) rspec (>= 2.99.0, < 4.0) - httparty (0.13.7) - json (~> 1.8) - multi_xml (>= 0.5.2) - json (1.8.3) - kramdown (1.12.0) + kramdown (1.13.0) listen (3.0.7) rb-fsevent (>= 0.9.3) rb-inotify (>= 0.9.7) lumberjack (1.0.10) method_source (0.8.2) - multi_xml (0.5.5) multipart-post (2.0.0) nap (1.1.0) nenv (0.3.0) notiffany (0.1.1) nenv (~> 0.1) shellany (~> 0.0) - octokit (4.3.0) - sawyer (~> 0.7.0, >= 0.5.3) + octokit (4.6.2) + sawyer (~> 0.8.0, >= 0.5.3) open4 (1.3.4) pry (0.10.4) coderay (~> 1.1.0) method_source (~> 0.8.1) slop (~> 3.4) + public_suffix (2.0.4) rake (10.5.0) - rb-fsevent (0.9.7) + rb-fsevent (0.9.8) rb-inotify (0.9.7) ffi (>= 0.5.0) rspec (3.5.0) rspec-core (~> 3.5.0) rspec-expectations (~> 3.5.0) rspec-mocks (~> 3.5.0) - rspec-core (3.5.2) + rspec-core (3.5.4) rspec-support (~> 3.5.0) rspec-expectations (3.5.0) diff-lcs (>= 1.2.0, < 2.0) @@ -95,15 +90,15 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.5.0) rspec-support (3.5.0) - sawyer (0.7.0) - addressable (>= 2.3.5, < 2.5) - faraday (~> 0.8, < 0.10) + sawyer (0.8.1) + addressable (>= 2.3.5, < 2.6) + faraday (~> 0.8, < 1.0) shellany (0.0.1) slop (3.6.0) - terminal-table (1.7.0) - unicode-display_width (~> 1.1) + terminal-table (1.7.3) + unicode-display_width (~> 1.1.1) thor (0.19.1) - unicode-display_width (1.1.0) + unicode-display_width (1.1.1) yard (0.9.5) PLATFORMS diff --git a/danger-xcodebuild.gemspec b/danger-xcodebuild.gemspec index 6fe0eed..44283da 100644 --- a/danger-xcodebuild.gemspec +++ b/danger-xcodebuild.gemspec @@ -18,7 +18,7 @@ Gem::Specification.new do |spec| spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ['lib'] - spec.add_runtime_dependency 'danger', '~>3.0' + spec.add_runtime_dependency 'danger-plugin-api', '~> 1.0' # General ruby development spec.add_development_dependency 'bundler', '~> 1.3'