forked from cgriego/active_attr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
active_attr.gemspec
27 lines (23 loc) · 1.19 KB
/
active_attr.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
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/active_attr/version", __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Chris Griego", "Ben Poweski"]
gem.email = ["[email protected]", "[email protected]"]
gem.description = %q{Create plain old ruby models without reinventing the wheel.}
gem.summary = %q{What ActiveModel left out}
gem.homepage = "https://github.com/cgriego/active_attr"
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 = "active_attr"
gem.require_paths = ["lib"]
gem.version = ActiveAttr::VERSION
gem.add_runtime_dependency "activemodel", ">= 3.0.2", "< 5.0"
gem.add_runtime_dependency "activesupport", ">= 3.0.2", "< 5.0"
gem.add_development_dependency "bundler", "~> 1.0"
gem.add_development_dependency "factory_girl", ">= 2.2", "< 5.0"
gem.add_development_dependency "minitest"
gem.add_development_dependency "rake", ">= 0.9.0", "< 10.4"
gem.add_development_dependency "rspec", "~> 3.0"
gem.add_development_dependency "tzinfo"
end