sql_record 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/sql_record.gemspec +2 -1
- metadata +4 -4
data/Rakefile
CHANGED
|
@@ -16,7 +16,7 @@ Jeweler::Tasks.new do |gem|
|
|
|
16
16
|
gem.homepage = "http://github.com/visfleet/sql_record"
|
|
17
17
|
gem.license = "MIT"
|
|
18
18
|
gem.summary = %Q{SQL direct mapping to ActiveRecord}
|
|
19
|
-
|
|
19
|
+
gem.description = %Q{Do you use ActiveRecord::Connection.execute for speed sometimes? Does it bother you that the results are not mapped to your schema and type-cast as ActiveRecord would? Well that's what SQLRecord does.}
|
|
20
20
|
gem.email = "rasheed@visfleet.com"
|
|
21
21
|
gem.authors = ["Rasheed Abdul-Aziz"]
|
|
22
22
|
# Include your dependencies below. Runtime dependencies are required when using your gem,
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.1
|
data/sql_record.gemspec
CHANGED
|
@@ -5,11 +5,12 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{sql_record}
|
|
8
|
-
s.version = "1.0.
|
|
8
|
+
s.version = "1.0.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Rasheed Abdul-Aziz"]
|
|
12
12
|
s.date = %q{2011-04-08}
|
|
13
|
+
s.description = %q{Do you use ActiveRecord::Connection.execute for speed sometimes? Does it bother you that the results are not mapped to your schema and type-cast as ActiveRecord would? Well that's what SQLRecord does.}
|
|
13
14
|
s.email = %q{rasheed@visfleet.com}
|
|
14
15
|
s.extra_rdoc_files = [
|
|
15
16
|
"LICENSE.txt",
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sql_record
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 21
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 1.0.
|
|
9
|
+
- 1
|
|
10
|
+
version: 1.0.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Rasheed Abdul-Aziz
|
|
@@ -110,7 +110,7 @@ dependencies:
|
|
|
110
110
|
prerelease: false
|
|
111
111
|
type: :development
|
|
112
112
|
requirement: *id006
|
|
113
|
-
description:
|
|
113
|
+
description: Do you use ActiveRecord::Connection.execute for speed sometimes? Does it bother you that the results are not mapped to your schema and type-cast as ActiveRecord would? Well that's what SQLRecord does.
|
|
114
114
|
email: rasheed@visfleet.com
|
|
115
115
|
executables: []
|
|
116
116
|
|