Skip to content
Permalink
51883fe3cc
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
@ij
Latest commit 51883fe Feb 9, 2016 History
1 contributor

Users who have contributed to this file

24 lines (21 sloc) 956 Bytes
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$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 = %q{Interacting with Internet2 Salesforce instance}
spec.summary = %q{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($/)
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", "~> 2.1"
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake", "~> 10.3"
end