-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdo_postgres.gemspec
104 lines (100 loc) · 3.25 KB
/
do_postgres.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{do_postgres}
s.version = "0.10.18"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Dirkjan Bussink"]
s.description = %q{Implements the DataObjects API for PostgreSQL}
s.email = %q{[email protected]}
s.extensions = ["ext/do_postgres/extconf.rb"]
s.extra_rdoc_files = [
"ChangeLog.markdown",
"LICENSE",
"README.markdown"
]
s.files = [
"ChangeLog.markdown",
"LICENSE",
"README.markdown",
"Rakefile",
"ext/do_postgres/compat.h",
"ext/do_postgres/do_common.c",
"ext/do_postgres/do_common.h",
"ext/do_postgres/do_postgres.c",
"ext/do_postgres/error.h",
"ext/do_postgres/extconf.rb",
"ext/do_postgres/pg_config.h",
"lib/do_postgres.rb",
"lib/do_postgres/encoding.rb",
"lib/do_postgres/transaction.rb",
"lib/do_postgres/version.rb",
"spec/command_spec.rb",
"spec/connection_spec.rb",
"spec/encoding_spec.rb",
"spec/error/sql_error_spec.rb",
"spec/reader_spec.rb",
"spec/result_spec.rb",
"spec/spec_helper.rb",
"spec/typecast/array_spec.rb",
"spec/typecast/bigdecimal_spec.rb",
"spec/typecast/boolean_spec.rb",
"spec/typecast/byte_array_spec.rb",
"spec/typecast/class_spec.rb",
"spec/typecast/date_spec.rb",
"spec/typecast/datetime_spec.rb",
"spec/typecast/float_spec.rb",
"spec/typecast/integer_spec.rb",
"spec/typecast/nil_spec.rb",
"spec/typecast/other_spec.rb",
"spec/typecast/range_spec.rb",
"spec/typecast/string_spec.rb",
"spec/typecast/time_spec.rb",
"tasks/compile.rake",
"tasks/release.rake",
"tasks/retrieve.rake",
"tasks/spec.rake"
]
s.require_paths = ["lib"]
s.rubyforge_project = %q{dorb}
s.rubygems_version = %q{1.6.2}
s.summary = %q{DataObjects PostgreSQL Driver}
s.test_files = [
"spec/command_spec.rb",
"spec/connection_spec.rb",
"spec/encoding_spec.rb",
"spec/error/sql_error_spec.rb",
"spec/reader_spec.rb",
"spec/result_spec.rb",
"spec/spec_helper.rb",
"spec/typecast/array_spec.rb",
"spec/typecast/bigdecimal_spec.rb",
"spec/typecast/boolean_spec.rb",
"spec/typecast/byte_array_spec.rb",
"spec/typecast/class_spec.rb",
"spec/typecast/date_spec.rb",
"spec/typecast/datetime_spec.rb",
"spec/typecast/float_spec.rb",
"spec/typecast/integer_spec.rb",
"spec/typecast/nil_spec.rb",
"spec/typecast/other_spec.rb",
"spec/typecast/range_spec.rb",
"spec/typecast/string_spec.rb",
"spec/typecast/time_spec.rb"
]
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<data_objects>, ["= 0.10.18"])
s.add_development_dependency(%q<rspec>, ["~> 2.5"])
s.add_development_dependency(%q<rake-compiler>, ["~> 0.7"])
else
s.add_dependency(%q<data_objects>, ["= 0.10.18"])
s.add_dependency(%q<rspec>, ["~> 2.5"])
s.add_dependency(%q<rake-compiler>, ["~> 0.7"])
end
else
s.add_dependency(%q<data_objects>, ["= 0.10.18"])
s.add_dependency(%q<rspec>, ["~> 2.5"])
s.add_dependency(%q<rake-compiler>, ["~> 0.7"])
end
end