forked from pahanix/delegates_attributes_to
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdelegates_attributes_to.gemspec
26 lines (22 loc) · 1.33 KB
/
delegates_attributes_to.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "delegates_attributes_to/version"
Gem::Specification.new do |s|
s.name = 'delegates_attributes_to'
s.version = DelegatesAttributesTo::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['David Faber', 'Pavel Gorbokon', 'Michael Guterl']
s.email = ['[email protected]']
s.homepage = 'https://github.com/pahanix/delegates_attributes_to'
s.summary = %q{A rails plugin to allow delegation to ActiveRecord associations with dirty check and auto saving.}
s.description = %q{Association attributes delegator plugin. It delegates association attributes accessors to a model. It also supports ActiveRecord::Dirty check, multiparamenter attributes (1i, 2i, 3i) assigning, auto saving for delegated attributes.}
s.rubyforge_project = "delegates_attributes_to"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency 'rspec', '~> 1.3.0'
s.add_development_dependency 'activerecord', '~> 3.0.3'
s.add_development_dependency 'database_cleaner', '~> 0.5.2'
s.add_development_dependency 'sqlite3-ruby', '~> 1.3.2'
end