blind_date 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/=1.0.0 +0 -0
- data/VERSION +1 -1
- data/blind_date.gemspec +22 -22
- data/lib/blind_date/active_record/connection_adapters/mysql2_adapter.rb +2 -0
- data/spec/spec_helper.rb +1 -1
- metadata +7 -6
- data/.gitignore +0 -21
data/=1.0.0
ADDED
File without changes
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.1
|
data/blind_date.gemspec
CHANGED
@@ -1,48 +1,48 @@
|
|
1
1
|
# Generated by jeweler
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{blind_date}
|
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 = ["Ari Epstein"]
|
12
|
-
s.date = %q{
|
12
|
+
s.date = %q{2011-01-06}
|
13
13
|
s.description = %q{Allows you to utilize date calculation functionality of DBMS with a uniform API}
|
14
14
|
s.email = %q{aepstein607@gmail.com}
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE",
|
17
|
-
|
17
|
+
"README.rdoc"
|
18
18
|
]
|
19
19
|
s.files = [
|
20
20
|
".document",
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
21
|
+
"=1.0.0",
|
22
|
+
"LICENSE",
|
23
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"blind_date.gemspec",
|
27
|
+
"lib/blind_date.rb",
|
28
|
+
"lib/blind_date/active_record/base.rb",
|
29
|
+
"lib/blind_date/active_record/connection_adapters/abstract_adapter.rb",
|
30
|
+
"lib/blind_date/active_record/connection_adapters/mysql2_adapter.rb",
|
31
|
+
"lib/blind_date/active_record/connection_adapters/mysql_adapter.rb",
|
32
|
+
"lib/blind_date/active_record/connection_adapters/postgresql_adapter.rb",
|
33
|
+
"lib/blind_date/active_record/connection_adapters/sqlite3_adapter.rb",
|
34
|
+
"lib/blind_date/active_record/connection_adapters/sqlite_adapter.rb",
|
35
|
+
"spec/blind_date_spec.rb",
|
36
|
+
"spec/spec.opts",
|
37
|
+
"spec/spec_helper.rb"
|
37
38
|
]
|
38
39
|
s.homepage = %q{http://github.com/aepstein/blind_date}
|
39
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
40
40
|
s.require_paths = ["lib"]
|
41
41
|
s.rubygems_version = %q{1.3.7}
|
42
42
|
s.summary = %q{DBMS-indepedent methods to query dates in ActiveRecord}
|
43
43
|
s.test_files = [
|
44
44
|
"spec/blind_date_spec.rb",
|
45
|
-
|
45
|
+
"spec/spec_helper.rb"
|
46
46
|
]
|
47
47
|
|
48
48
|
if s.respond_to? :specification_version then
|
data/spec/spec_helper.rb
CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
2
2
|
require 'activerecord'
|
3
3
|
|
4
4
|
ENV['TZ'] = 'UTC'
|
5
|
-
Time.zone = 'Eastern Time (US & Canada)'
|
5
|
+
#Time.zone = 'Eastern Time (US & Canada)'
|
6
6
|
|
7
7
|
ActiveRecord::Base.establish_connection(:adapter => 'sqlite3', :database => ':memory:')
|
8
8
|
ActiveRecord::Base.configurations = true
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 1
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 1.0.
|
8
|
+
- 1
|
9
|
+
version: 1.0.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Ari Epstein
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date:
|
17
|
+
date: 2011-01-06 00:00:00 -05:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -58,7 +58,7 @@ extra_rdoc_files:
|
|
58
58
|
- README.rdoc
|
59
59
|
files:
|
60
60
|
- .document
|
61
|
-
- .
|
61
|
+
- =1.0.0
|
62
62
|
- LICENSE
|
63
63
|
- README.rdoc
|
64
64
|
- Rakefile
|
@@ -67,6 +67,7 @@ files:
|
|
67
67
|
- lib/blind_date.rb
|
68
68
|
- lib/blind_date/active_record/base.rb
|
69
69
|
- lib/blind_date/active_record/connection_adapters/abstract_adapter.rb
|
70
|
+
- lib/blind_date/active_record/connection_adapters/mysql2_adapter.rb
|
70
71
|
- lib/blind_date/active_record/connection_adapters/mysql_adapter.rb
|
71
72
|
- lib/blind_date/active_record/connection_adapters/postgresql_adapter.rb
|
72
73
|
- lib/blind_date/active_record/connection_adapters/sqlite3_adapter.rb
|
@@ -79,8 +80,8 @@ homepage: http://github.com/aepstein/blind_date
|
|
79
80
|
licenses: []
|
80
81
|
|
81
82
|
post_install_message:
|
82
|
-
rdoc_options:
|
83
|
-
|
83
|
+
rdoc_options: []
|
84
|
+
|
84
85
|
require_paths:
|
85
86
|
- lib
|
86
87
|
required_ruby_version: !ruby/object:Gem::Requirement
|