Sha256: 489ef468eba65ac56ba90d7d12aff00f8d2bec9744d84d83e21cd8de9a5e4a9b
Contents?: true
Size: 1.72 KB
Versions: 1
Compression:
Stored size: 1.72 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'departure/version' # This environment variable is set on CI to facilitate testing with multiple # versions of Rails. RAILS_DEPENDENCY_VERSION = ENV.fetch('RAILS_VERSION', ['>= 5.2.0', '!= 7.0.0', '< 7.1']) Gem::Specification.new do |spec| spec.name = 'departure' spec.version = Departure::VERSION spec.authors = ['Ilya Zayats', 'Pau PĂ©rez', 'Fran Casas', 'Jorge Morante', 'Enrico Stano', 'Adrian Serafin', 'Kirk Haines', 'Guillermo Iguaran'] spec.email = ['ilya.zayats@redbooth.com', 'pau.perez@redbooth.com', 'nflamel@gmail.com', 'jorge.morante@redbooth.com', 'adrian@softmad.pl', 'wyhaines@gmail.com', 'guilleiguaran@gmail.com'] spec.summary = %q(pt-online-schema-change runner for ActiveRecord migrations) spec.description = %q(Execute your ActiveRecord migrations with Percona's pt-online-schema-change. Formerly known as Percona Migrator.) spec.homepage = 'https://github.com/departurerb/departure' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.require_paths = ['lib'] spec.add_runtime_dependency 'railties', *Array(RAILS_DEPENDENCY_VERSION) spec.add_runtime_dependency 'activerecord', *Array(RAILS_DEPENDENCY_VERSION) spec.add_runtime_dependency 'mysql2', '>= 0.4.0', '<= 0.5.5' spec.add_development_dependency 'rake', '>= 10.0' spec.add_development_dependency 'rspec', '~> 3.4', '>= 3.4.0' spec.add_development_dependency 'rspec-its', '~> 1.2' spec.add_development_dependency 'pry-byebug' spec.add_development_dependency 'climate_control', '~> 0.0.3' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
departure-6.5.0 | departure.gemspec |