opener-s3-outlet 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 95688f53614510d0600c1b1b2512b69cd4864b5d
4
- data.tar.gz: fea5db52a43ffb44691518e09a9f53296a5e239b
3
+ metadata.gz: cc67a8dfab71c0e68bc631acdd3a1fc0cc8ce867
4
+ data.tar.gz: 4c4e9d2920a19b3609e503284cb8e8b8ced5cad0
5
5
  SHA512:
6
- metadata.gz: c921551823e38dc67e9702ae3e5edcc75dde2a412a56c47d652ba9f1b473985b9ed9b6abcb4e94fb326da3dd6efb44d1d7b44dcf88ffd1273f9a852b070eaf8b
7
- data.tar.gz: 39d672082d75b9df6e6fee621080d2a917c737a50998bd9bed525a507d7282b9a274de5ffc95033f1d21355b1c115561fd7d608ff886bec3dda7e3e6bd826b85
6
+ metadata.gz: 29c8ea92af64513141deccb4e7f8e8d18bab33b00d9ca7909d120f1319c9032b170ac95d96cebb9853d313917492fd57d290b78f65146fec2588c223d28698d6
7
+ data.tar.gz: d7ee424a36e1965bd8e3adf2eb9e06d6f01aaa64f51908518a01b4ce6794beb8f04a1dcddcebe5af3903cd358cc2836a8542aa7ad889077bc63e85e8f9ffe019
@@ -1,6 +1,5 @@
1
1
  require 'aws-sdk'
2
2
 
3
- require_relative '../../config/aws'
4
3
  require_relative 's3_outlet/s3_output'
5
4
  require_relative 's3_outlet/version'
6
5
  require_relative 's3_outlet/server'
@@ -3,8 +3,6 @@ require 'nokogiri'
3
3
  require 'stringio'
4
4
  require_relative './visualizer'
5
5
 
6
- require File.expand_path('../../../../config/aws', __FILE__)
7
-
8
6
  module Opener
9
7
  class S3Outlet
10
8
  class Server < Sinatra::Base
@@ -1,5 +1,5 @@
1
1
  module Opener
2
2
  class S3Outlet
3
- VERSION = "1.0.1"
3
+ VERSION = "1.1.0"
4
4
  end
5
5
  end
@@ -11,7 +11,6 @@ Gem::Specification.new do |gem|
11
11
  gem.required_ruby_version = '>= 1.9.2'
12
12
 
13
13
  gem.files = Dir.glob([
14
- 'config/**/*',
15
14
  'exec/**/*',
16
15
  'lib/**/*',
17
16
  'config.ru',
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opener-s3-outlet
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - development@olery.com
@@ -204,7 +204,6 @@ files:
204
204
  - bin/s3-outlet-daemon
205
205
  - bin/s3-outlet-server
206
206
  - config.ru
207
- - config/aws.rb
208
207
  - exec/s3-outlet.rb
209
208
  - lib/opener/s3_outlet.rb
210
209
  - lib/opener/s3_outlet/public/outlet.css
data/config/aws.rb DELETED
@@ -1,8 +0,0 @@
1
- # These details are tied to the "opener" AWS user.
2
- AWS.config(
3
- :access_key_id => 'AKIAIZH4THHTIHYS22NA',
4
- :secret_access_key => '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',
5
- :sqs_region => 'eu-west-1',
6
- :sqs_endpoint => 'sqs.eu-west-1.amazonaws.com',
7
- :s3_endpoint => 's3-eu-west-1.amazonaws.com',
8
- )