glimpse 0.0.4 → 0.0.5
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 -1
- data/README.md +6 -1
- data/app/assets/javascripts/glimpse.coffee +1 -1
- data/lib/glimpse/version.rb +1 -1
- metadata +2 -2
data/CHANGELOG.md
CHANGED
|
@@ -13,4 +13,8 @@
|
|
|
13
13
|
# 0.0.4
|
|
14
14
|
|
|
15
15
|
- Don't capture ` being pressed when in combination with `cmd`
|
|
16
|
-
- Support for [Turbolinks](https://github.com/rails/turbolinks)
|
|
16
|
+
- Support for [Turbolinks](https://github.com/rails/turbolinks) (#14)
|
|
17
|
+
|
|
18
|
+
# 0.0.5
|
|
19
|
+
|
|
20
|
+
- Namespace the tooltips to the `.glimpse-tooltip` class name to not conflict with any application styles for `.tooltip`. (#18)
|
data/README.md
CHANGED
|
@@ -128,6 +128,10 @@ end
|
|
|
128
128
|
You're done! Now every time a PJAX request is made, the Glimpse bar will update
|
|
129
129
|
with the Glimpse results of the PJAX request.
|
|
130
130
|
|
|
131
|
+
## Using Glimpse with Turbolinks
|
|
132
|
+
|
|
133
|
+
It just works.
|
|
134
|
+
|
|
131
135
|
## Access Control
|
|
132
136
|
|
|
133
137
|
You probably don't want to give this data to ALL your users. So by default Glimpse
|
|
@@ -149,11 +153,12 @@ end
|
|
|
149
153
|
- [glimpse-git](https://github.com/dewski/glimpse-git)
|
|
150
154
|
- [glimpse-mongo](https://github.com/dewski/glimpse-mongo)
|
|
151
155
|
- [glimpse-mysql2](https://github.com/dewski/glimpse-mysql2)
|
|
156
|
+
- [glimpse-performance_bar](https://github.com/dewski/glimpse-performance_bar)
|
|
152
157
|
- [glimpse-pg](https://github.com/dewski/glimpse-pg)
|
|
153
158
|
- [glimpse-redis](https://github.com/dewski/glimpse-redis)
|
|
154
159
|
- [glimpse-resque](https://github.com/dewski/glimpse-resque)
|
|
155
160
|
- [glimpse-sidekiq](https://github.com/suranyami/glimpse-sidekiq)
|
|
156
|
-
-
|
|
161
|
+
- [glimpse-svn](https://github.com/neilco/glimpse-svn)
|
|
157
162
|
- Unicorn :soon:
|
|
158
163
|
|
|
159
164
|
Feel free to submit a Pull Request adding your own Glimpse item to this list.
|
|
@@ -8,7 +8,7 @@ updatePerformanceBar = ->
|
|
|
8
8
|
$(this).text data
|
|
9
9
|
|
|
10
10
|
initializeTipsy = ->
|
|
11
|
-
$('#glimpse .tooltip').each ->
|
|
11
|
+
$('#glimpse .glimpse-tooltip, #glimpse .tooltip').each ->
|
|
12
12
|
el = $(this)
|
|
13
13
|
gravity = if el.hasClass('rightwards') then 'w' else 'n'
|
|
14
14
|
gravity = if el.hasClass('leftwards') then 'e' else gravity
|
data/lib/glimpse/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: glimpse
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
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-03-
|
|
12
|
+
date: 2013-03-20 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rails
|