-
Notifications
You must be signed in to change notification settings - Fork 0
/
scorpion.gemspec
32 lines (27 loc) · 1.26 KB
/
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
26
27
28
29
30
31
32
lib = File.expand_path("../lib", __FILE__)
$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." # rubocop:disable Metrics/LineLength
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.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency "rails", ">= 4.0"
spec.required_ruby_version = ">= 2.4.0"
spec.add_development_dependency "bundler", "~> 2"
spec.add_development_dependency "combustion", "~> 1"
spec.add_development_dependency "rake", "~> 13"
spec.add_development_dependency "rspec", "~> 3.00"
spec.add_development_dependency "rspec-rails", "~> 5"
spec.add_development_dependency "sqlite3"
end