Sha256: 6e0530c657f80c2f57dffabeb58c4e6374e264f424366546df245dd1af8d2ce0
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'ruby_dep/version' # Yes, inception: we're using this ourselves require 'ruby_dep/travis' Gem::Specification.new do |spec| spec.name = 'ruby_dep' spec.version = RubyDep::VERSION spec.authors = ['Cezary Baginski'] spec.email = ['cezary@chronomantic.net'] spec.summary = 'Extracts supported Ruby versions from Travis file' spec.description = 'Creates a version constraint of supported Rubies,' \ 'suitable for a gemspec file' spec.homepage = 'https://github.com/e2/ruby_dep' spec.license = 'MIT' spec.required_ruby_version = RubyDep::Travis.new.version_constraint spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.12.a' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby_dep-1.0.0 | ruby_dep.gemspec |