-
Notifications
You must be signed in to change notification settings - Fork 2
/
slim-attributes.gemspec
55 lines (51 loc) · 1.62 KB
/
slim-attributes.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{slim-attributes}
s.version = "0.7.8"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Stephen Sykes"]
s.date = %q{2010-09-27}
s.description = %q{Slim attributes boosts speed in Rails/Mysql ActiveRecord Models by avoiding
instantiating Hashes for each result row, and lazily instantiating attributes as needed.}
s.email = %q{[email protected]}
s.extensions = ["ext/extconf.rb"]
s.extra_rdoc_files = [
"README"
]
s.files = [
"MIT_LICENCE",
"README",
"Rakefile",
"VERSION.yml",
"ext/extconf.rb",
"ext/slim_attrib_ext.c",
"lib/slim-attributes.rb",
"lib/slim_attributes.rb",
"test/benchmark.rb",
"test/database.yml",
"test/products.rb",
"test/slim_attributes_test.rb",
"test/slim_db_test_utils.rb"
]
s.homepage = %q{http://github.com/sdsykes/slim-attributes}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{slim-attributes}
s.rubygems_version = %q{1.3.5}
s.summary = %q{Slim-attributes - lazy instantiation of attributes for ActiveRecord}
s.test_files = [
"test/benchmark.rb",
"test/products.rb",
"test/slim_attributes_test.rb",
"test/slim_db_test_utils.rb"
]
s.add_dependency('mysql')
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
else
end
else
end
end