query_diet 0.2.2 → 0.2.3
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/Gemfile +2 -1
- data/Gemfile.lock +12 -0
- data/VERSION +1 -1
- data/query_diet.gemspec +14 -31
- metadata +48 -40
- data/.idea/encodings.xml +0 -5
- data/.idea/misc.xml +0 -25
- data/.idea/modules.xml +0 -9
- data/.idea/query_diet.iml +0 -25
- data/.idea/vcs.xml +0 -8
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -11,6 +11,13 @@ GEM
|
|
|
11
11
|
activeresource (2.3.11)
|
|
12
12
|
activesupport (= 2.3.11)
|
|
13
13
|
activesupport (2.3.11)
|
|
14
|
+
git (1.2.5)
|
|
15
|
+
jeweler (1.8.4)
|
|
16
|
+
bundler (~> 1.0)
|
|
17
|
+
git (>= 1.2.5)
|
|
18
|
+
rake
|
|
19
|
+
rdoc
|
|
20
|
+
json (1.7.3)
|
|
14
21
|
rack (1.1.0)
|
|
15
22
|
rails (2.3.11)
|
|
16
23
|
actionmailer (= 2.3.11)
|
|
@@ -20,15 +27,20 @@ GEM
|
|
|
20
27
|
activesupport (= 2.3.11)
|
|
21
28
|
rake (>= 0.8.3)
|
|
22
29
|
rake (0.8.7)
|
|
30
|
+
rdoc (3.12)
|
|
31
|
+
json (~> 1.4)
|
|
23
32
|
rspec (1.3.1)
|
|
24
33
|
rspec-rails (1.3.3)
|
|
25
34
|
rack (>= 1.0.0)
|
|
26
35
|
rspec (= 1.3.1)
|
|
36
|
+
sqlite3 (1.3.4)
|
|
27
37
|
|
|
28
38
|
PLATFORMS
|
|
29
39
|
ruby
|
|
30
40
|
|
|
31
41
|
DEPENDENCIES
|
|
42
|
+
jeweler
|
|
32
43
|
rails (~> 2.3)
|
|
33
44
|
rspec (~> 1.3)
|
|
34
45
|
rspec-rails (~> 1.3)
|
|
46
|
+
sqlite3
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.3
|
data/query_diet.gemspec
CHANGED
|
@@ -4,23 +4,18 @@
|
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
|
-
s.name =
|
|
8
|
-
s.version = "0.2.
|
|
7
|
+
s.name = "query_diet"
|
|
8
|
+
s.version = "0.2.3"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Henning Koch"]
|
|
12
|
-
s.date =
|
|
13
|
-
s.description =
|
|
14
|
-
s.email =
|
|
12
|
+
s.date = "2012-07-12"
|
|
13
|
+
s.description = "Rails database query counter that stays out of your way"
|
|
14
|
+
s.email = "github@makandra.de"
|
|
15
15
|
s.extra_rdoc_files = [
|
|
16
16
|
"README.rdoc"
|
|
17
17
|
]
|
|
18
18
|
s.files = [
|
|
19
|
-
".idea/encodings.xml",
|
|
20
|
-
".idea/misc.xml",
|
|
21
|
-
".idea/modules.xml",
|
|
22
|
-
".idea/query_diet.iml",
|
|
23
|
-
".idea/vcs.xml",
|
|
24
19
|
"Gemfile",
|
|
25
20
|
"Gemfile.lock",
|
|
26
21
|
"MIT-LICENSE",
|
|
@@ -58,28 +53,10 @@ Gem::Specification.new do |s|
|
|
|
58
53
|
"spec/support/rcov.opts",
|
|
59
54
|
"spec/support/spec.opts"
|
|
60
55
|
]
|
|
61
|
-
s.homepage =
|
|
56
|
+
s.homepage = "http://github.com/makandra/query_diet"
|
|
62
57
|
s.require_paths = ["lib"]
|
|
63
|
-
s.rubygems_version =
|
|
64
|
-
s.summary =
|
|
65
|
-
s.test_files = [
|
|
66
|
-
"spec/app_root/app/controllers/application_controller.rb",
|
|
67
|
-
"spec/app_root/app/controllers/query_diet_controller.rb",
|
|
68
|
-
"spec/app_root/app/models/movie.rb",
|
|
69
|
-
"spec/app_root/config/boot.rb",
|
|
70
|
-
"spec/app_root/config/environment.rb",
|
|
71
|
-
"spec/app_root/config/environments/in_memory.rb",
|
|
72
|
-
"spec/app_root/config/environments/mysql.rb",
|
|
73
|
-
"spec/app_root/config/environments/postgresql.rb",
|
|
74
|
-
"spec/app_root/config/environments/sqlite.rb",
|
|
75
|
-
"spec/app_root/config/environments/sqlite3.rb",
|
|
76
|
-
"spec/app_root/config/routes.rb",
|
|
77
|
-
"spec/app_root/db/migrate/001_create_movies.rb",
|
|
78
|
-
"spec/app_root/lib/console_with_fixtures.rb",
|
|
79
|
-
"spec/controllers/query_diet_controller_spec.rb",
|
|
80
|
-
"spec/logger_spec.rb",
|
|
81
|
-
"spec/spec_helper.rb"
|
|
82
|
-
]
|
|
58
|
+
s.rubygems_version = "1.3.9.3"
|
|
59
|
+
s.summary = "Rails database query counter that stays out of your way"
|
|
83
60
|
|
|
84
61
|
if s.respond_to? :specification_version then
|
|
85
62
|
s.specification_version = 3
|
|
@@ -88,15 +65,21 @@ Gem::Specification.new do |s|
|
|
|
88
65
|
s.add_runtime_dependency(%q<rails>, ["~> 2.3"])
|
|
89
66
|
s.add_runtime_dependency(%q<rspec>, ["~> 1.3"])
|
|
90
67
|
s.add_runtime_dependency(%q<rspec-rails>, ["~> 1.3"])
|
|
68
|
+
s.add_runtime_dependency(%q<sqlite3>, [">= 0"])
|
|
69
|
+
s.add_runtime_dependency(%q<jeweler>, [">= 0"])
|
|
91
70
|
else
|
|
92
71
|
s.add_dependency(%q<rails>, ["~> 2.3"])
|
|
93
72
|
s.add_dependency(%q<rspec>, ["~> 1.3"])
|
|
94
73
|
s.add_dependency(%q<rspec-rails>, ["~> 1.3"])
|
|
74
|
+
s.add_dependency(%q<sqlite3>, [">= 0"])
|
|
75
|
+
s.add_dependency(%q<jeweler>, [">= 0"])
|
|
95
76
|
end
|
|
96
77
|
else
|
|
97
78
|
s.add_dependency(%q<rails>, ["~> 2.3"])
|
|
98
79
|
s.add_dependency(%q<rspec>, ["~> 1.3"])
|
|
99
80
|
s.add_dependency(%q<rspec-rails>, ["~> 1.3"])
|
|
81
|
+
s.add_dependency(%q<sqlite3>, [">= 0"])
|
|
82
|
+
s.add_dependency(%q<jeweler>, [">= 0"])
|
|
100
83
|
end
|
|
101
84
|
end
|
|
102
85
|
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: query_diet
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 17
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
9
|
+
- 3
|
|
10
|
+
version: 0.2.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Henning Koch
|
|
@@ -15,12 +15,13 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date:
|
|
18
|
+
date: 2012-07-12 00:00:00 +02:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
24
25
|
none: false
|
|
25
26
|
requirements:
|
|
26
27
|
- - ~>
|
|
@@ -30,12 +31,12 @@ dependencies:
|
|
|
30
31
|
- 2
|
|
31
32
|
- 3
|
|
32
33
|
version: "2.3"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
requirement: *id001
|
|
34
|
+
name: rails
|
|
35
|
+
version_requirements: *id001
|
|
36
36
|
- !ruby/object:Gem::Dependency
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
type: :runtime
|
|
38
|
+
prerelease: false
|
|
39
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
39
40
|
none: false
|
|
40
41
|
requirements:
|
|
41
42
|
- - ~>
|
|
@@ -45,12 +46,12 @@ dependencies:
|
|
|
45
46
|
- 1
|
|
46
47
|
- 3
|
|
47
48
|
version: "1.3"
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
requirement: *id002
|
|
49
|
+
name: rspec
|
|
50
|
+
version_requirements: *id002
|
|
51
51
|
- !ruby/object:Gem::Dependency
|
|
52
|
-
|
|
53
|
-
|
|
52
|
+
type: :runtime
|
|
53
|
+
prerelease: false
|
|
54
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
|
54
55
|
none: false
|
|
55
56
|
requirements:
|
|
56
57
|
- - ~>
|
|
@@ -60,9 +61,36 @@ dependencies:
|
|
|
60
61
|
- 1
|
|
61
62
|
- 3
|
|
62
63
|
version: "1.3"
|
|
64
|
+
name: rspec-rails
|
|
65
|
+
version_requirements: *id003
|
|
66
|
+
- !ruby/object:Gem::Dependency
|
|
67
|
+
type: :runtime
|
|
63
68
|
prerelease: false
|
|
69
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
|
70
|
+
none: false
|
|
71
|
+
requirements:
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
hash: 3
|
|
75
|
+
segments:
|
|
76
|
+
- 0
|
|
77
|
+
version: "0"
|
|
78
|
+
name: sqlite3
|
|
79
|
+
version_requirements: *id004
|
|
80
|
+
- !ruby/object:Gem::Dependency
|
|
64
81
|
type: :runtime
|
|
65
|
-
|
|
82
|
+
prerelease: false
|
|
83
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
|
84
|
+
none: false
|
|
85
|
+
requirements:
|
|
86
|
+
- - ">="
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
hash: 3
|
|
89
|
+
segments:
|
|
90
|
+
- 0
|
|
91
|
+
version: "0"
|
|
92
|
+
name: jeweler
|
|
93
|
+
version_requirements: *id005
|
|
66
94
|
description: Rails database query counter that stays out of your way
|
|
67
95
|
email: github@makandra.de
|
|
68
96
|
executables: []
|
|
@@ -72,11 +100,6 @@ extensions: []
|
|
|
72
100
|
extra_rdoc_files:
|
|
73
101
|
- README.rdoc
|
|
74
102
|
files:
|
|
75
|
-
- .idea/encodings.xml
|
|
76
|
-
- .idea/misc.xml
|
|
77
|
-
- .idea/modules.xml
|
|
78
|
-
- .idea/query_diet.iml
|
|
79
|
-
- .idea/vcs.xml
|
|
80
103
|
- Gemfile
|
|
81
104
|
- Gemfile.lock
|
|
82
105
|
- MIT-LICENSE
|
|
@@ -143,24 +166,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
143
166
|
requirements: []
|
|
144
167
|
|
|
145
168
|
rubyforge_project:
|
|
146
|
-
rubygems_version: 1.
|
|
169
|
+
rubygems_version: 1.3.9.3
|
|
147
170
|
signing_key:
|
|
148
171
|
specification_version: 3
|
|
149
172
|
summary: Rails database query counter that stays out of your way
|
|
150
|
-
test_files:
|
|
151
|
-
|
|
152
|
-
- spec/app_root/app/controllers/query_diet_controller.rb
|
|
153
|
-
- spec/app_root/app/models/movie.rb
|
|
154
|
-
- spec/app_root/config/boot.rb
|
|
155
|
-
- spec/app_root/config/environment.rb
|
|
156
|
-
- spec/app_root/config/environments/in_memory.rb
|
|
157
|
-
- spec/app_root/config/environments/mysql.rb
|
|
158
|
-
- spec/app_root/config/environments/postgresql.rb
|
|
159
|
-
- spec/app_root/config/environments/sqlite.rb
|
|
160
|
-
- spec/app_root/config/environments/sqlite3.rb
|
|
161
|
-
- spec/app_root/config/routes.rb
|
|
162
|
-
- spec/app_root/db/migrate/001_create_movies.rb
|
|
163
|
-
- spec/app_root/lib/console_with_fixtures.rb
|
|
164
|
-
- spec/controllers/query_diet_controller_spec.rb
|
|
165
|
-
- spec/logger_spec.rb
|
|
166
|
-
- spec/spec_helper.rb
|
|
173
|
+
test_files: []
|
|
174
|
+
|
data/.idea/encodings.xml
DELETED
data/.idea/misc.xml
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="DependencyValidationManager">
|
|
4
|
-
<option name="SKIP_IMPORT_STATEMENTS" value="false" />
|
|
5
|
-
</component>
|
|
6
|
-
<component name="ProjectDetails">
|
|
7
|
-
<option name="projectName" value="query_diet" />
|
|
8
|
-
</component>
|
|
9
|
-
<component name="ProjectRootManager" version="2" project-jdk-name="Ruby SDK 1.8.7 (/usr/bin/ruby)" project-jdk-type="RUBY_SDK" />
|
|
10
|
-
<component name="SvnConfiguration">
|
|
11
|
-
<option name="USER" value="" />
|
|
12
|
-
<option name="PASSWORD" value="" />
|
|
13
|
-
<option name="LAST_MERGED_REVISION" />
|
|
14
|
-
<option name="UPDATE_RUN_STATUS" value="false" />
|
|
15
|
-
<option name="MERGE_DRY_RUN" value="false" />
|
|
16
|
-
<option name="MERGE_DIFF_USE_ANCESTRY" value="true" />
|
|
17
|
-
<option name="UPDATE_LOCK_ON_DEMAND" value="false" />
|
|
18
|
-
<option name="IGNORE_SPACES_IN_MERGE" value="false" />
|
|
19
|
-
<option name="DETECT_NESTED_COPIES" value="false" />
|
|
20
|
-
<option name="IGNORE_SPACES_IN_ANNOTATE" value="true" />
|
|
21
|
-
<option name="SHOW_MERGE_SOURCES_IN_ANNOTATE" value="true" />
|
|
22
|
-
<myIsUseDefaultProxy>false</myIsUseDefaultProxy>
|
|
23
|
-
</component>
|
|
24
|
-
</project>
|
|
25
|
-
|
data/.idea/modules.xml
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="ProjectModuleManager">
|
|
4
|
-
<modules>
|
|
5
|
-
<module fileurl="file://$PROJECT_DIR$/.idea/query_diet.iml" filepath="$PROJECT_DIR$/.idea/query_diet.iml" />
|
|
6
|
-
</modules>
|
|
7
|
-
</component>
|
|
8
|
-
</project>
|
|
9
|
-
|
data/.idea/query_diet.iml
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module type="RUBY_MODULE" version="4">
|
|
3
|
-
<component name="GemRequirementsHolder" version="2">
|
|
4
|
-
<requirement>
|
|
5
|
-
<requirement>
|
|
6
|
-
<dependency name="rails" version="0" bound="GREATER_OR_EQUAL" git="false" />
|
|
7
|
-
</requirement>
|
|
8
|
-
<source from="spec/app_root/config/boot.rb" />
|
|
9
|
-
</requirement>
|
|
10
|
-
</component>
|
|
11
|
-
<component name="NewModuleRootManager">
|
|
12
|
-
<content url="file://$MODULE_DIR$" />
|
|
13
|
-
<orderEntry type="inheritedJdk" />
|
|
14
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
|
15
|
-
<orderEntry type="library" scope="PROVIDED" name="[gem] rails (v2.3.5, /usr/lib/ruby/gems/1.8/gems/rails-2.3.5)" level="application" />
|
|
16
|
-
<orderEntry type="library" scope="PROVIDED" name="[gem] activerecord (v2.3.5, /usr/lib/ruby/gems/1.8/gems/activerecord-2.3.5)" level="application" />
|
|
17
|
-
<orderEntry type="library" scope="PROVIDED" name="[gem] rack (v1.0.1, /usr/lib/ruby/gems/1.8/gems/rack-1.0.1)" level="application" />
|
|
18
|
-
<orderEntry type="library" scope="PROVIDED" name="[gem] rake (v0.8.7, /usr/lib/ruby/gems/1.8/gems/rake-0.8.7)" level="application" />
|
|
19
|
-
<orderEntry type="library" scope="PROVIDED" name="[gem] activesupport (v2.3.5, /usr/lib/ruby/gems/1.8/gems/activesupport-2.3.5)" level="application" />
|
|
20
|
-
<orderEntry type="library" scope="PROVIDED" name="[gem] actionpack (v2.3.5, /usr/lib/ruby/gems/1.8/gems/actionpack-2.3.5)" level="application" />
|
|
21
|
-
<orderEntry type="library" scope="PROVIDED" name="[gem] actionmailer (v2.3.5, /usr/lib/ruby/gems/1.8/gems/actionmailer-2.3.5)" level="application" />
|
|
22
|
-
<orderEntry type="library" scope="PROVIDED" name="[gem] activeresource (v2.3.5, /usr/lib/ruby/gems/1.8/gems/activeresource-2.3.5)" level="application" />
|
|
23
|
-
</component>
|
|
24
|
-
</module>
|
|
25
|
-
|