-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit d2b1dbb
Showing
6 changed files
with
53 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.bundle | ||
.yardoc | ||
doc | ||
pkg | ||
Gemfile.lock | ||
*.swp |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--color | ||
--format documentation | ||
--require spec_helper |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
source 'https://rubygems.org' | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
require 'bundler/gem_tasks' |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# encoding: utf-8 | ||
$:.push File.expand_path('../lib', __FILE__) | ||
require 'rsalesloft' | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "rsalesloft" | ||
s.version = RSalesloft::VERSION | ||
s.authors = ["Auree Aubert"] | ||
s.email = "contact@auree.me" | ||
s.homepage = 'https://github.com/aureeaubert/salesloft-ruby' | ||
s.summary = 'A Ruby wrapper for the Salesloft API' | ||
s.description = 'A Ruby wrapper for the Salesloft API ' | ||
s.files = `git ls-files -z`.split("\x0") | ||
s.test_files = s.files.grep(/^spec\//) | ||
s.require_paths = ['lib'] | ||
|
||
s.add_runtime_dependency("faraday") | ||
s.add_runtime_dependency("faraday_middleware") | ||
s.add_runtime_dependency("json") | ||
|
||
s.add_development_dependency("bundler") | ||
s.add_development_dependency("webmock") | ||
s.add_development_dependency("rake") | ||
s.add_development_dependency("rspec") | ||
s.add_development_dependency("yard") | ||
s.add_development_dependency("vcr", "~> 3.0") | ||
end |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
require 'rsalesloft' | ||
require 'vcr' | ||
require 'webmock/rspec' | ||
|
||
VCR.configure do |c| | ||
c.cassette_library_dir = 'spec/vcr_cassettes' | ||
c.hook_into :webmock | ||
end | ||
|
||
RSpec.configure do |config| | ||
|
||
end |