sequel_rails3 0.0.3 → 0.0.4
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 +10 -10
- data/VERSION +1 -1
- data/lib/sequel_rails3/railtie.rb +1 -0
- data/sequel_rails3.gemspec +19 -21
- metadata +6 -7
- data/.gitignore +0 -22
data/Rakefile
CHANGED
|
@@ -21,17 +21,17 @@ rescue LoadError
|
|
|
21
21
|
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
|
22
22
|
end
|
|
23
23
|
|
|
24
|
-
require 'spec/rake/spectask'
|
|
25
|
-
Spec::Rake::SpecTask.new(:spec) do |spec|
|
|
26
|
-
spec.libs << 'lib' << 'spec'
|
|
27
|
-
spec.spec_files = FileList['spec/**/*_spec.rb']
|
|
28
|
-
end
|
|
24
|
+
#require 'spec/rake/spectask'
|
|
25
|
+
#Spec::Rake::SpecTask.new(:spec) do |spec|
|
|
26
|
+
# spec.libs << 'lib' << 'spec'
|
|
27
|
+
# spec.spec_files = FileList['spec/**/*_spec.rb']
|
|
28
|
+
#end
|
|
29
29
|
|
|
30
|
-
Spec::Rake::SpecTask.new(:rcov) do |spec|
|
|
31
|
-
spec.libs << 'lib' << 'spec'
|
|
32
|
-
spec.pattern = 'spec/**/*_spec.rb'
|
|
33
|
-
spec.rcov = true
|
|
34
|
-
end
|
|
30
|
+
#Spec::Rake::SpecTask.new(:rcov) do |spec|
|
|
31
|
+
# spec.libs << 'lib' << 'spec'
|
|
32
|
+
# spec.pattern = 'spec/**/*_spec.rb'
|
|
33
|
+
# spec.rcov = true
|
|
34
|
+
#end
|
|
35
35
|
|
|
36
36
|
task :spec => :check_dependencies
|
|
37
37
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.4
|
data/sequel_rails3.gemspec
CHANGED
|
@@ -1,46 +1,44 @@
|
|
|
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{sequel_rails3}
|
|
8
|
-
s.version = "0.0.
|
|
8
|
+
s.version = "0.0.4"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Corin Langosch"]
|
|
12
|
-
s.date = %q{
|
|
12
|
+
s.date = %q{2011-03-15}
|
|
13
13
|
s.description = %q{Sequel plugin which provides geo distance-based filters and distance calculation functionality for model.}
|
|
14
14
|
s.email = %q{info@netskin.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
|
-
"spec/spec_helper.rb"
|
|
21
|
+
"LICENSE",
|
|
22
|
+
"README.rdoc",
|
|
23
|
+
"Rakefile",
|
|
24
|
+
"VERSION",
|
|
25
|
+
"lib/sequel_rails3.rb",
|
|
26
|
+
"lib/sequel_rails3/configuration.rb",
|
|
27
|
+
"lib/sequel_rails3/logger.rb",
|
|
28
|
+
"lib/sequel_rails3/railtie.rb",
|
|
29
|
+
"lib/sequel_rails3/railties/controller_runtime.rb",
|
|
30
|
+
"sequel_rails3.gemspec",
|
|
31
|
+
"spec/sequel_rails3_spec.rb",
|
|
32
|
+
"spec/spec.opts",
|
|
33
|
+
"spec/spec_helper.rb"
|
|
35
34
|
]
|
|
36
35
|
s.homepage = %q{http://github.com/gucki/sequel_rails3}
|
|
37
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
|
38
36
|
s.require_paths = ["lib"]
|
|
39
37
|
s.rubygems_version = %q{1.3.7}
|
|
40
38
|
s.summary = %q{Use sequel as a replacement for activerecord with rails 3}
|
|
41
39
|
s.test_files = [
|
|
42
|
-
"spec/
|
|
43
|
-
|
|
40
|
+
"spec/sequel_rails3_spec.rb",
|
|
41
|
+
"spec/spec_helper.rb"
|
|
44
42
|
]
|
|
45
43
|
|
|
46
44
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 0.0.
|
|
8
|
+
- 4
|
|
9
|
+
version: 0.0.4
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Corin Langosch
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date:
|
|
17
|
+
date: 2011-03-15 00:00:00 +01:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
@@ -73,7 +73,6 @@ extra_rdoc_files:
|
|
|
73
73
|
- README.rdoc
|
|
74
74
|
files:
|
|
75
75
|
- .document
|
|
76
|
-
- .gitignore
|
|
77
76
|
- LICENSE
|
|
78
77
|
- README.rdoc
|
|
79
78
|
- Rakefile
|
|
@@ -92,8 +91,8 @@ homepage: http://github.com/gucki/sequel_rails3
|
|
|
92
91
|
licenses: []
|
|
93
92
|
|
|
94
93
|
post_install_message:
|
|
95
|
-
rdoc_options:
|
|
96
|
-
|
|
94
|
+
rdoc_options: []
|
|
95
|
+
|
|
97
96
|
require_paths:
|
|
98
97
|
- lib
|
|
99
98
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
@@ -120,5 +119,5 @@ signing_key:
|
|
|
120
119
|
specification_version: 3
|
|
121
120
|
summary: Use sequel as a replacement for activerecord with rails 3
|
|
122
121
|
test_files:
|
|
123
|
-
- spec/spec_helper.rb
|
|
124
122
|
- spec/sequel_rails3_spec.rb
|
|
123
|
+
- spec/spec_helper.rb
|