Sha256: d3b081020a807e7d793ba89981c7c4f82ef3d46a1814e35cb399b038916378d0

Contents?: true

Size: 727 Bytes

Versions: 12

Compression:

Stored size: 727 Bytes

Contents

require 'rspec'
require 'vcr'
require 'pry'
require 'simplecov'

SimpleCov.start do
  add_group 'API', 'lib/linkedin/api'
  add_filter 'spec'
end

require 'linkedin2'

VCR.configure do |c|
  c.cassette_library_dir = 'spec/fixtures/requests'
  c.hook_into :faraday
  c.default_cassette_options = { record: :new_episodes }
  c.configure_rspec_metadata!
end

RSpec.configure do |c|
  c.treat_symbols_as_metadata_keys_with_true_values = true
end

LinkedIn.load('spec/test_app.yml')
LinkedIn::Client.configure do |config|
  config.access_token = 'AQUJwEF40pJUbVxsW_mujQ3QCiXvlTnMFk55SlfVPYRcAPdsn1oE1Hm8Ldlc61o57k96i04ufG81KFdPJIOSJswXsGyZ0tk9IMZea8sfNXMGMnZgikQJUQPkmRVYVw9BP1qH9tp7hJF32DQtzkBB_NE8xPASPVgXVWbbntChGyYqqDvF1p8'
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
linkedin2-0.0.15 spec/spec_helper.rb
linkedin2-0.0.14 spec/spec_helper.rb
linkedin2-0.0.13 spec/spec_helper.rb
linkedin2-0.0.12 spec/spec_helper.rb
linkedin2-0.0.11 spec/spec_helper.rb
linkedin2-0.0.10 spec/spec_helper.rb
linkedin2-0.0.9 spec/spec_helper.rb
linkedin2-0.0.8 spec/spec_helper.rb
linkedin2-0.0.7 spec/spec_helper.rb
linkedin2-0.0.6 spec/spec_helper.rb
linkedin2-0.0.5 spec/spec_helper.rb
linkedin2-0.0.4 spec/spec_helper.rb