blazer 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of blazer might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2abc84ccb66e4bc713b59739c5ecbed82411375c
4
- data.tar.gz: 821d99ac43d210bf09a1bf63ce7cf82701e57acf
3
+ metadata.gz: c76491b2936f131b04b198dbd1a36a0e10ba0500
4
+ data.tar.gz: 5cbfff8d2d610da3ed0352328b05de7e8a04bb16
5
5
  SHA512:
6
- metadata.gz: e4945e0f6fb08913aaa5b3e3b6f9d9244a6408a5e094deff5fb384ecc2745d30eeb943ad7b827de8e3d4ee53035d0c16d58e9fe52b910a219c0739c19605c4ec
7
- data.tar.gz: 8eb0e8f3a2b6e155fd9c45c63cbe8a5e176bd45e2dc5c83db60ceb716d2a0cf8da2a368cd13ea15ed255507a5fb6a713b972462bc27745b4aefa12f375424b23
6
+ metadata.gz: 1b2e877250e2f1088e34ed5f541b25c133ed2b8ec4b6fac34e468ea233a90a4d4b96568d4cd599de4f4d701578a2eeef21c68d13c3143d331a3bf0d7180cea32
7
+ data.tar.gz: 1aea7e790bd9c65b66ebd2e9d93a7b427ebe50140832e9e8cb6b7d7057e81b7ca7a7e7e2955bb6ed44ecf59f8427761c9d4a15a9b1bcc465812539c4c2c7a58d
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 1.0.3
2
+
3
+ - Added maps
4
+ - Added support for Rails 4.0
5
+
1
6
  ## 1.0.2
2
7
 
3
8
  - Fixed error when installing
data/README.md CHANGED
@@ -230,6 +230,16 @@ SELECT date_trunc('week', created_at), gender, COUNT(*) FROM users GROUP BY 1, 2
230
230
  SELECT gender, COUNT(*) FROM users GROUP BY 1
231
231
  ```
232
232
 
233
+ ### Maps
234
+
235
+ Columns named `latitude` and `longitude` or `lat` and `lon`.
236
+
237
+ ```sql
238
+ SELECT name, latitude, longtitude FROM cities
239
+ ```
240
+
241
+ To enable, get an access token from [Mapbox](https://www.mapbox.com/) and set `ENV["MAPBOX_ACCESS_TOKEN"]`.
242
+
233
243
  ## Dashboards
234
244
 
235
245
  Create a dashboard with multiple queries. [Example](https://blazerme.herokuapp.com/dashboards/1-movielens)
@@ -418,11 +428,13 @@ Created by [ankane](https://github.com/ankane) and [righi](https://github.com/ri
418
428
 
419
429
  Demo data from [MovieLens](http://grouplens.org/datasets/movielens/).
420
430
 
421
- ## Contributing
431
+ ## Want to Make Blazer Better?
422
432
 
423
- Everyone is encouraged to help improve this project. Here are a few ways you can help:
433
+ That’s awesome! Here are a few ways you can help:
424
434
 
425
435
  - [Report bugs](https://github.com/ankane/blazer/issues)
426
436
  - Fix bugs and [submit pull requests](https://github.com/ankane/blazer/pulls)
427
437
  - Write, clarify, or fix documentation
428
438
  - Suggest or add new features
439
+
440
+ Check out the [dev app](https://github.com/ankane/blazer-dev) to get started.
@@ -16,3 +16,10 @@
16
16
  //= require ./ace/snippets/text
17
17
  //= require ./ace/snippets/sql
18
18
  //= require ./Sortable
19
+ //= require ./bootstrap
20
+
21
+ $( function () {
22
+ $('.dropdown-toggle').mouseenter( function () {
23
+ $(this).parent().addClass('open');
24
+ });
25
+ });