blind_date 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/=1.0.0 ADDED
File without changes
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.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 the gemspec command
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.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{2010-11-12}
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
- "README.rdoc"
17
+ "README.rdoc"
18
18
  ]
19
19
  s.files = [
20
20
  ".document",
21
- ".gitignore",
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/mysql_adapter.rb",
31
- "lib/blind_date/active_record/connection_adapters/postgresql_adapter.rb",
32
- "lib/blind_date/active_record/connection_adapters/sqlite3_adapter.rb",
33
- "lib/blind_date/active_record/connection_adapters/sqlite_adapter.rb",
34
- "spec/blind_date_spec.rb",
35
- "spec/spec.opts",
36
- "spec/spec_helper.rb"
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
- "spec/spec_helper.rb"
45
+ "spec/spec_helper.rb"
46
46
  ]
47
47
 
48
48
  if s.respond_to? :specification_version then
@@ -0,0 +1,2 @@
1
+ require 'blind_date/active_record/connection_adapters/mysql_adapter.rb'
2
+
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
- - 0
9
- version: 1.0.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: 2010-11-12 00:00:00 -05:00
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
- - .gitignore
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
- - --charset=UTF-8
83
+ rdoc_options: []
84
+
84
85
  require_paths:
85
86
  - lib
86
87
  required_ruby_version: !ruby/object:Gem::Requirement
data/.gitignore DELETED
@@ -1,21 +0,0 @@
1
- ## MAC OS
2
- .DS_Store
3
-
4
- ## TEXTMATE
5
- *.tmproj
6
- tmtags
7
-
8
- ## EMACS
9
- *~
10
- \#*
11
- .\#*
12
-
13
- ## VIM
14
- *.swp
15
-
16
- ## PROJECT::GENERAL
17
- coverage
18
- rdoc
19
- pkg
20
-
21
- ## PROJECT::SPECIFIC