-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathattractor-rails.gemspec
31 lines (26 loc) · 1.17 KB
/
attractor-rails.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
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "attractor/rails/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "attractor-rails"
spec.version = Attractor::Rails::VERSION
spec.authors = ["Julian Rubisch"]
spec.email = ["julian@julianrubisch.at"]
spec.license = "MIT"
spec.summary = "Churn vs Complexity Chart Generator"
spec.description = <<-DESCRIPTION
Many authors (Michael Feathers, Sandi Metz) have shown that an evaluation of
churn vs complexity of files in software projects provide a valuable metric
towards code quality. This is another take on the matter, for ruby code, using the
`churn` and `flog` projects.
DESCRIPTION
spec.homepage = "https://github.com/julianrubisch/attractor-rails"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.add_dependency "rails", ">= 6.0.3"
spec.add_dependency "attractor", ">= 2.3.0"
spec.add_dependency "attractor-ruby", "~> 0.1"
spec.add_dependency "attractor-javascript", "~> 0.1"
spec.add_development_dependency "sqlite3"
spec.add_development_dependency "standard"
end