mirror of
https://github.com/wahyd4/ruby-sdk.git
synced 2026-08-09 12:56:21 +10:00
12 lines
264 B
Ruby
Executable File
12 lines
264 B
Ruby
Executable File
# -*- encoding: utf-8 -*-
|
|
|
|
require 'bundler/setup'
|
|
require 'qiniu/rs'
|
|
require 'rspec'
|
|
|
|
RSpec.configure do |config|
|
|
config.before :all do
|
|
Qiniu::RS.establish_connection! :access_key => ENV["QINIU_ACCESS_KEY"], :secret_key => ENV["QINIU_SECRET_KEY"]
|
|
end
|
|
end
|