-
Notifications
You must be signed in to change notification settings - Fork 8
/
persistize.gemspec
28 lines (23 loc) · 1.03 KB
/
persistize.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 -*-
$:.unshift File.expand_path('../lib', __FILE__)
require 'persistize/version'
Gem::Specification.new do |s|
s.name = "persistize"
s.version = Persistize::VERSION
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Sergio Gil", "Luismi Cavallé", "Paco Guzmán"]
s.email = "[email protected]"
s.extra_rdoc_files = ["README.rdoc"]
s.files = %w(init.rb MIT-LICENSE persistize.gemspec Rakefile README.rdoc) + Dir.glob("{test,lib/**/*}")
s.homepage = "http://github.com/bebanjo/persistize"
s.rdoc_options = ["--main", "README.rdoc"]
s.require_paths = ["lib"]
s.rubygems_version = "1.6.2"
s.summary = "Easy denormalization for your ActiveRecord models"
s.specification_version = 3 if s.respond_to? :specification_version
s.add_dependency("activerecord", ">= 3.1.0")
s.add_development_dependency("shoulda")
s.add_development_dependency("rake")
s.add_development_dependency("rdoc")
s.add_development_dependency("sqlite3")
end