-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathencrypted_attributes.gemspec
More file actions
21 lines (19 loc) · 997 Bytes
/
encrypted_attributes.gemspec
File metadata and controls
21 lines (19 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$LOAD_PATH.unshift File.expand_path('../lib', __FILE__)
require 'encrypted_attributes/version'
Gem::Specification.new do |s|
s.name = "encrypted_attributes"
s.version = EncryptedAttributes::VERSION
s.authors = ["Aaron Pfeifer"]
s.email = "aaron@pluginaweek.org"
s.homepage = "http://www.pluginaweek.org"
s.description = "Adds support for automatically encrypting ActiveRecord attributes"
s.summary = "Encrypts ActiveRecord attributes"
s.require_paths = ["lib"]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
s.rdoc_options = %w(--line-numbers --inline-source --title encrypted_attributes --main README.rdoc)
s.extra_rdoc_files = %w(README.rdoc CHANGELOG.rdoc LICENSE)
s.add_dependency("encrypted_strings", ">= 0.3.3")
s.add_development_dependency("rake")
s.add_development_dependency("plugin_test_helper", ">= 0.3.2")
end