Sha256: d33cbc5782e7ac09267fcff07c39abdd31b1f83e31bf0cafcfdfae8472e4c4a5

Contents?: true

Size: 786 Bytes

Versions: 6

Compression:

Stored size: 786 Bytes

Contents

if ENV['SIMPLECOV']
  require 'simplecov'
  SimpleCov.start 'rails'
  puts 'required simplecov'
end
require 'webmock/rspec'
require 'awesome_print'
require 'factory_girl'
require 'vcr'
require 'support/factories'

require 'bundler/setup'
Bundler.setup

require 'pushbullet'

VCR.configure do |c|
  c.allow_http_connections_when_no_cassette = false
  c.cassette_library_dir = 'spec/fixtures/vcr_cassettes'
  c.hook_into :webmock # or :fakeweb
end

RSpec.configure do |config|
  config.raise_errors_for_deprecations!
  config.run_all_when_everything_filtered = true
  config.filter_run focus: true
  config.order = 'random'
  config.include FactoryGirl::Syntax::Methods

  Dir['./spec/shared/**/*.rb'].each { |f| require f }
end

Pushbullet.api_token = 'DhOX5Q8Fps9mq4g90yfrfioRPyo1qQRd'

Version data entries

6 entries across 4 versions & 2 rubygems

Version Path
tdiary-5.0.5 vendor/bundle/gems/ruby-pushbullet-0.1.4/spec/spec_helper.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/ruby-pushbullet-0.1.4/spec/spec_helper.rb
tdiary-5.0.4 vendor/bundle/gems/ruby-pushbullet-0.1.4/spec/spec_helper.rb
tdiary-4.2.1 vendor/bundle/ruby/2.2.0/gems/ruby-pushbullet-0.1.4/spec/spec_helper.rb
tdiary-4.2.1 vendor/bundle/ruby/2.3.0/gems/ruby-pushbullet-0.1.4/spec/spec_helper.rb
ruby-pushbullet-0.1.4 spec/spec_helper.rb