Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
aureeaubert committed Sep 27, 2018
0 parents commit d2b1dbb
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.bundle
.yardoc
doc
pkg
Gemfile.lock
*.swp
3 changes: 3 additions & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
--color
--format documentation
--require spec_helper
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

source 'https://rubygems.org'

gemspec
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require 'bundler/gem_tasks'
27 changes: 27 additions & 0 deletions salesloft-ruby.gemspec
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
12 changes: 12 additions & 0 deletions spec/spec_helper.rb
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

0 comments on commit d2b1dbb

Please sign in to comment.