sluice.gemspec in sluice-0.1.5 vs sluice.gemspec in sluice-0.2.0

- old
+ new

@@ -1,6 +1,6 @@ -# Copyright (c) 2012 SnowPlow Analytics Ltd. All rights reserved. +# Copyright (c) 2012-2014 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. # @@ -8,17 +8,17 @@ # 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 +# Copyright:: Copyright (c) 2012-2014 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' +require 'sluice/version' 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} @@ -28,12 +28,19 @@ 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.license = "Apache-2.0" gem.platform = Gem::Platform::RUBY gem.require_paths = ["lib"] # Dependencies - gem.add_dependency 'fog', '~> 1.14.0' - gem.add_dependency 'contracts', '~> 0.2.3' + gem.add_dependency 'contracts', '~> 0.4' + gem.add_dependency 'fog', '~> 1.22' + + gem.add_development_dependency "rspec", "~> 2.14", ">= 2.14.1" + gem.add_development_dependency "rspec-nc" + gem.add_development_dependency "guard" + gem.add_development_dependency "guard-rspec" + gem.add_development_dependency "coveralls" end