forked from topac/codice_fiscale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodice_fiscale.gemspec
30 lines (25 loc) · 1.14 KB
/
codice_fiscale.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
# frozen_string_literal: true
require File.expand_path('lib/codice_fiscale/version', __dir__)
Gem::Specification.new do |gem|
gem.authors = ['topac']
gem.email = ['[email protected]']
gem.description = 'Calculate the Italian Tax ID (Codice Fiscale)'
gem.summary = 'Calculate the Italian Tax ID (Codice Fiscale)'
gem.homepage = 'https://github.com/topac/codice_fiscale'
gem.platform = Gem::Platform::RUBY
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = 'codice-fiscale'
gem.require_paths = ['lib']
gem.version = CodiceFiscale::VERSION
gem.add_development_dependency 'guard-rspec'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rb-fsevent', '~> 0.9.1'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'rubocop'
gem.add_development_dependency 'rubocop-rails'
gem.add_development_dependency 'solargraph'
gem.add_dependency 'activemodel'
gem.add_dependency 'activesupport'
end