Sha256: 9229ce8b93f6640c9280018e193132542db32f4efbad5075d29253364e1679de

Contents?: true

Size: 1.7 KB

Versions: 2

Compression:

Stored size: 1.7 KB

Contents

# Copyright (c) 2012 SnowPlow Analytics Ltd. All rights reserved.
#
# This program is licensed to you under the Apache License Version 2.0,
# and you may not use this file except in compliance with the Apache License Version 2.0.
# You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0.
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the Apache License Version 2.0 is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.

# Author::    Alex Dean (mailto:support@snowplowanalytics.com)
# Copyright:: Copyright (c) 2012 SnowPlow Analytics Ltd
# License::   Apache License Version 2.0

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'sluice'

Gem::Specification.new do |gem|
  gem.authors       = ["Alex Dean", "Michael Tibben"]
  gem.email         = ["support@snowplowanalytics.com"]
  gem.summary       = %q{Ruby toolkit for cloud-friendly ETL}
  gem.description   = %q{A Ruby gem to help you build ETL processes involving Amazon S3. Uses Fog}
  gem.homepage      = "http://snowplowanalytics.com"

  gem.files         = `git ls-files`.split($\)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.name          = Sluice::NAME
  gem.version       = Sluice::VERSION
  gem.platform      = Gem::Platform::RUBY
  gem.require_paths = ["lib"]

  # Dependencies
  gem.add_dependency 'fog', '~> 1.14.0'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sluice-0.0.9 sluice.gemspec
sluice-0.0.8 sluice.gemspec