mysql2_model 0.1.1 → 0.1.2
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/CHANGELOG.md +3 -0
- data/README.rdoc +8 -5
- data/VERSION +1 -1
- data/lib/mysql2_model.rb +1 -3
- data/mysql2_model.gemspec +2 -2
- metadata +4 -4
data/CHANGELOG.md
CHANGED
data/README.rdoc
CHANGED
|
@@ -124,13 +124,11 @@ reduced the memory footprint.
|
|
|
124
124
|
|
|
125
125
|
end
|
|
126
126
|
|
|
127
|
-
== Documentation
|
|
128
|
-
|
|
129
|
-
* http://rubydoc.info/github/donnoman/mysql2_model
|
|
130
|
-
|
|
131
127
|
== Troubleshooting
|
|
132
128
|
|
|
133
|
-
* {
|
|
129
|
+
* {Issue tracker}[http://github.com/donnoman/mysql2_model/issues/]
|
|
130
|
+
* {Documentation}[http://rubydoc.info/github/donnoman/mysql2_model/master/frames]
|
|
131
|
+
* {mysql2_model@googlegroups.com}[http://groups.google.com/group/mysql2_model]
|
|
134
132
|
|
|
135
133
|
== Note on Patches/Pull Requests
|
|
136
134
|
|
|
@@ -158,6 +156,11 @@ reduced the memory footprint.
|
|
|
158
156
|
* Datamapper with mysql2 adapter http://datamapper.org
|
|
159
157
|
* RBatis is the port of iBatis to Ruby and Ruby on Rails. http://ibatis.apache.org/docs/ruby (Appears to be discontinued)
|
|
160
158
|
|
|
159
|
+
== Admin
|
|
160
|
+
|
|
161
|
+
* {RubyTracker}[http://rubytracker.com/projects/425] As soon as there is a public url I will include it in the readme under troubleshooting.
|
|
162
|
+
* {RubyGems}[http://rubygems.org/gems/mysql2_model]
|
|
163
|
+
|
|
161
164
|
== Special Thanks
|
|
162
165
|
|
|
163
166
|
* Brian Lopez - Mysql2 Gem (http://github.com/brianmario/mysql2)
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.2
|
data/lib/mysql2_model.rb
CHANGED
data/mysql2_model.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{mysql2_model}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["donnoman"]
|
|
12
|
-
s.date = %q{2010-
|
|
12
|
+
s.date = %q{2010-11-19}
|
|
13
13
|
s.description = %q{Provides a class suitable to be used as a model, that includes connection management, variable interpolation, object coercion and helper methods to support using direct MySQL statements for database interaction.}
|
|
14
14
|
s.email = %q{donnoman@donovanbray.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mysql2_model
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 31
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.1.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- donnoman
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-
|
|
18
|
+
date: 2010-11-19 00:00:00 +00:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|