peek 0.1.1 → 0.1.2
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/CHANGELOG.md +5 -0
- data/README.md +2 -2
- data/lib/peek/adapters/{memcached.rb → memcache.rb} +1 -1
- data/lib/peek/version.rb +1 -1
- metadata +3 -3
data/CHANGELOG.md
CHANGED
@@ -34,3 +34,8 @@
|
|
34
34
|
# 0.1.1
|
35
35
|
|
36
36
|
- Fix bug with how `peek:render` was passing arguments around.
|
37
|
+
|
38
|
+
# 0.1.2
|
39
|
+
|
40
|
+
- Fix path to memcache adapter - [#34](https://github.com/peek/peek/pull/34) [@grk](https://github.com/grk)
|
41
|
+
- Prevent namespace collision when using [peek-dalli](https://github.com/peek/peek-dalli) - [#34](https://github.com/peek/peek/pull/34) [@grk](https://github.com/grk)
|
data/README.md
CHANGED
@@ -30,7 +30,7 @@ file:
|
|
30
30
|
|
31
31
|
```ruby
|
32
32
|
Some::Application.routes.draw do
|
33
|
-
mount Peek::
|
33
|
+
mount Peek::Railtie => '/peek'
|
34
34
|
root :to => 'home#show'
|
35
35
|
end
|
36
36
|
```
|
@@ -71,7 +71,7 @@ It will look like:
|
|
71
71
|
|
72
72
|
Peek fetches the data collected throughout your requests by using the unique request id
|
73
73
|
that was assigned to the request by Rails. It will call out to its own controller at
|
74
|
-
[Peek::ResultsController](https://github.com/peek/peek/blob/master/app/
|
74
|
+
[Peek::ResultsController](https://github.com/peek/peek/blob/master/app/controllers/peek/results_controller.rb) which will render the data and be inserted into the bar.
|
75
75
|
|
76
76
|
Now that you have the partials in your application, you will need to include the
|
77
77
|
CSS and JS that help make Peek :sparkles:
|
data/lib/peek/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: peek
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-05-
|
12
|
+
date: 2013-05-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -85,7 +85,7 @@ files:
|
|
85
85
|
- config/routes.rb
|
86
86
|
- lib/peek.rb
|
87
87
|
- lib/peek/adapters/base.rb
|
88
|
-
- lib/peek/adapters/
|
88
|
+
- lib/peek/adapters/memcache.rb
|
89
89
|
- lib/peek/adapters/memory.rb
|
90
90
|
- lib/peek/adapters/redis.rb
|
91
91
|
- lib/peek/controller_helpers.rb
|