-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscorpion.gemspec
25 lines (20 loc) · 887 Bytes
/
scorpion.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
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "scorpion/version"
Gem::Specification.new do |spec|
spec.name = "scorpion-ioc"
spec.version = "#{Scorpion::VERSION}"
spec.authors = ["Paul Alexander"]
spec.email = ["me@phallguy.com"]
spec.summary = "Add IoC to rails with minimal fuss and ceremony"
spec.description = "Embrace convention over configuration while still benefitting from dependency injection design principles."
spec.homepage = "https://github.com/phallguy/scorpion"
spec.license = "MIT"
spec.files = Dir["lib/**/*.rb"] + Dir["bin/*"]
spec.files += Dir["[A-Z]*"] + Dir["spec/**/*"]
spec.files << "scorpion.gemspec"
spec.files.reject! { |fn| fn.include?(".git") }
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 3.3.0"
spec.metadata["rubygems_mfa_required"] = "true"
end