-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmass_encryption.gemspec
33 lines (27 loc) · 1.24 KB
/
mass_encryption.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
require_relative "lib/mass_encryption/version"
Gem::Specification.new do |spec|
spec.name = "mass_encryption"
spec.version = MassEncryption::VERSION
spec.authors = [ "Jorge Manrubia" ]
spec.email = [ "[email protected]" ]
spec.homepage = "http://github.com/basecamp/mass_encryption"
spec.summary = "Encrypt data in mass with Active Record Encryption"
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
if spec.respond_to?(:metadata)
spec.metadata['allowed_push_host'] = "https://rubygems.org"
else
raise 'RubyGems 2.0 or newer is required to protect against ' \
'public gem pushes.'
end
spec.add_dependency "rails", ">= 7.0.0"
spec.add_development_dependency "mysql2"
spec.add_development_dependency "pg"
spec.add_development_dependency "rubocop"
spec.add_development_dependency "rubocop-performance"
spec.add_development_dependency "rubocop-rails"
spec.add_development_dependency "mocha"
end