Skip to content
Permalink
a063a6363b
Switch branches/tags

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?
Go to file
 
 
Cannot retrieve contributors at this time
26 lines (22 sloc) 1004 Bytes
# 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