forked from rails/spring
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspring.gemspec
More file actions
27 lines (21 loc) · 880 Bytes
/
spring.gemspec
File metadata and controls
27 lines (21 loc) · 880 Bytes
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
26
27
require './lib/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 = ">= 2.7.0"
gem.add_dependency 'mutex_m'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'bump'
gem.add_development_dependency 'activesupport'
gem.metadata = {
"rubygems_mfa_required" => "true",
}
end