github.com/nycdavid/zeus@v0.0.0-20201208104106-9ba439429e03/rubygem/zeus.gemspec (about)

     1  # -*- encoding: utf-8 -*-
     2  
     3  # This preamble is basically used to deal with bundler/gem_tasks, which loads the gemspec
     4  # on rake init, even though some prerequisites are not generated until `rake build` is invoked.
     5  version = begin
     6              require File.expand_path('../lib/zeus/version', __FILE__)
     7              Zeus::VERSION
     8            rescue LoadError, NameError
     9              "0.0.0"
    10            end
    11  
    12  files = File.exist?('MANIFEST') ? File.read("MANIFEST").lines.map(&:chomp) : []
    13  
    14  Gem::Specification.new do |gem|
    15    gem.authors       = ["Burke Libbey"]
    16    gem.email         = ["burke@libbey.me"]
    17    gem.description   = %q{Boot any rails app in under a second}
    18    gem.summary       = %q{Zeus is an intelligent preloader for ruby applications. It allows normal development tasks to be run in a fraction of a second.}
    19    gem.homepage      = "https://github.com/burke/zeus"
    20  
    21    gem.files         = files
    22    gem.extensions    = []
    23    gem.executables   = ['zeus']
    24    gem.test_files    = []
    25    gem.name          = "zeus"
    26    gem.require_paths = ["lib"]
    27    gem.version       = version
    28    gem.license       = "MIT"
    29  
    30    gem.add_runtime_dependency "method_source", ">= 0.6.7"
    31  
    32    gem.add_development_dependency "bundler", '~> 1.6'
    33  end