-
Notifications
You must be signed in to change notification settings - Fork 6
/
metafy.gemspec
23 lines (19 loc) · 1.1 KB
/
metafy.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "metafy"
s.version = "1.0.3"
s.platform = Gem::Platform::RUBY
s.authors = ["Blair Williams","Brandon Toone"]
s.email = ["blair@caseproof.com","btoone@gmail.com"]
s.homepage = "http://blairwilliams.com/ruby-on-rails/metafy"
s.summary = %q{Dynamic Attributes Engine for Rails 3}
s.description = %q{Metafy is a Gem for Rails 3 that makes it possible to easily add dynamic attributes to any ActiveRecord model. These lightweight, meta attributes work just like normal database column attributes on your ActiveRecord model and are fully searchable (i.e. you can find records by values contained in these dynamic attributes).}
s.add_dependency('rails','>= 3.0.3')
s.license = 'MIT'
s.rubyforge_project = "metafy"
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 = ["app","config","lib"]
end