diff --git a/Gemfile.lock b/Gemfile.lock index 7008e4a..652160e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - danger-apkstats (0.1.1) + danger-apkstats (0.1.2) danger-plugin-api (~> 1.0) GEM diff --git a/danger-apkstats.gemspec b/danger-apkstats.gemspec index 9ac4879..645d9df 100644 --- a/danger-apkstats.gemspec +++ b/danger-apkstats.gemspec @@ -14,7 +14,7 @@ Gem::Specification.new do |spec| spec.homepage = "https://github.com/jmatsu/danger-apkstats" spec.license = "MIT" - spec.files = `git ls-files`.split($/) + spec.files = `git ls-files | grep -v 'fixture/'`.split($/) spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] diff --git a/spec/fixture/app-base.apk b/fixture/app-base.apk similarity index 100% rename from spec/fixture/app-base.apk rename to fixture/app-base.apk diff --git a/spec/fixture/app-other1.apk b/fixture/app-other1.apk similarity index 100% rename from spec/fixture/app-other1.apk rename to fixture/app-other1.apk diff --git a/spec/fixture/app-other2.apk b/fixture/app-other2.apk similarity index 100% rename from spec/fixture/app-other2.apk rename to fixture/app-other2.apk diff --git a/spec/fixture/app-other3.apk b/fixture/app-other3.apk similarity index 100% rename from spec/fixture/app-other3.apk rename to fixture/app-other3.apk diff --git a/spec/fixture/app-other4.apk b/fixture/app-other4.apk similarity index 100% rename from spec/fixture/app-other4.apk rename to fixture/app-other4.apk diff --git a/spec/fixture/app-other5.apk b/fixture/app-other5.apk similarity index 100% rename from spec/fixture/app-other5.apk rename to fixture/app-other5.apk diff --git a/spec/fixture/github_pr.json b/fixture/github_pr.json similarity index 100% rename from spec/fixture/github_pr.json rename to fixture/github_pr.json diff --git a/lib/apkstats/gem_version.rb b/lib/apkstats/gem_version.rb index 9ffa187..45fc4b2 100644 --- a/lib/apkstats/gem_version.rb +++ b/lib/apkstats/gem_version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Apkstats - VERSION = "0.1.1" + VERSION = "0.1.2" end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 1d40252..c38383d 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -6,7 +6,7 @@ $:.unshift((ROOT + "spec").to_s) def fixture_path - "#{(ROOT + 'spec' + 'fixture')}/" + "#{(ROOT + 'fixture')}/" end require "bundler/setup"