# encoding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'right_support/version' Gem::Specification.new do |spec| spec.name = "right_support" spec.version = RightSupport::VERSION spec.authors = ["Tony Spataro", "Sergey Sergyenko", "Ryan Williamson", "Lee Kirchhoff", "Alexey Karpik", "Scott Messier"] spec.email = "support@rightscale.com" spec.summary = "Reusable foundation code." spec.description = "A toolkit of useful, reusable foundation code created by RightScale." spec.homepage = "https://github.com/rightscale/right_support" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{lib/|gemspec}) } spec.require_paths = ['lib'] spec.required_ruby_version = Gem::Requirement.new('~> 2.1') # RightSupport has no mandatory dependencies. It has some optional # dependencies (i.e. gems that it will require and use if they are present). # For more information, refer right_support/Gemfile. end