Skip to content

Commit

Permalink
kintsugi.gemspec: Add.
Browse files Browse the repository at this point in the history
  • Loading branch information
byohay committed Apr 21, 2021
1 parent 74aae28 commit 03903b4
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions kintsugi.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# frozen_string_literal: true

Gem::Specification.new do |spec|
spec.name = "kintsugi"
spec.version = "0.1.0"
spec.authors = ["Ben Yohay"]
spec.email = ["[email protected]"]
spec.required_ruby_version = ">= 2.5.0"
spec.description =
%q(
Kintsugi resolves conflicts in .pbxproj files, with the aim to resolve 99.9% of the conflicts
automatically.
)
spec.summary = %q(pbxproj files git conflicts solver)
spec.homepage = "https://github.com/Lightricks/Kintsugi"
spec.license = "MIT"

spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(spec)/})
spec.require_paths = ["lib"]

spec.add_dependency "xcodeproj", "1.19.0"

spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.9"
spec.add_development_dependency "rubocop", "1.12.0"
spec.add_development_dependency "rubocop-rspec", "2.2.0"
spec.add_development_dependency "simplecov", "~> 0.21"
end

0 comments on commit 03903b4

Please sign in to comment.