-
Notifications
You must be signed in to change notification settings - Fork 111
/
phony_rails.gemspec
27 lines (22 loc) · 1.1 KB
/
phony_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
# frozen_string_literal: true
require File.expand_path('lib/phony_rails/version', __dir__)
Gem::Specification.new do |gem|
gem.authors = ['Joost Hietbrink']
gem.email = ['[email protected]']
gem.description = 'This Gem adds useful methods to your Rails app to validate, display and save phone numbers.'
gem.summary = 'This Gem adds useful methods to your Rails app to validate, display and save phone numbers.'
gem.homepage = 'https://github.com/joost/phony_rails'
gem.license = 'MIT'
gem.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = 'phony_rails'
gem.require_paths = ['lib']
gem.version = PhonyRails::VERSION
gem.required_ruby_version = '>= 2.4'
gem.add_runtime_dependency 'activesupport', '>= 3.0'
gem.add_runtime_dependency 'phony', '>= 2.18.12'
gem.add_development_dependency 'activerecord', '>= 3.0'
# For testing
gem.add_development_dependency 'sqlite3', '>= 1.4.0'
end