-
Notifications
You must be signed in to change notification settings - Fork 2
/
power-types.gemspec
34 lines (29 loc) · 1.43 KB
/
power-types.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
33
34
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'power_types/version'
Gem::Specification.new do |spec|
spec.name = "power-types"
spec.version = PowerTypes::VERSION
spec.authors = ["Ignacio Baixas", "Felipe Balart"]
spec.email = ["[email protected]", "[email protected]"]
spec.summary = "Power Types for Rails by Platanus"
spec.description = "Power Types for Rails by Platanus"
spec.homepage = "https://github.com/platanus/power-types"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "activesupport"
spec.add_dependency "after_commit_everywhere", "~> 1.2", ">= 1.2.2"
spec.add_development_dependency "bundler", "~> 2.2.15"
spec.add_development_dependency "coveralls"
spec.add_development_dependency "guard", "~> 2.11"
spec.add_development_dependency "guard-rspec", "~> 4.5"
spec.add_development_dependency "pry", "~> 0.10"
spec.add_development_dependency "rake", "~> 10.4"
spec.add_development_dependency "rspec", "~> 3.1"
spec.add_development_dependency "rspec_junit_formatter"
spec.add_development_dependency "rubocop", "0.66"
spec.add_development_dependency "rubocop-rspec"
end