mysql2_model 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.1 (September 2nd, 2010)
4
+ * Fixed README.rdoc causing warnings on gem installation
5
+
3
6
  ## 0.1.0 (September 2nd, 2010)
4
7
  * First Gem Release
5
8
  * Added Documentation
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
- * {Mysql2Model issue tracker}[http://github.com/donnoman/mysql2_model/issues/]
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
1
+ 0.1.2
data/lib/mysql2_model.rb CHANGED
@@ -1,7 +1,5 @@
1
1
  require 'rubygems'
2
- require 'active_support/core_ext/object/blank'
3
- require 'active_support/core_ext/time'
4
- require 'active_support/core_ext/date_time'
2
+ require 'active_support/core_ext'
5
3
  require 'mysql2'
6
4
  require 'forwardable'
7
5
  require 'logging'
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.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-09-03}
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: 25
4
+ hash: 31
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 1
10
- version: 0.1.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-09-03 00:00:00 +00:00
18
+ date: 2010-11-19 00:00:00 +00:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency