swift 0.6.0 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/ext/result.cc +1 -1
- data/swift.gemspec +1 -1
- data/test/test_adapter.rb +4 -0
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.1
|
data/ext/result.cc
CHANGED
@@ -212,7 +212,7 @@ VALUE result_fields(VALUE self) {
|
|
212
212
|
std::vector<string> result_fields = result->fields();
|
213
213
|
VALUE fields = rb_ary_new();
|
214
214
|
for (int i = 0; i < result_fields.size(); i++)
|
215
|
-
rb_ary_push(fields,
|
215
|
+
rb_ary_push(fields, ID2SYM(rb_intern(result_fields[i].c_str())));
|
216
216
|
return fields;
|
217
217
|
}
|
218
218
|
CATCH_DBI_EXCEPTIONS();
|
data/swift.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{swift}
|
8
|
-
s.version = "0.6.
|
8
|
+
s.version = "0.6.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Shane Hanna", "Bharanee 'Barney' Rathna"]
|
data/test/test_adapter.rb
CHANGED