Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
sf/sf.gemspec
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
26 lines (22 sloc)
1004 Bytes
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
# frozen_string_literal: true | |
require 'English' | |
lib = File.expand_path('lib', __dir__) | |
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | |
require 'sf/version' | |
Gem::Specification.new do |spec| | |
spec.name = 'sf' | |
spec.version = Sf::VERSION | |
spec.authors = ['TSG Dev Team'] | |
spec.email = ['tsg@internet2.edu'] | |
spec.description = 'Interacting with Internet2 Salesforce instance' | |
spec.summary = 'It can be used in applications that need to access Internet2 Salesforce instance' | |
spec.homepage = 'http://www.internet2.edu' | |
spec.license = 'MIT' | |
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR) | |
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'] | |
spec.add_dependency 'restforce', '~> 6.0.0' | |
spec.add_development_dependency 'bundler', '~> 2.3' | |
spec.add_development_dependency 'rake', '~> 13.0' | |
end |