forked from rails/spring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspring.gemspec
25 lines (20 loc) · 848 Bytes
/
spring.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require './lib/spring/version'
Gem::Specification.new do |gem|
gem.name = "spring"
gem.version = Spring::VERSION
gem.authors = ["Jon Leighton"]
gem.email = ["[email protected]"]
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 = ">= 2.7.0"
gem.add_development_dependency 'rake'
gem.add_development_dependency 'bump'
gem.add_development_dependency 'activesupport'
gem.metadata = {
"rubygems_mfa_required" => "true",
}
end