-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodify.gemspec
28 lines (24 loc) · 1.31 KB
/
codify.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/codify/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Ronald Ping Man Chan"]
gem.description = %q{Transparently encodes text before saving to your database.}
gem.summary = %q{Automatically encodes any desired text attributes for saving to database, and unencodes when retrieving the field. Includes encoding for compression, encryption and error checking.}
gem.homepage = "https://github.com/ronalchn/codify"
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 = "codify"
gem.require_paths = ["lib"]
gem.version = Codify::VERSION
# specify any dependencies here; for example:
gem.add_development_dependency "rake"
gem.add_development_dependency "rspec"
gem.add_development_dependency "sqlite3"
gem.add_development_dependency "database_cleaner"
gem.add_development_dependency "datamapper"
gem.add_development_dependency "debugger" if RUBY_VERSION != '1.8.7' # support 1.8.7+
gem.add_development_dependency "ruby-debug" if RUBY_VERSION == '1.8.7'
gem.add_runtime_dependency "activerecord", '>= 3.0'
end