pgexplain 0.1.0 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.2
data/pgexplain.gemspec ADDED
@@ -0,0 +1,50 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{pgexplain}
8
+ s.version = "0.1.2"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Ramon Salvad\303\263", "Marcus Wyatt"]
12
+ s.date = %q{2010-02-22}
13
+ s.description = %q{The Rails gem shows the output, in your application logs, of applying "Explain" or "Explain Analyze" to the select queries of your rails application.}
14
+ s.email = %q{marcus.wyatt@visfleet.com, rsalvado@gnuine.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "lib/adapter_extensions.rb",
27
+ "lib/pg_explain.rb",
28
+ "pgexplain.gemspec",
29
+ "rails/init.rb"
30
+ ]
31
+ s.homepage = %q{http://github.com/marcus-wyatt/pgexplain}
32
+ s.rdoc_options = ["--charset=UTF-8"]
33
+ s.require_paths = ["lib"]
34
+ s.rubygems_version = %q{1.3.6}
35
+ s.summary = %q{Outputs "Explain" or "Explain Analyze" in your developement application log.}
36
+
37
+ if s.respond_to? :specification_version then
38
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
39
+ s.specification_version = 3
40
+
41
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
42
+ s.add_runtime_dependency(%q<pg>, [">= 0.8.0"])
43
+ else
44
+ s.add_dependency(%q<pg>, [">= 0.8.0"])
45
+ end
46
+ else
47
+ s.add_dependency(%q<pg>, [">= 0.8.0"])
48
+ end
49
+ end
50
+
File without changes
metadata CHANGED
@@ -1,7 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pgexplain
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 1
8
+ - 2
9
+ version: 0.1.2
5
10
  platform: ruby
6
11
  authors:
7
12
  - "Ramon Salvad\xC3\xB3"
@@ -10,19 +15,23 @@ autorequire:
10
15
  bindir: bin
11
16
  cert_chain: []
12
17
 
13
- date: 2010-02-08 00:00:00 +13:00
18
+ date: 2010-02-22 00:00:00 +13:00
14
19
  default_executable:
15
20
  dependencies:
16
21
  - !ruby/object:Gem::Dependency
17
22
  name: pg
18
- type: :runtime
19
- version_requirement:
20
- version_requirements: !ruby/object:Gem::Requirement
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
21
25
  requirements:
22
26
  - - ">="
23
27
  - !ruby/object:Gem::Version
28
+ segments:
29
+ - 0
30
+ - 8
31
+ - 0
24
32
  version: 0.8.0
25
- version:
33
+ type: :runtime
34
+ version_requirements: *id001
26
35
  description: The Rails gem shows the output, in your application logs, of applying "Explain" or "Explain Analyze" to the select queries of your rails application.
27
36
  email: marcus.wyatt@visfleet.com, rsalvado@gnuine.com
28
37
  executables: []
@@ -39,9 +48,10 @@ files:
39
48
  - README.rdoc
40
49
  - Rakefile
41
50
  - VERSION
42
- - init.rb
43
51
  - lib/adapter_extensions.rb
44
52
  - lib/pg_explain.rb
53
+ - pgexplain.gemspec
54
+ - rails/init.rb
45
55
  has_rdoc: true
46
56
  homepage: http://github.com/marcus-wyatt/pgexplain
47
57
  licenses: []
@@ -55,18 +65,20 @@ required_ruby_version: !ruby/object:Gem::Requirement
55
65
  requirements:
56
66
  - - ">="
57
67
  - !ruby/object:Gem::Version
68
+ segments:
69
+ - 0
58
70
  version: "0"
59
- version:
60
71
  required_rubygems_version: !ruby/object:Gem::Requirement
61
72
  requirements:
62
73
  - - ">="
63
74
  - !ruby/object:Gem::Version
75
+ segments:
76
+ - 0
64
77
  version: "0"
65
- version:
66
78
  requirements: []
67
79
 
68
80
  rubyforge_project:
69
- rubygems_version: 1.3.5
81
+ rubygems_version: 1.3.6
70
82
  signing_key:
71
83
  specification_version: 3
72
84
  summary: Outputs "Explain" or "Explain Analyze" in your developement application log.