dismissible_helpers 0.3.0 → 0.3.1
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.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/app/assets/javascripts/dismissible_helpers.coffee +15 -13
- data/lib/dismissible_helpers/helpers/dismissible_helpers.rb +4 -2
- data/lib/dismissible_helpers/version.rb +1 -1
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +1080 -0
- data/spec/dummy/log/test.log +2627 -0
- data/spec/dummy/tmp/cache/assets/C50/1F0/sprockets%2Ff99382e227031a381d3d326b87e08037 +0 -0
- data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/spec/dummy/tmp/cache/assets/CE3/590/sprockets%2F60f1e97d7008b3ed41f72855a4228bb9 +0 -0
- data/spec/dummy/tmp/cache/assets/D03/E50/sprockets%2F169bc1c3638f38ab485ecb5202fc3501 +0 -0
- data/spec/dummy/tmp/cache/assets/D0B/350/sprockets%2F0c6a94a65b00a6e80488b89705ee0c5a +0 -0
- data/spec/dummy/tmp/cache/assets/D0C/F20/sprockets%2F3869efaa2d2da3e0349f0106b855b782 +0 -0
- data/spec/dummy/tmp/cache/assets/D23/B10/sprockets%2Fc2a831ed79df487d6485a5c9c52766c2 +0 -0
- data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/spec/dummy/tmp/cache/assets/D69/820/sprockets%2Ffe1a12587102ec194ea9b2e6dcb2495e +0 -0
- data/spec/dummy/tmp/cache/assets/D78/B10/sprockets%2F971d83856d3e7be5f2d7d4aa371e2ee1 +0 -0
- data/spec/dummy/tmp/cache/assets/DE9/260/sprockets%2Fadd025ab0eb13a6d4180af43d5df39df +0 -0
- data/spec/dummy/tmp/cache/assets/E72/C10/sprockets%2Fcee94ff2e026b6ecc66c7fcef96c1fc8 +0 -0
- data/spec/dummy/tmp/pids/server.pid +1 -0
- data/spec/requests/authenticated_spec.rb +1 -0
- data/spec/requests/unauthenticated_spec.rb +1 -0
- metadata +12 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ca88babf8f417255b402c07a9dce91f8955d3c61
|
4
|
+
data.tar.gz: 3d8e91249618e66897d8b527fbd48efa17d0d74e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 421736453e43e9f240c854e5cbe0deb0e37ea68322a0ae6555f65b41519cb3214e46d450d4e0b870fedbb7e71e6f75e5368558b6167fbd4ca484b4e6c3f68b8c
|
7
|
+
data.tar.gz: 214207303c2eed248975866102089aee97e4839e3b43c4f2952796e99632334c766f46a94ad249c1227ed0d85ad9374c2d586b1b1b64a2be26c04ecc98ff3770
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# DismissibleHelpers #
|
2
2
|
|
3
3
|
[](https://travis-ci.org/dockyard/dismissible_helpers)
|
4
|
-
[](https://codeclimate.com/github/dockyard/dismissible_helpers)
|
5
5
|
|
6
6
|
|
7
7
|
|
@@ -131,7 +131,7 @@ will use this to retrieve the current user/account.
|
|
131
131
|
The model should have an attribute called `dismissed_helpers` which should
|
132
132
|
be an array type. You can use ActiveRecord's serialization to achieve this:
|
133
133
|
|
134
|
-
|
134
|
+
First add this `dismissed_helpers` column as a `text` column
|
135
135
|
|
136
136
|
```ruby
|
137
137
|
class AddDismissedHelpersToAccounts < ActiveRecord::Migration
|
@@ -145,7 +145,7 @@ class AddDismissedHelpersToAccounts < ActiveRecord::Migration
|
|
145
145
|
end
|
146
146
|
```
|
147
147
|
|
148
|
-
|
148
|
+
Then add the serization call to the model
|
149
149
|
|
150
150
|
```ruby
|
151
151
|
class Account < ActiveRecord::Base
|
@@ -3,21 +3,23 @@
|
|
3
3
|
options = {} if options == undefined
|
4
4
|
options.closeSelector ?= '.close'
|
5
5
|
options.openSelector ?= '.open'
|
6
|
-
options.name = @.attr('data-dismissible-name')
|
7
6
|
|
8
|
-
@find(options.closeSelector).click (event) ->
|
9
|
-
$target = $ event.target
|
10
|
-
$helper = $target.parent()
|
11
|
-
event.preventDefault()
|
12
7
|
|
13
|
-
|
8
|
+
@each ->
|
9
|
+
$this = $ @
|
10
|
+
$this.find(options.closeSelector).click (event) ->
|
11
|
+
$target = $ event.target
|
12
|
+
$helper = $target.parent()
|
13
|
+
event.preventDefault()
|
14
14
|
|
15
|
-
|
16
|
-
$target = $ event.target
|
17
|
-
$helper = $target.parent()
|
18
|
-
event.preventDefault()
|
15
|
+
$helper.dismiss(options)
|
19
16
|
|
20
|
-
$
|
17
|
+
$this.find(options.openSelector).click (event) ->
|
18
|
+
$target = $ event.target
|
19
|
+
$helper = $target.parent()
|
20
|
+
event.preventDefault()
|
21
|
+
|
22
|
+
$helper.restore(options)
|
21
23
|
|
22
24
|
$.fn.dismiss = (options) ->
|
23
25
|
restorable = @.attr('data-restorable') is 'true'
|
@@ -26,7 +28,7 @@
|
|
26
28
|
type: 'POST'
|
27
29
|
dataType: 'json'
|
28
30
|
data:
|
29
|
-
helper:
|
31
|
+
helper: @.attr('data-dismissible-name')
|
30
32
|
success: =>
|
31
33
|
if options? and options.dismiss != undefined
|
32
34
|
options.dismiss(@)
|
@@ -40,7 +42,7 @@
|
|
40
42
|
|
41
43
|
$.fn.restore = (options) ->
|
42
44
|
$.rails.ajax
|
43
|
-
url: '/dismissed_helpers/' +
|
45
|
+
url: '/dismissed_helpers/' + @.attr('data-dismissible-name')
|
44
46
|
type: 'DELETE'
|
45
47
|
dataType: 'json'
|
46
48
|
success: =>
|
@@ -3,8 +3,10 @@ module DismissibleHelpers::Helpers::DismissibleHelpers
|
|
3
3
|
def render_dismissible_helper(name, options = {}, &block)
|
4
4
|
contents = block_given? ? capture(&block) : nil
|
5
5
|
restorable = options.fetch(:restorable) { false }
|
6
|
-
|
7
|
-
|
6
|
+
if restorable || !dismissed?(name)
|
7
|
+
builder = restorable ? DismissibleHelpers::RestorableContentBuilder : DismissibleHelpers::ContentBuilder
|
8
|
+
builder.build(name, contents, options.merge({ dismissed: dismissed?(name) }))
|
9
|
+
end
|
8
10
|
end
|
9
11
|
|
10
12
|
private
|
data/spec/dummy/db/test.sqlite3
CHANGED
Binary file
|
@@ -1487,3 +1487,1083 @@ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
1487
1487
|
|
1488
1488
|
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2012-12-30 20:54:12 -0500
|
1489
1489
|
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
1490
|
+
|
1491
|
+
|
1492
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:15:53 -0400
|
1493
|
+
Connecting to database specified by database.yml
|
1494
|
+
Processing by LandingController#show as HTML
|
1495
|
+
Rendered landing/show.html.erb within layouts/application (10.3ms)
|
1496
|
+
Compiled application.css (0ms) (pid 81763)
|
1497
|
+
Compiled jquery.js (3ms) (pid 81763)
|
1498
|
+
Compiled jquery_ujs.js (0ms) (pid 81763)
|
1499
|
+
Compiled dismissible_helpers.js (207ms) (pid 81763)
|
1500
|
+
Compiled application.js (455ms) (pid 81763)
|
1501
|
+
Completed 200 OK in 552ms (Views: 551.1ms | ActiveRecord: 0.0ms)
|
1502
|
+
|
1503
|
+
|
1504
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:15:54 -0400
|
1505
|
+
Served asset /application.css - 200 OK (5ms)
|
1506
|
+
|
1507
|
+
|
1508
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:15:54 -0400
|
1509
|
+
Served asset /jquery.js - 200 OK (2ms)
|
1510
|
+
|
1511
|
+
|
1512
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:15:54 -0400
|
1513
|
+
Served asset /jquery_ujs.js - 200 OK (2ms)
|
1514
|
+
|
1515
|
+
|
1516
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:15:54 -0400
|
1517
|
+
Served asset /application.js - 200 OK (4ms)
|
1518
|
+
|
1519
|
+
|
1520
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:15:54 -0400
|
1521
|
+
Served asset /dismissible_helpers.js - 200 OK (1ms)
|
1522
|
+
|
1523
|
+
|
1524
|
+
Started POST "/dismissed_helpers" for 127.0.0.1 at 2013-05-24 08:15:56 -0400
|
1525
|
+
Processing by DismissedHelpersController#create as JSON
|
1526
|
+
Parameters: {"helper"=>"hello"}
|
1527
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1528
|
+
|
1529
|
+
|
1530
|
+
Started POST "/dismissed_helpers" for 127.0.0.1 at 2013-05-24 08:15:57 -0400
|
1531
|
+
Processing by DismissedHelpersController#create as JSON
|
1532
|
+
Parameters: {"helper"=>"hello"}
|
1533
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1534
|
+
|
1535
|
+
|
1536
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:15:58 -0400
|
1537
|
+
Processing by LandingController#show as HTML
|
1538
|
+
Rendered landing/show.html.erb within layouts/application (0.6ms)
|
1539
|
+
Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
1540
|
+
|
1541
|
+
|
1542
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:15:58 -0400
|
1543
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1544
|
+
|
1545
|
+
|
1546
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:15:58 -0400
|
1547
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1548
|
+
|
1549
|
+
|
1550
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:15:58 -0400
|
1551
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1552
|
+
|
1553
|
+
|
1554
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:15:58 -0400
|
1555
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1556
|
+
|
1557
|
+
|
1558
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:15:58 -0400
|
1559
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
1560
|
+
|
1561
|
+
|
1562
|
+
Started POST "/dismissed_helpers" for 127.0.0.1 at 2013-05-24 08:15:59 -0400
|
1563
|
+
Processing by DismissedHelpersController#create as JSON
|
1564
|
+
Parameters: {"helper"=>"hello2"}
|
1565
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1566
|
+
|
1567
|
+
|
1568
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:16:00 -0400
|
1569
|
+
Processing by LandingController#show as HTML
|
1570
|
+
Rendered landing/show.html.erb within layouts/application (0.1ms)
|
1571
|
+
Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
1572
|
+
|
1573
|
+
|
1574
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:16:00 -0400
|
1575
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1576
|
+
|
1577
|
+
|
1578
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:16:00 -0400
|
1579
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1580
|
+
|
1581
|
+
|
1582
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:16:00 -0400
|
1583
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1584
|
+
|
1585
|
+
|
1586
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:16:00 -0400
|
1587
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
1588
|
+
|
1589
|
+
|
1590
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:16:00 -0400
|
1591
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1592
|
+
|
1593
|
+
|
1594
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:16:04 -0400
|
1595
|
+
Processing by LandingController#show as HTML
|
1596
|
+
Rendered landing/show.html.erb within layouts/application (0.1ms)
|
1597
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
1598
|
+
|
1599
|
+
|
1600
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:16:04 -0400
|
1601
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1602
|
+
|
1603
|
+
|
1604
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:16:04 -0400
|
1605
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1606
|
+
|
1607
|
+
|
1608
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:16:04 -0400
|
1609
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1610
|
+
|
1611
|
+
|
1612
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:16:04 -0400
|
1613
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1614
|
+
|
1615
|
+
|
1616
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:16:04 -0400
|
1617
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
1618
|
+
|
1619
|
+
|
1620
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:16:36 -0400
|
1621
|
+
Processing by LandingController#show as HTML
|
1622
|
+
Rendered landing/show.html.erb within layouts/application (0.4ms)
|
1623
|
+
Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
1624
|
+
|
1625
|
+
|
1626
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:16:36 -0400
|
1627
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1628
|
+
|
1629
|
+
|
1630
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:16:36 -0400
|
1631
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1632
|
+
|
1633
|
+
|
1634
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:16:36 -0400
|
1635
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1636
|
+
|
1637
|
+
|
1638
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:16:36 -0400
|
1639
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
1640
|
+
|
1641
|
+
|
1642
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:16:36 -0400
|
1643
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1644
|
+
|
1645
|
+
|
1646
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:17:40 -0400
|
1647
|
+
Processing by LandingController#show as HTML
|
1648
|
+
Rendered landing/show.html.erb within layouts/application (0.4ms)
|
1649
|
+
Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
1650
|
+
|
1651
|
+
|
1652
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:17:40 -0400
|
1653
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1654
|
+
|
1655
|
+
|
1656
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:17:40 -0400
|
1657
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1658
|
+
|
1659
|
+
|
1660
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:17:40 -0400
|
1661
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1662
|
+
|
1663
|
+
|
1664
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:17:40 -0400
|
1665
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1666
|
+
|
1667
|
+
|
1668
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:17:40 -0400
|
1669
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
1670
|
+
|
1671
|
+
|
1672
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:19:42 -0400
|
1673
|
+
Processing by LandingController#show as HTML
|
1674
|
+
Rendered landing/show.html.erb within layouts/application (0.4ms)
|
1675
|
+
Compiled dismissible_helpers.js (186ms) (pid 81763)
|
1676
|
+
Compiled application.js (153ms) (pid 81763)
|
1677
|
+
Completed 200 OK in 390ms (Views: 390.2ms | ActiveRecord: 0.0ms)
|
1678
|
+
|
1679
|
+
|
1680
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:19:43 -0400
|
1681
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1682
|
+
|
1683
|
+
|
1684
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:19:43 -0400
|
1685
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1686
|
+
|
1687
|
+
|
1688
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:19:43 -0400
|
1689
|
+
Served asset /application.js - 304 Not Modified (6ms)
|
1690
|
+
|
1691
|
+
|
1692
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:19:43 -0400
|
1693
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1694
|
+
|
1695
|
+
|
1696
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:19:43 -0400
|
1697
|
+
Served asset /dismissible_helpers.js - 200 OK (3ms)
|
1698
|
+
|
1699
|
+
|
1700
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:21:58 -0400
|
1701
|
+
Processing by LandingController#show as HTML
|
1702
|
+
Rendered landing/show.html.erb within layouts/application (0.7ms)
|
1703
|
+
Compiled dismissible_helpers.js (192ms) (pid 81763)
|
1704
|
+
Compiled application.js (151ms) (pid 81763)
|
1705
|
+
Completed 200 OK in 397ms (Views: 396.8ms | ActiveRecord: 0.0ms)
|
1706
|
+
|
1707
|
+
|
1708
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:21:58 -0400
|
1709
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1710
|
+
|
1711
|
+
|
1712
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:21:58 -0400
|
1713
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1714
|
+
|
1715
|
+
|
1716
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:21:58 -0400
|
1717
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1718
|
+
|
1719
|
+
|
1720
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:21:58 -0400
|
1721
|
+
Served asset /application.js - 304 Not Modified (7ms)
|
1722
|
+
|
1723
|
+
|
1724
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:22:22 -0400
|
1725
|
+
Processing by LandingController#show as HTML
|
1726
|
+
Rendered landing/show.html.erb within layouts/application (0.5ms)
|
1727
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
1728
|
+
|
1729
|
+
|
1730
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:22:22 -0400
|
1731
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1732
|
+
|
1733
|
+
|
1734
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:22:22 -0400
|
1735
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1736
|
+
|
1737
|
+
|
1738
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:22:22 -0400
|
1739
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1740
|
+
|
1741
|
+
|
1742
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:22:22 -0400
|
1743
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1744
|
+
|
1745
|
+
|
1746
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:22:33 -0400
|
1747
|
+
Processing by LandingController#show as HTML
|
1748
|
+
Rendered landing/show.html.erb within layouts/application (0.4ms)
|
1749
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
1750
|
+
|
1751
|
+
|
1752
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:22:33 -0400
|
1753
|
+
Served asset /jquery.js - 200 OK (0ms)
|
1754
|
+
|
1755
|
+
|
1756
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:22:33 -0400
|
1757
|
+
Served asset /application.css - 200 OK (0ms)
|
1758
|
+
|
1759
|
+
|
1760
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:22:33 -0400
|
1761
|
+
Served asset /dismissible_helpers.js - 200 OK (1ms)
|
1762
|
+
|
1763
|
+
|
1764
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:22:33 -0400
|
1765
|
+
Served asset /jquery_ujs.js - 200 OK (0ms)
|
1766
|
+
|
1767
|
+
|
1768
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:22:33 -0400
|
1769
|
+
Served asset /application.js - 200 OK (0ms)
|
1770
|
+
|
1771
|
+
|
1772
|
+
Started POST "/dismissed_helpers" for 127.0.0.1 at 2013-05-24 08:22:36 -0400
|
1773
|
+
Processing by DismissedHelpersController#create as JSON
|
1774
|
+
Parameters: {"helper"=>"hello"}
|
1775
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1776
|
+
|
1777
|
+
|
1778
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:22:37 -0400
|
1779
|
+
Processing by LandingController#show as HTML
|
1780
|
+
Rendered landing/show.html.erb within layouts/application (0.4ms)
|
1781
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
1782
|
+
|
1783
|
+
|
1784
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:22:37 -0400
|
1785
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1786
|
+
|
1787
|
+
|
1788
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:22:37 -0400
|
1789
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
1790
|
+
|
1791
|
+
|
1792
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:22:37 -0400
|
1793
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1794
|
+
|
1795
|
+
|
1796
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:22:37 -0400
|
1797
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1798
|
+
|
1799
|
+
|
1800
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:22:37 -0400
|
1801
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1802
|
+
|
1803
|
+
|
1804
|
+
Started POST "/dismissed_helpers" for 127.0.0.1 at 2013-05-24 08:22:45 -0400
|
1805
|
+
Processing by DismissedHelpersController#create as JSON
|
1806
|
+
Parameters: {"helper"=>"hello2"}
|
1807
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1808
|
+
|
1809
|
+
|
1810
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:22:46 -0400
|
1811
|
+
Processing by LandingController#show as HTML
|
1812
|
+
Rendered landing/show.html.erb within layouts/application (0.1ms)
|
1813
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
1814
|
+
|
1815
|
+
|
1816
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:22:46 -0400
|
1817
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1818
|
+
|
1819
|
+
|
1820
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:22:46 -0400
|
1821
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1822
|
+
|
1823
|
+
|
1824
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:22:46 -0400
|
1825
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1826
|
+
|
1827
|
+
|
1828
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:22:46 -0400
|
1829
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
1830
|
+
|
1831
|
+
|
1832
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:22:46 -0400
|
1833
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1834
|
+
|
1835
|
+
|
1836
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:24:39 -0400
|
1837
|
+
Processing by LandingController#show as HTML
|
1838
|
+
Rendered landing/show.html.erb within layouts/application (0.4ms)
|
1839
|
+
Compiled dismissible_helpers.js (185ms) (pid 81763)
|
1840
|
+
Compiled application.js (153ms) (pid 81763)
|
1841
|
+
Completed 200 OK in 360ms (Views: 359.4ms | ActiveRecord: 0.0ms)
|
1842
|
+
|
1843
|
+
|
1844
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:24:39 -0400
|
1845
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1846
|
+
|
1847
|
+
|
1848
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:24:39 -0400
|
1849
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1850
|
+
|
1851
|
+
|
1852
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:24:39 -0400
|
1853
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1854
|
+
|
1855
|
+
|
1856
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:24:39 -0400
|
1857
|
+
Served asset /dismissible_helpers.js - 200 OK (2ms)
|
1858
|
+
|
1859
|
+
|
1860
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:24:39 -0400
|
1861
|
+
Served asset /application.js - 304 Not Modified (35ms)
|
1862
|
+
|
1863
|
+
|
1864
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:24:44 -0400
|
1865
|
+
Processing by LandingController#show as HTML
|
1866
|
+
Rendered landing/show.html.erb within layouts/application (0.6ms)
|
1867
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
1868
|
+
|
1869
|
+
|
1870
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:24:44 -0400
|
1871
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1872
|
+
|
1873
|
+
|
1874
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:24:44 -0400
|
1875
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
1876
|
+
|
1877
|
+
|
1878
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:24:45 -0400
|
1879
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1880
|
+
|
1881
|
+
|
1882
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:24:45 -0400
|
1883
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1884
|
+
|
1885
|
+
|
1886
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:24:45 -0400
|
1887
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1888
|
+
|
1889
|
+
|
1890
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:25:26 -0400
|
1891
|
+
Processing by LandingController#show as HTML
|
1892
|
+
Rendered landing/show.html.erb within layouts/application (0.4ms)
|
1893
|
+
Compiled dismissible_helpers.js (183ms) (pid 81763)
|
1894
|
+
Compiled application.js (154ms) (pid 81763)
|
1895
|
+
Completed 200 OK in 387ms (Views: 387.1ms | ActiveRecord: 0.0ms)
|
1896
|
+
|
1897
|
+
|
1898
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:25:26 -0400
|
1899
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1900
|
+
|
1901
|
+
|
1902
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:25:26 -0400
|
1903
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1904
|
+
|
1905
|
+
|
1906
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:25:26 -0400
|
1907
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1908
|
+
|
1909
|
+
|
1910
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:25:26 -0400
|
1911
|
+
Served asset /application.js - 304 Not Modified (5ms)
|
1912
|
+
|
1913
|
+
|
1914
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:25:26 -0400
|
1915
|
+
Served asset /dismissible_helpers.js - 200 OK (2ms)
|
1916
|
+
|
1917
|
+
|
1918
|
+
Started POST "/dismissed_helpers" for 127.0.0.1 at 2013-05-24 08:25:29 -0400
|
1919
|
+
Processing by DismissedHelpersController#create as JSON
|
1920
|
+
Parameters: {"helper"=>"hello2"}
|
1921
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1922
|
+
|
1923
|
+
|
1924
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:25:31 -0400
|
1925
|
+
Processing by LandingController#show as HTML
|
1926
|
+
Rendered landing/show.html.erb within layouts/application (0.4ms)
|
1927
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
1928
|
+
|
1929
|
+
|
1930
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:25:31 -0400
|
1931
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1932
|
+
|
1933
|
+
|
1934
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:25:31 -0400
|
1935
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1936
|
+
|
1937
|
+
|
1938
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:25:31 -0400
|
1939
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1940
|
+
|
1941
|
+
|
1942
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:25:31 -0400
|
1943
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
1944
|
+
|
1945
|
+
|
1946
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:25:31 -0400
|
1947
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1948
|
+
|
1949
|
+
|
1950
|
+
Started POST "/dismissed_helpers" for 127.0.0.1 at 2013-05-24 08:25:35 -0400
|
1951
|
+
Processing by DismissedHelpersController#create as JSON
|
1952
|
+
Parameters: {"helper"=>"hello"}
|
1953
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
1954
|
+
|
1955
|
+
|
1956
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:26:08 -0400
|
1957
|
+
Processing by LandingController#show as HTML
|
1958
|
+
Rendered landing/show.html.erb within layouts/application (0.1ms)
|
1959
|
+
Compiled dismissible_helpers.js (181ms) (pid 81763)
|
1960
|
+
Compiled application.js (153ms) (pid 81763)
|
1961
|
+
Completed 200 OK in 387ms (Views: 387.0ms | ActiveRecord: 0.0ms)
|
1962
|
+
|
1963
|
+
|
1964
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:26:09 -0400
|
1965
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1966
|
+
|
1967
|
+
|
1968
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:26:09 -0400
|
1969
|
+
Served asset /application.js - 304 Not Modified (7ms)
|
1970
|
+
|
1971
|
+
|
1972
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:26:09 -0400
|
1973
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1974
|
+
|
1975
|
+
|
1976
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:26:09 -0400
|
1977
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
1978
|
+
|
1979
|
+
|
1980
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:26:09 -0400
|
1981
|
+
Served asset /dismissible_helpers.js - 200 OK (1ms)
|
1982
|
+
|
1983
|
+
|
1984
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:26:16 -0400
|
1985
|
+
Processing by LandingController#show as HTML
|
1986
|
+
Rendered landing/show.html.erb within layouts/application (0.2ms)
|
1987
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
1988
|
+
|
1989
|
+
|
1990
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:26:16 -0400
|
1991
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1992
|
+
|
1993
|
+
|
1994
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:26:16 -0400
|
1995
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1996
|
+
|
1997
|
+
|
1998
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:26:16 -0400
|
1999
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2000
|
+
|
2001
|
+
|
2002
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:26:16 -0400
|
2003
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2004
|
+
|
2005
|
+
|
2006
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:26:16 -0400
|
2007
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
2008
|
+
|
2009
|
+
|
2010
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:26:27 -0400
|
2011
|
+
Processing by LandingController#show as HTML
|
2012
|
+
Rendered landing/show.html.erb within layouts/application (0.6ms)
|
2013
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
2014
|
+
|
2015
|
+
|
2016
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:26:27 -0400
|
2017
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2018
|
+
|
2019
|
+
|
2020
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:26:27 -0400
|
2021
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2022
|
+
|
2023
|
+
|
2024
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:26:27 -0400
|
2025
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2026
|
+
|
2027
|
+
|
2028
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:26:27 -0400
|
2029
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2030
|
+
|
2031
|
+
|
2032
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:26:27 -0400
|
2033
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
2034
|
+
|
2035
|
+
|
2036
|
+
Started POST "/dismissed_helpers" for 127.0.0.1 at 2013-05-24 08:26:29 -0400
|
2037
|
+
Processing by DismissedHelpersController#create as JSON
|
2038
|
+
Parameters: {"helper"=>"hello2"}
|
2039
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2040
|
+
|
2041
|
+
|
2042
|
+
Started POST "/dismissed_helpers" for 127.0.0.1 at 2013-05-24 08:26:30 -0400
|
2043
|
+
Processing by DismissedHelpersController#create as JSON
|
2044
|
+
Parameters: {"helper"=>"hello2"}
|
2045
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2046
|
+
|
2047
|
+
|
2048
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:26:31 -0400
|
2049
|
+
Processing by LandingController#show as HTML
|
2050
|
+
Rendered landing/show.html.erb within layouts/application (0.4ms)
|
2051
|
+
Completed 200 OK in 4ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
2052
|
+
|
2053
|
+
|
2054
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:26:31 -0400
|
2055
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2056
|
+
|
2057
|
+
|
2058
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:26:31 -0400
|
2059
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
2060
|
+
|
2061
|
+
|
2062
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:26:31 -0400
|
2063
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2064
|
+
|
2065
|
+
|
2066
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:26:31 -0400
|
2067
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2068
|
+
|
2069
|
+
|
2070
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:26:31 -0400
|
2071
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2072
|
+
|
2073
|
+
|
2074
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:30:15 -0400
|
2075
|
+
Processing by LandingController#show as HTML
|
2076
|
+
Rendered landing/show.html.erb within layouts/application (0.5ms)
|
2077
|
+
Compiled dismissible_helpers.js (180ms) (pid 81763)
|
2078
|
+
Compiled application.js (161ms) (pid 81763)
|
2079
|
+
Completed 200 OK in 390ms (Views: 389.4ms | ActiveRecord: 0.0ms)
|
2080
|
+
|
2081
|
+
|
2082
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:30:15 -0400
|
2083
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2084
|
+
|
2085
|
+
|
2086
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:30:15 -0400
|
2087
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2088
|
+
|
2089
|
+
|
2090
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:30:15 -0400
|
2091
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2092
|
+
|
2093
|
+
|
2094
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:30:15 -0400
|
2095
|
+
Served asset /dismissible_helpers.js - 200 OK (2ms)
|
2096
|
+
|
2097
|
+
|
2098
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:30:15 -0400
|
2099
|
+
Served asset /application.js - 304 Not Modified (5ms)
|
2100
|
+
|
2101
|
+
|
2102
|
+
Started POST "/dismissed_helpers" for 127.0.0.1 at 2013-05-24 08:30:16 -0400
|
2103
|
+
Processing by DismissedHelpersController#create as JSON
|
2104
|
+
Parameters: {"helper"=>"hello2"}
|
2105
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2106
|
+
|
2107
|
+
|
2108
|
+
Started POST "/dismissed_helpers" for 127.0.0.1 at 2013-05-24 08:30:17 -0400
|
2109
|
+
Processing by DismissedHelpersController#create as JSON
|
2110
|
+
Parameters: {"helper"=>"hello2"}
|
2111
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2112
|
+
|
2113
|
+
|
2114
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:30:18 -0400
|
2115
|
+
Processing by LandingController#show as HTML
|
2116
|
+
Rendered landing/show.html.erb within layouts/application (0.4ms)
|
2117
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
2118
|
+
|
2119
|
+
|
2120
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:30:18 -0400
|
2121
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2122
|
+
|
2123
|
+
|
2124
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:30:18 -0400
|
2125
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2126
|
+
|
2127
|
+
|
2128
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:30:18 -0400
|
2129
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2130
|
+
|
2131
|
+
|
2132
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:30:18 -0400
|
2133
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2134
|
+
|
2135
|
+
|
2136
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:30:18 -0400
|
2137
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
2138
|
+
|
2139
|
+
|
2140
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:31:16 -0400
|
2141
|
+
Processing by LandingController#show as HTML
|
2142
|
+
Rendered landing/show.html.erb within layouts/application (0.5ms)
|
2143
|
+
Compiled dismissible_helpers.js (181ms) (pid 81763)
|
2144
|
+
Compiled application.js (157ms) (pid 81763)
|
2145
|
+
Completed 200 OK in 387ms (Views: 387.0ms | ActiveRecord: 0.0ms)
|
2146
|
+
|
2147
|
+
|
2148
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:31:17 -0400
|
2149
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2150
|
+
|
2151
|
+
|
2152
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:31:17 -0400
|
2153
|
+
Served asset /dismissible_helpers.js - 200 OK (7ms)
|
2154
|
+
|
2155
|
+
|
2156
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:31:17 -0400
|
2157
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2158
|
+
|
2159
|
+
|
2160
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:31:17 -0400
|
2161
|
+
Served asset /application.js - 304 Not Modified (40ms)
|
2162
|
+
|
2163
|
+
|
2164
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:31:17 -0400
|
2165
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2166
|
+
|
2167
|
+
|
2168
|
+
Started POST "/dismissed_helpers" for 127.0.0.1 at 2013-05-24 08:31:18 -0400
|
2169
|
+
Processing by DismissedHelpersController#create as JSON
|
2170
|
+
Parameters: {"helper"=>"hello2"}
|
2171
|
+
Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2172
|
+
|
2173
|
+
|
2174
|
+
Started POST "/dismissed_helpers" for 127.0.0.1 at 2013-05-24 08:31:18 -0400
|
2175
|
+
Processing by DismissedHelpersController#create as JSON
|
2176
|
+
Parameters: {"helper"=>"hello2"}
|
2177
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2178
|
+
|
2179
|
+
|
2180
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:31:21 -0400
|
2181
|
+
Processing by LandingController#show as HTML
|
2182
|
+
Rendered landing/show.html.erb within layouts/application (0.3ms)
|
2183
|
+
Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
2184
|
+
|
2185
|
+
|
2186
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:31:21 -0400
|
2187
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2188
|
+
|
2189
|
+
|
2190
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:31:21 -0400
|
2191
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
2192
|
+
|
2193
|
+
|
2194
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:31:21 -0400
|
2195
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2196
|
+
|
2197
|
+
|
2198
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:31:21 -0400
|
2199
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2200
|
+
|
2201
|
+
|
2202
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:31:21 -0400
|
2203
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2204
|
+
|
2205
|
+
|
2206
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:32:46 -0400
|
2207
|
+
Processing by LandingController#show as HTML
|
2208
|
+
Rendered landing/show.html.erb within layouts/application (0.5ms)
|
2209
|
+
Compiled dismissible_helpers.js (180ms) (pid 81763)
|
2210
|
+
Compiled application.js (155ms) (pid 81763)
|
2211
|
+
Completed 200 OK in 386ms (Views: 385.7ms | ActiveRecord: 0.0ms)
|
2212
|
+
|
2213
|
+
|
2214
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:32:46 -0400
|
2215
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2216
|
+
|
2217
|
+
|
2218
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:32:46 -0400
|
2219
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2220
|
+
|
2221
|
+
|
2222
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:32:46 -0400
|
2223
|
+
Served asset /dismissible_helpers.js - 200 OK (1ms)
|
2224
|
+
|
2225
|
+
|
2226
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:32:46 -0400
|
2227
|
+
Served asset /application.js - 304 Not Modified (3ms)
|
2228
|
+
|
2229
|
+
|
2230
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:32:46 -0400
|
2231
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2232
|
+
|
2233
|
+
|
2234
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:34:43 -0400
|
2235
|
+
Processing by LandingController#show as HTML
|
2236
|
+
Rendered landing/show.html.erb within layouts/application (0.8ms)
|
2237
|
+
Compiled dismissible_helpers.js (185ms) (pid 81763)
|
2238
|
+
Compiled application.js (153ms) (pid 81763)
|
2239
|
+
Completed 200 OK in 394ms (Views: 393.8ms | ActiveRecord: 0.0ms)
|
2240
|
+
|
2241
|
+
|
2242
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:34:44 -0400
|
2243
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2244
|
+
|
2245
|
+
|
2246
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:34:44 -0400
|
2247
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2248
|
+
|
2249
|
+
|
2250
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:34:44 -0400
|
2251
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2252
|
+
|
2253
|
+
|
2254
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:34:44 -0400
|
2255
|
+
Served asset /dismissible_helpers.js - 200 OK (1ms)
|
2256
|
+
|
2257
|
+
|
2258
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:34:44 -0400
|
2259
|
+
Served asset /application.js - 304 Not Modified (7ms)
|
2260
|
+
|
2261
|
+
|
2262
|
+
Started POST "/dismissed_helpers" for 127.0.0.1 at 2013-05-24 08:34:46 -0400
|
2263
|
+
Processing by DismissedHelpersController#create as JSON
|
2264
|
+
Parameters: {"helper"=>"hello2"}
|
2265
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2266
|
+
|
2267
|
+
|
2268
|
+
Started POST "/dismissed_helpers" for 127.0.0.1 at 2013-05-24 08:34:46 -0400
|
2269
|
+
Processing by DismissedHelpersController#create as JSON
|
2270
|
+
Parameters: {"helper"=>"hello"}
|
2271
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2272
|
+
|
2273
|
+
|
2274
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:34:47 -0400
|
2275
|
+
Processing by LandingController#show as HTML
|
2276
|
+
Rendered landing/show.html.erb within layouts/application (0.1ms)
|
2277
|
+
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
2278
|
+
|
2279
|
+
|
2280
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:34:47 -0400
|
2281
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2282
|
+
|
2283
|
+
|
2284
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:34:47 -0400
|
2285
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2286
|
+
|
2287
|
+
|
2288
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:34:47 -0400
|
2289
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
2290
|
+
|
2291
|
+
|
2292
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:34:47 -0400
|
2293
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2294
|
+
|
2295
|
+
|
2296
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:34:47 -0400
|
2297
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2298
|
+
|
2299
|
+
|
2300
|
+
Started GET "/landing/restorable" for 127.0.0.1 at 2013-05-24 08:35:53 -0400
|
2301
|
+
Processing by LandingController#restorable as HTML
|
2302
|
+
Rendered landing/restorable.html.erb within layouts/application (1.6ms)
|
2303
|
+
Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms)
|
2304
|
+
|
2305
|
+
|
2306
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:35:53 -0400
|
2307
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2308
|
+
|
2309
|
+
|
2310
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:35:53 -0400
|
2311
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2312
|
+
|
2313
|
+
|
2314
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:35:53 -0400
|
2315
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
2316
|
+
|
2317
|
+
|
2318
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:35:53 -0400
|
2319
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2320
|
+
|
2321
|
+
|
2322
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:35:53 -0400
|
2323
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2324
|
+
|
2325
|
+
|
2326
|
+
Started POST "/dismissed_helpers" for 127.0.0.1 at 2013-05-24 08:35:55 -0400
|
2327
|
+
Processing by DismissedHelpersController#create as JSON
|
2328
|
+
Parameters: {"helper"=>"restorable"}
|
2329
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2330
|
+
|
2331
|
+
|
2332
|
+
Started DELETE "/dismissed_helpers/restorable" for 127.0.0.1 at 2013-05-24 08:35:55 -0400
|
2333
|
+
Processing by DismissedHelpersController#destroy as JSON
|
2334
|
+
Parameters: {"helper"=>"restorable"}
|
2335
|
+
destroy 'restorable'
|
2336
|
+
Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2337
|
+
|
2338
|
+
|
2339
|
+
Started POST "/dismissed_helpers" for 127.0.0.1 at 2013-05-24 08:35:57 -0400
|
2340
|
+
Processing by DismissedHelpersController#create as JSON
|
2341
|
+
Parameters: {"helper"=>"restorable"}
|
2342
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2343
|
+
|
2344
|
+
|
2345
|
+
Started GET "/landing/restorable" for 127.0.0.1 at 2013-05-24 08:35:58 -0400
|
2346
|
+
Processing by LandingController#restorable as HTML
|
2347
|
+
Rendered landing/restorable.html.erb within layouts/application (0.4ms)
|
2348
|
+
Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
2349
|
+
|
2350
|
+
|
2351
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:35:58 -0400
|
2352
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
2353
|
+
|
2354
|
+
|
2355
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:35:58 -0400
|
2356
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2357
|
+
|
2358
|
+
|
2359
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:35:58 -0400
|
2360
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2361
|
+
|
2362
|
+
|
2363
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:35:58 -0400
|
2364
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2365
|
+
|
2366
|
+
|
2367
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:35:58 -0400
|
2368
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2369
|
+
|
2370
|
+
|
2371
|
+
Started DELETE "/dismissed_helpers/restorable" for 127.0.0.1 at 2013-05-24 08:35:59 -0400
|
2372
|
+
Processing by DismissedHelpersController#destroy as JSON
|
2373
|
+
Parameters: {"helper"=>"restorable"}
|
2374
|
+
destroy 'restorable'
|
2375
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2376
|
+
|
2377
|
+
|
2378
|
+
Started GET "/landing/restorable" for 127.0.0.1 at 2013-05-24 08:35:59 -0400
|
2379
|
+
Processing by LandingController#restorable as HTML
|
2380
|
+
Rendered landing/restorable.html.erb within layouts/application (0.3ms)
|
2381
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
2382
|
+
|
2383
|
+
|
2384
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:35:59 -0400
|
2385
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2386
|
+
|
2387
|
+
|
2388
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:35:59 -0400
|
2389
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2390
|
+
|
2391
|
+
|
2392
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:35:59 -0400
|
2393
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2394
|
+
|
2395
|
+
|
2396
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:35:59 -0400
|
2397
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2398
|
+
|
2399
|
+
|
2400
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:35:59 -0400
|
2401
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
2402
|
+
|
2403
|
+
|
2404
|
+
Started POST "/dismissed_helpers" for 127.0.0.1 at 2013-05-24 08:36:00 -0400
|
2405
|
+
Processing by DismissedHelpersController#create as JSON
|
2406
|
+
Parameters: {"helper"=>"restorable"}
|
2407
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2408
|
+
|
2409
|
+
|
2410
|
+
Started GET "/landing/restorable" for 127.0.0.1 at 2013-05-24 08:36:01 -0400
|
2411
|
+
Processing by LandingController#restorable as HTML
|
2412
|
+
Rendered landing/restorable.html.erb within layouts/application (0.3ms)
|
2413
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
2414
|
+
|
2415
|
+
|
2416
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:36:01 -0400
|
2417
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2418
|
+
|
2419
|
+
|
2420
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:36:01 -0400
|
2421
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2422
|
+
|
2423
|
+
|
2424
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:36:01 -0400
|
2425
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2426
|
+
|
2427
|
+
|
2428
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:36:01 -0400
|
2429
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2430
|
+
|
2431
|
+
|
2432
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:36:01 -0400
|
2433
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
2434
|
+
|
2435
|
+
|
2436
|
+
Started GET "/landing/restorable" for 127.0.0.1 at 2013-05-24 08:36:36 -0400
|
2437
|
+
Processing by LandingController#restorable as HTML
|
2438
|
+
Rendered landing/restorable.html.erb within layouts/application (0.3ms)
|
2439
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
2440
|
+
|
2441
|
+
|
2442
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:36:36 -0400
|
2443
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2444
|
+
|
2445
|
+
|
2446
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:36:36 -0400
|
2447
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2448
|
+
|
2449
|
+
|
2450
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:36:36 -0400
|
2451
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2452
|
+
|
2453
|
+
|
2454
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:36:36 -0400
|
2455
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2456
|
+
|
2457
|
+
|
2458
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:36:36 -0400
|
2459
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
2460
|
+
|
2461
|
+
|
2462
|
+
Started GET "/landing/block" for 127.0.0.1 at 2013-05-24 08:36:42 -0400
|
2463
|
+
Processing by LandingController#block as HTML
|
2464
|
+
Rendered landing/block.html.erb within layouts/application (0.7ms)
|
2465
|
+
Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
2466
|
+
|
2467
|
+
|
2468
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:36:42 -0400
|
2469
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2470
|
+
|
2471
|
+
|
2472
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:36:42 -0400
|
2473
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
2474
|
+
|
2475
|
+
|
2476
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:36:42 -0400
|
2477
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2478
|
+
|
2479
|
+
|
2480
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:36:42 -0400
|
2481
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2482
|
+
|
2483
|
+
|
2484
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:36:42 -0400
|
2485
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2486
|
+
|
2487
|
+
|
2488
|
+
Started GET "/landing/block" for 127.0.0.1 at 2013-05-24 08:36:43 -0400
|
2489
|
+
Processing by LandingController#block as HTML
|
2490
|
+
Rendered landing/block.html.erb within layouts/application (0.2ms)
|
2491
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
2492
|
+
|
2493
|
+
|
2494
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:36:43 -0400
|
2495
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2496
|
+
|
2497
|
+
|
2498
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:36:43 -0400
|
2499
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2500
|
+
|
2501
|
+
|
2502
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:36:43 -0400
|
2503
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2504
|
+
|
2505
|
+
|
2506
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:36:43 -0400
|
2507
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
2508
|
+
|
2509
|
+
|
2510
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:36:43 -0400
|
2511
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2512
|
+
|
2513
|
+
|
2514
|
+
Started POST "/dismissed_helpers" for 127.0.0.1 at 2013-05-24 08:36:44 -0400
|
2515
|
+
Processing by DismissedHelpersController#create as JSON
|
2516
|
+
Parameters: {"helper"=>"helper_block"}
|
2517
|
+
Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
|
2518
|
+
|
2519
|
+
|
2520
|
+
Started GET "/landing/block" for 127.0.0.1 at 2013-05-24 08:36:44 -0400
|
2521
|
+
Processing by LandingController#block as HTML
|
2522
|
+
Rendered landing/block.html.erb within layouts/application (0.1ms)
|
2523
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
2524
|
+
|
2525
|
+
|
2526
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:36:44 -0400
|
2527
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2528
|
+
|
2529
|
+
|
2530
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:36:44 -0400
|
2531
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
2532
|
+
|
2533
|
+
|
2534
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:36:44 -0400
|
2535
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2536
|
+
|
2537
|
+
|
2538
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:36:44 -0400
|
2539
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
2540
|
+
|
2541
|
+
|
2542
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:36:44 -0400
|
2543
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2544
|
+
|
2545
|
+
|
2546
|
+
Started GET "/" for 127.0.0.1 at 2013-05-24 08:41:27 -0400
|
2547
|
+
Processing by LandingController#show as HTML
|
2548
|
+
Rendered landing/show.html.erb within layouts/application (0.8ms)
|
2549
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
2550
|
+
|
2551
|
+
|
2552
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-05-24 08:41:27 -0400
|
2553
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
2554
|
+
|
2555
|
+
|
2556
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-05-24 08:41:27 -0400
|
2557
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2558
|
+
|
2559
|
+
|
2560
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-05-24 08:41:27 -0400
|
2561
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
2562
|
+
|
2563
|
+
|
2564
|
+
Started GET "/assets/dismissible_helpers.js?body=1" for 127.0.0.1 at 2013-05-24 08:41:27 -0400
|
2565
|
+
Served asset /dismissible_helpers.js - 304 Not Modified (0ms)
|
2566
|
+
|
2567
|
+
|
2568
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-05-24 08:41:27 -0400
|
2569
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|