-
Notifications
You must be signed in to change notification settings - Fork 4
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 #125 from collectionspace/fix-comparison
Bugfix for profile comparison
- Loading branch information
Showing
14 changed files
with
270,140 additions
and
206 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
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,4 +1,8 @@ | ||
source "https://rubygems.org" | ||
|
||
group :test do | ||
gem "rspec-custom", github: "kspurgin/rspec-custom", branch: "main" | ||
end | ||
|
||
# Specify your gem's dependencies in cspace_config_untangler.gemspec | ||
gemspec |
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 |
---|---|---|
|
@@ -3,14 +3,14 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | |
require "cspace_config_untangler/version" | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "cspace_config_untangler" | ||
spec.version = CspaceConfigUntangler::VERSION | ||
spec.authors = ["Kristina Spurgin"] | ||
spec.email = ["[email protected]"] | ||
spec.name = "cspace_config_untangler" | ||
spec.version = CspaceConfigUntangler::VERSION | ||
spec.authors = ["Kristina Spurgin"] | ||
spec.email = ["[email protected]"] | ||
|
||
spec.summary = "Generate data dictionary info from CSpace configs" | ||
spec.homepage = "https://github.com/lyrasis/cspace_config_untangler" | ||
spec.license = "MIT" | ||
spec.summary = "Generate data dictionary info from CSpace configs" | ||
spec.homepage = "https://github.com/lyrasis/cspace_config_untangler" | ||
spec.license = "MIT" | ||
|
||
spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'" | ||
|
||
|
@@ -20,19 +20,19 @@ Gem::Specification.new do |spec| | |
|
||
# Specify which files should be added to the gem when it is released. | ||
# The `git ls-files -z` loads the files in the RubyGem that have been added into git. | ||
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do | ||
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } | ||
spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do | ||
`git ls-files -z`.split("\x0").reject { |f| | ||
f.match(%r{^(test|spec|features)/}) | ||
} | ||
end | ||
spec.bindir = 'exe' | ||
spec.executables = spec.files.grep(%r{^exe/}){ |f| File.basename(f) } | ||
spec.require_paths = ['lib'] | ||
spec.bindir = "exe" | ||
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } | ||
spec.require_paths = ["lib"] | ||
|
||
spec.add_development_dependency "bundler", "~> 2.3.9" | ||
spec.add_development_dependency "pry", "~> 0.13.0" | ||
# spec.add_development_dependency "byebug" | ||
# spec.add_development_dependency "pry-byebug" | ||
spec.add_development_dependency "rake", "~> 13.0.6" | ||
spec.add_development_dependency "rspec", "~> 3.11" | ||
spec.add_development_dependency "bundler" | ||
spec.add_development_dependency "pry" | ||
spec.add_development_dependency "rake" | ||
spec.add_development_dependency "rspec" | ||
|
||
spec.add_runtime_dependency "dry-configurable", "~> 0.12" | ||
spec.add_runtime_dependency "facets", "~> 3.1.0" | ||
|
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
Oops, something went wrong.