File: spring.gemspec

package info (click to toggle)
ruby-spring 4.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 444 kB
  • sloc: ruby: 3,584; sh: 9; makefile: 7
file content (23 lines) | stat: -rw-r--r-- 860 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$LOAD_PATH.unshift(File.expand_path('lib', File.dirname(__FILE__)))
require 'spring/version'

Gem::Specification.new do |gem|
  gem.name          = "spring"
  gem.version       = Spring::VERSION
  gem.authors       = ["Jon Leighton"]
  gem.email         = ["j@jonathanleighton.com"]
  gem.summary       = "Rails application preloader"
  gem.description   = "Preloads your application so things like console, rake and tests run faster"
  gem.homepage      = "https://github.com/rails/spring"
  gem.license       = "MIT"

  gem.files         = Dir["LICENSE.txt", "README.md", "lib/**/*", "bin/*"]
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }

  gem.required_ruby_version = ">= 3.1.0"

  gem.metadata = {
    "rubygems_mfa_required" => "true",
    "changelog_uri" => "https://github.com/rails/spring/blob/main/CHANGELOG.md"
  }
end