docmago_client 0.1.5 → 0.2.0
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b4a49afceb2e583cb568d3130df8a79da662ea74
|
|
4
|
+
data.tar.gz: 903bb241dcde53b4d6cbc18c7f0edc620f40550c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 220876b73d683c134cadef101b94aff88d08de75a7ff1d25d9d71d932747f1e18a35a24e683c62ff940230c1b8046c70ed30497233db4090fb3d006e6176debe
|
|
7
|
+
data.tar.gz: 3089fe96873fc69abf168852e806e4e9f11eba829eb6ffad8cdd4769f4cd22ace853cf5545624531f4d0f988cd4748ac42c0ec8a6dae5267a89409872f137652
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
require 'uri'
|
|
2
2
|
require 'nokogiri'
|
|
3
|
-
require 'zip
|
|
3
|
+
require 'zip'
|
|
4
4
|
|
|
5
5
|
module DocmagoClient
|
|
6
6
|
class HTMLResourceArchiver
|
|
@@ -11,12 +11,12 @@ module DocmagoClient
|
|
|
11
11
|
end
|
|
12
12
|
|
|
13
13
|
def create_zip(file_path)
|
|
14
|
-
Zip::
|
|
15
|
-
zipfile.
|
|
14
|
+
Zip::File.open(file_path, Zip::File::CREATE) do |zipfile|
|
|
15
|
+
zipfile.get_output_stream("document.html") { |f| f.write @html }
|
|
16
16
|
|
|
17
17
|
fetch_uris.each do |uri|
|
|
18
18
|
if File.exists?(resolve_uri(uri))
|
|
19
|
-
zipfile.
|
|
19
|
+
zipfile.get_output_steam(normalize_uri(uri)) { |f| f.write(File.read(resolve_uri(uri))) }
|
|
20
20
|
end
|
|
21
21
|
end
|
|
22
22
|
end
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
DocmagoClient.base_uri "http://docmago.dev/api"
|
|
2
|
-
DocmagoClient.api_key "
|
|
2
|
+
DocmagoClient.api_key "nj5PtYqJQgmVJzSycjLy"
|
data/test/dummy/log/test.log
CHANGED
|
@@ -1595,3 +1595,675 @@ Completed 200 OK in 225ms (Views: 224.8ms | ActiveRecord: 0.0ms)
|
|
|
1595
1595
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
1596
1596
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1597
1597
|
[1m[35m (0.0ms)[0m rollback transaction
|
|
1598
|
+
Connecting to database specified by database.yml
|
|
1599
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
1600
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1601
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1602
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:10:57 +0200
|
|
1603
|
+
Processing by HomeController#index as HTML
|
|
1604
|
+
Rendered home/index.html.erb within layouts/application (1.9ms)
|
|
1605
|
+
Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
|
|
1606
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:10:57 +0200
|
|
1607
|
+
Processing by HomeController#index as PDF
|
|
1608
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
1609
|
+
Completed 500 Internal Server Error in 4ms
|
|
1610
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1611
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1612
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:10:57 +0200
|
|
1613
|
+
Processing by HomeController#index as HTML
|
|
1614
|
+
Rendered home/index.html.erb within layouts/application (0.4ms)
|
|
1615
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
|
1616
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:10:57 +0200
|
|
1617
|
+
Processing by HomeController#subdir_template as PDF
|
|
1618
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.2ms)
|
|
1619
|
+
Completed 500 Internal Server Error in 4ms
|
|
1620
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1621
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1622
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1623
|
+
Connecting to database specified by database.yml
|
|
1624
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
1625
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1626
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1627
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:12:00 +0200
|
|
1628
|
+
Processing by HomeController#index as HTML
|
|
1629
|
+
Rendered home/index.html.erb within layouts/application (1.4ms)
|
|
1630
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
|
1631
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:12:00 +0200
|
|
1632
|
+
Processing by HomeController#index as PDF
|
|
1633
|
+
Rendered home/index.pdf.erb (0.3ms)
|
|
1634
|
+
Completed 500 Internal Server Error in 5ms
|
|
1635
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1636
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1637
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:12:00 +0200
|
|
1638
|
+
Processing by HomeController#index as HTML
|
|
1639
|
+
Rendered home/index.html.erb within layouts/application (0.4ms)
|
|
1640
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
|
1641
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:12:00 +0200
|
|
1642
|
+
Processing by HomeController#subdir_template as PDF
|
|
1643
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.2ms)
|
|
1644
|
+
Completed 500 Internal Server Error in 4ms
|
|
1645
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1646
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1647
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1648
|
+
Connecting to database specified by database.yml
|
|
1649
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
1650
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1651
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1652
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:15:46 +0200
|
|
1653
|
+
Processing by HomeController#index as HTML
|
|
1654
|
+
Rendered home/index.html.erb within layouts/application (1.3ms)
|
|
1655
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
|
|
1656
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:15:46 +0200
|
|
1657
|
+
Processing by HomeController#index as PDF
|
|
1658
|
+
Rendered home/index.pdf.erb (0.3ms)
|
|
1659
|
+
Rendered inline template (0.3ms)
|
|
1660
|
+
Completed 401 Unauthorized in 398ms (Views: 398.3ms | ActiveRecord: 0.0ms)
|
|
1661
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1662
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1663
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:15:46 +0200
|
|
1664
|
+
Processing by HomeController#index as HTML
|
|
1665
|
+
Rendered home/index.html.erb within layouts/application (0.4ms)
|
|
1666
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
|
1667
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:15:46 +0200
|
|
1668
|
+
Processing by HomeController#subdir_template as PDF
|
|
1669
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.3ms)
|
|
1670
|
+
Rendered inline template (0.3ms)
|
|
1671
|
+
Completed 401 Unauthorized in 72ms (Views: 72.1ms | ActiveRecord: 0.0ms)
|
|
1672
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1673
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1674
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1675
|
+
Connecting to database specified by database.yml
|
|
1676
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
1677
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1678
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1679
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:16:45 +0200
|
|
1680
|
+
Processing by HomeController#index as HTML
|
|
1681
|
+
Rendered home/index.html.erb within layouts/application (1.3ms)
|
|
1682
|
+
Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
|
|
1683
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:16:45 +0200
|
|
1684
|
+
Processing by HomeController#index as PDF
|
|
1685
|
+
Rendered home/index.pdf.erb (0.3ms)
|
|
1686
|
+
Rendered text template (0.0ms)
|
|
1687
|
+
Sent data contents.pdf (1.9ms)
|
|
1688
|
+
Completed 200 OK in 170ms (Views: 170.1ms | ActiveRecord: 0.0ms)
|
|
1689
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1690
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1691
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:16:45 +0200
|
|
1692
|
+
Processing by HomeController#index as HTML
|
|
1693
|
+
Rendered home/index.html.erb within layouts/application (0.4ms)
|
|
1694
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
|
1695
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:16:45 +0200
|
|
1696
|
+
Processing by HomeController#subdir_template as PDF
|
|
1697
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.2ms)
|
|
1698
|
+
Rendered text template (0.0ms)
|
|
1699
|
+
Sent data subdir_template.pdf (0.8ms)
|
|
1700
|
+
Completed 200 OK in 129ms (Views: 129.1ms | ActiveRecord: 0.0ms)
|
|
1701
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1702
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1703
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1704
|
+
Connecting to database specified by database.yml
|
|
1705
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
1706
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1707
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1708
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:17:07 +0200
|
|
1709
|
+
Processing by HomeController#index as HTML
|
|
1710
|
+
Rendered home/index.html.erb within layouts/application (1.5ms)
|
|
1711
|
+
Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.0ms)
|
|
1712
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:17:07 +0200
|
|
1713
|
+
Processing by HomeController#index as PDF
|
|
1714
|
+
Rendered home/index.pdf.erb (0.3ms)
|
|
1715
|
+
Rendered text template (0.0ms)
|
|
1716
|
+
Sent data contents.pdf (1.7ms)
|
|
1717
|
+
Completed 200 OK in 527ms (Views: 526.5ms | ActiveRecord: 0.0ms)
|
|
1718
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1719
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1720
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:17:07 +0200
|
|
1721
|
+
Processing by HomeController#index as HTML
|
|
1722
|
+
Rendered home/index.html.erb within layouts/application (0.4ms)
|
|
1723
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
|
1724
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:17:07 +0200
|
|
1725
|
+
Processing by HomeController#subdir_template as PDF
|
|
1726
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.3ms)
|
|
1727
|
+
Rendered text template (0.0ms)
|
|
1728
|
+
Sent data subdir_template.pdf (0.6ms)
|
|
1729
|
+
Completed 200 OK in 104ms (Views: 104.2ms | ActiveRecord: 0.0ms)
|
|
1730
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1731
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1732
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1733
|
+
Connecting to database specified by database.yml
|
|
1734
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
1735
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1736
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1737
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:30:15 +0200
|
|
1738
|
+
Processing by HomeController#index as HTML
|
|
1739
|
+
Rendered home/index.html.erb within layouts/application (1.3ms)
|
|
1740
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
|
1741
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:30:15 +0200
|
|
1742
|
+
Processing by HomeController#index as PDF
|
|
1743
|
+
Rendered home/index.pdf.erb (0.3ms)
|
|
1744
|
+
Rendered text template (0.0ms)
|
|
1745
|
+
Sent data contents.pdf (1.7ms)
|
|
1746
|
+
Completed 200 OK in 117ms (Views: 117.0ms | ActiveRecord: 0.0ms)
|
|
1747
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1748
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1749
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:30:15 +0200
|
|
1750
|
+
Processing by HomeController#index as HTML
|
|
1751
|
+
Rendered home/index.html.erb within layouts/application (0.5ms)
|
|
1752
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
|
1753
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:30:15 +0200
|
|
1754
|
+
Processing by HomeController#subdir_template as PDF
|
|
1755
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.3ms)
|
|
1756
|
+
Rendered text template (0.0ms)
|
|
1757
|
+
Sent data subdir_template.pdf (0.6ms)
|
|
1758
|
+
Completed 200 OK in 98ms (Views: 97.6ms | ActiveRecord: 0.0ms)
|
|
1759
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1760
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1761
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1762
|
+
Connecting to database specified by database.yml
|
|
1763
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
1764
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1765
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1766
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:30:20 +0200
|
|
1767
|
+
Processing by HomeController#index as HTML
|
|
1768
|
+
Rendered home/index.html.erb within layouts/application (1.5ms)
|
|
1769
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
|
1770
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:30:20 +0200
|
|
1771
|
+
Processing by HomeController#index as PDF
|
|
1772
|
+
Rendered home/index.pdf.erb (0.3ms)
|
|
1773
|
+
Rendered text template (0.0ms)
|
|
1774
|
+
Sent data contents.pdf (1.4ms)
|
|
1775
|
+
Completed 200 OK in 104ms (Views: 104.0ms | ActiveRecord: 0.0ms)
|
|
1776
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1777
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
1778
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:30:20 +0200
|
|
1779
|
+
Processing by HomeController#index as HTML
|
|
1780
|
+
Rendered home/index.html.erb within layouts/application (0.6ms)
|
|
1781
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
|
1782
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:30:21 +0200
|
|
1783
|
+
Processing by HomeController#subdir_template as PDF
|
|
1784
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.2ms)
|
|
1785
|
+
Rendered text template (0.0ms)
|
|
1786
|
+
Sent data subdir_template.pdf (0.6ms)
|
|
1787
|
+
Completed 200 OK in 110ms (Views: 109.7ms | ActiveRecord: 0.0ms)
|
|
1788
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1789
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1790
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1791
|
+
Connecting to database specified by database.yml
|
|
1792
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
1793
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1794
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1795
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:30:30 +0200
|
|
1796
|
+
Processing by HomeController#index as HTML
|
|
1797
|
+
Rendered home/index.html.erb within layouts/application (1.3ms)
|
|
1798
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
|
|
1799
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:30:30 +0200
|
|
1800
|
+
Processing by HomeController#index as PDF
|
|
1801
|
+
Rendered home/index.pdf.erb (0.4ms)
|
|
1802
|
+
Rendered text template (0.0ms)
|
|
1803
|
+
Sent data contents.pdf (1.3ms)
|
|
1804
|
+
Completed 200 OK in 489ms (Views: 488.5ms | ActiveRecord: 0.0ms)
|
|
1805
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1806
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1807
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:30:31 +0200
|
|
1808
|
+
Processing by HomeController#index as HTML
|
|
1809
|
+
Rendered home/index.html.erb within layouts/application (0.4ms)
|
|
1810
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
|
1811
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:30:31 +0200
|
|
1812
|
+
Processing by HomeController#subdir_template as PDF
|
|
1813
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.3ms)
|
|
1814
|
+
Rendered text template (0.0ms)
|
|
1815
|
+
Sent data subdir_template.pdf (0.6ms)
|
|
1816
|
+
Completed 200 OK in 104ms (Views: 103.7ms | ActiveRecord: 0.0ms)
|
|
1817
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1818
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
1819
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1820
|
+
Connecting to database specified by database.yml
|
|
1821
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
1822
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1823
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1824
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:30:39 +0200
|
|
1825
|
+
Processing by HomeController#index as HTML
|
|
1826
|
+
Rendered home/index.html.erb within layouts/application (1.3ms)
|
|
1827
|
+
Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
|
|
1828
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:30:39 +0200
|
|
1829
|
+
Processing by HomeController#index as PDF
|
|
1830
|
+
Rendered home/index.pdf.erb (0.3ms)
|
|
1831
|
+
Rendered text template (0.0ms)
|
|
1832
|
+
Sent data contents.pdf (2.0ms)
|
|
1833
|
+
Completed 200 OK in 432ms (Views: 432.3ms | ActiveRecord: 0.0ms)
|
|
1834
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1835
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
1836
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:30:39 +0200
|
|
1837
|
+
Processing by HomeController#index as HTML
|
|
1838
|
+
Rendered home/index.html.erb within layouts/application (0.5ms)
|
|
1839
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
|
1840
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:30:39 +0200
|
|
1841
|
+
Processing by HomeController#subdir_template as PDF
|
|
1842
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.3ms)
|
|
1843
|
+
Rendered text template (0.0ms)
|
|
1844
|
+
Sent data subdir_template.pdf (0.6ms)
|
|
1845
|
+
Completed 200 OK in 104ms (Views: 103.6ms | ActiveRecord: 0.0ms)
|
|
1846
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1847
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1848
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1849
|
+
Connecting to database specified by database.yml
|
|
1850
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
|
1851
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1852
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
1853
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:31:14 +0200
|
|
1854
|
+
Processing by HomeController#index as HTML
|
|
1855
|
+
Rendered home/index.html.erb within layouts/application (2.2ms)
|
|
1856
|
+
Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.0ms)
|
|
1857
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:31:14 +0200
|
|
1858
|
+
Processing by HomeController#index as PDF
|
|
1859
|
+
Rendered home/index.pdf.erb (0.4ms)
|
|
1860
|
+
Rendered text template (0.0ms)
|
|
1861
|
+
Sent data contents.pdf (1.5ms)
|
|
1862
|
+
Completed 200 OK in 18452ms (Views: 18452.0ms | ActiveRecord: 0.0ms)
|
|
1863
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1864
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1865
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:31:32 +0200
|
|
1866
|
+
Processing by HomeController#index as HTML
|
|
1867
|
+
Rendered home/index.html.erb within layouts/application (0.7ms)
|
|
1868
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
|
1869
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:31:32 +0200
|
|
1870
|
+
Processing by HomeController#subdir_template as PDF
|
|
1871
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.3ms)
|
|
1872
|
+
Rendered text template (0.0ms)
|
|
1873
|
+
Sent data subdir_template.pdf (0.6ms)
|
|
1874
|
+
Completed 200 OK in 925ms (Views: 924.8ms | ActiveRecord: 0.0ms)
|
|
1875
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1876
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1877
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1878
|
+
Connecting to database specified by database.yml
|
|
1879
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
1880
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1881
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1882
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:31:38 +0200
|
|
1883
|
+
Processing by HomeController#index as HTML
|
|
1884
|
+
Rendered home/index.html.erb within layouts/application (1.3ms)
|
|
1885
|
+
Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
|
|
1886
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:31:38 +0200
|
|
1887
|
+
Processing by HomeController#index as PDF
|
|
1888
|
+
Rendered home/index.pdf.erb (0.3ms)
|
|
1889
|
+
Rendered text template (0.0ms)
|
|
1890
|
+
Sent data contents.pdf (1.2ms)
|
|
1891
|
+
Completed 200 OK in 133ms (Views: 133.1ms | ActiveRecord: 0.0ms)
|
|
1892
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1893
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1894
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:31:38 +0200
|
|
1895
|
+
Processing by HomeController#index as HTML
|
|
1896
|
+
Rendered home/index.html.erb within layouts/application (0.4ms)
|
|
1897
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
|
1898
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:31:38 +0200
|
|
1899
|
+
Processing by HomeController#subdir_template as PDF
|
|
1900
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.2ms)
|
|
1901
|
+
Rendered text template (0.0ms)
|
|
1902
|
+
Sent data subdir_template.pdf (0.6ms)
|
|
1903
|
+
Completed 200 OK in 127ms (Views: 126.8ms | ActiveRecord: 0.0ms)
|
|
1904
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1905
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1906
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1907
|
+
Connecting to database specified by database.yml
|
|
1908
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
1909
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1910
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1911
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:32:00 +0200
|
|
1912
|
+
Processing by HomeController#index as HTML
|
|
1913
|
+
Rendered home/index.html.erb within layouts/application (1.4ms)
|
|
1914
|
+
Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
|
|
1915
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:32:00 +0200
|
|
1916
|
+
Processing by HomeController#index as PDF
|
|
1917
|
+
Rendered home/index.pdf.erb (0.3ms)
|
|
1918
|
+
Rendered inline template (0.9ms)
|
|
1919
|
+
Completed 500 Internal Server Error in 684ms (Views: 683.6ms | ActiveRecord: 0.0ms)
|
|
1920
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1921
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1922
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:32:01 +0200
|
|
1923
|
+
Processing by HomeController#index as HTML
|
|
1924
|
+
Rendered home/index.html.erb within layouts/application (0.4ms)
|
|
1925
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
|
1926
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:32:01 +0200
|
|
1927
|
+
Processing by HomeController#subdir_template as PDF
|
|
1928
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.3ms)
|
|
1929
|
+
Rendered inline template (0.9ms)
|
|
1930
|
+
Completed 500 Internal Server Error in 178ms (Views: 177.2ms | ActiveRecord: 0.0ms)
|
|
1931
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1932
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1933
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1934
|
+
Connecting to database specified by database.yml
|
|
1935
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
1936
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1937
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1938
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:32:13 +0200
|
|
1939
|
+
Processing by HomeController#index as HTML
|
|
1940
|
+
Rendered home/index.html.erb within layouts/application (1.3ms)
|
|
1941
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
|
1942
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:32:13 +0200
|
|
1943
|
+
Processing by HomeController#index as PDF
|
|
1944
|
+
Rendered home/index.pdf.erb (0.3ms)
|
|
1945
|
+
Rendered text template (0.0ms)
|
|
1946
|
+
Sent data contents.pdf (1.2ms)
|
|
1947
|
+
Completed 200 OK in 498ms (Views: 497.4ms | ActiveRecord: 0.0ms)
|
|
1948
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1949
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1950
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:32:14 +0200
|
|
1951
|
+
Processing by HomeController#index as HTML
|
|
1952
|
+
Rendered home/index.html.erb within layouts/application (0.4ms)
|
|
1953
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
|
1954
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:32:14 +0200
|
|
1955
|
+
Processing by HomeController#subdir_template as PDF
|
|
1956
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.5ms)
|
|
1957
|
+
Rendered text template (0.0ms)
|
|
1958
|
+
Sent data subdir_template.pdf (1.2ms)
|
|
1959
|
+
Completed 200 OK in 116ms (Views: 115.4ms | ActiveRecord: 0.0ms)
|
|
1960
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1961
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1962
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1963
|
+
Connecting to database specified by database.yml
|
|
1964
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
1965
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1966
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1967
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:34:19 +0200
|
|
1968
|
+
Processing by HomeController#index as HTML
|
|
1969
|
+
Rendered home/index.html.erb within layouts/application (1.5ms)
|
|
1970
|
+
Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
|
|
1971
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:34:19 +0200
|
|
1972
|
+
Processing by HomeController#index as PDF
|
|
1973
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
1974
|
+
Completed 500 Internal Server Error in 3ms
|
|
1975
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1976
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
|
1977
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:34:19 +0200
|
|
1978
|
+
Processing by HomeController#index as HTML
|
|
1979
|
+
Rendered home/index.html.erb within layouts/application (0.4ms)
|
|
1980
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
|
1981
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:34:19 +0200
|
|
1982
|
+
Processing by HomeController#subdir_template as PDF
|
|
1983
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.3ms)
|
|
1984
|
+
Completed 500 Internal Server Error in 3ms
|
|
1985
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1986
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1987
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1988
|
+
Connecting to database specified by database.yml
|
|
1989
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
1990
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1991
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1992
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:35:42 +0200
|
|
1993
|
+
Processing by HomeController#index as HTML
|
|
1994
|
+
Rendered home/index.html.erb within layouts/application (1.5ms)
|
|
1995
|
+
Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
|
1996
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:35:42 +0200
|
|
1997
|
+
Processing by HomeController#index as PDF
|
|
1998
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
1999
|
+
Rendered text template (0.0ms)
|
|
2000
|
+
Sent data contents.pdf (1.2ms)
|
|
2001
|
+
Completed 200 OK in 839ms (Views: 838.8ms | ActiveRecord: 0.0ms)
|
|
2002
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
2003
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2004
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:35:43 +0200
|
|
2005
|
+
Processing by HomeController#index as HTML
|
|
2006
|
+
Rendered home/index.html.erb within layouts/application (0.4ms)
|
|
2007
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
|
2008
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:35:43 +0200
|
|
2009
|
+
Processing by HomeController#subdir_template as PDF
|
|
2010
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.3ms)
|
|
2011
|
+
Rendered text template (0.0ms)
|
|
2012
|
+
Sent data subdir_template.pdf (0.8ms)
|
|
2013
|
+
Completed 200 OK in 107ms (Views: 106.5ms | ActiveRecord: 0.0ms)
|
|
2014
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
2015
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
2016
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
2017
|
+
Connecting to database specified by database.yml
|
|
2018
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
2019
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
2020
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2021
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:36:55 +0200
|
|
2022
|
+
Processing by HomeController#index as HTML
|
|
2023
|
+
Rendered home/index.html.erb within layouts/application (1.3ms)
|
|
2024
|
+
Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
|
|
2025
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:36:55 +0200
|
|
2026
|
+
Processing by HomeController#index as PDF
|
|
2027
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
2028
|
+
Rendered text template (0.0ms)
|
|
2029
|
+
Sent data contents.pdf (1.2ms)
|
|
2030
|
+
Completed 200 OK in 436ms (Views: 435.8ms | ActiveRecord: 0.0ms)
|
|
2031
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
2032
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
2033
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:36:55 +0200
|
|
2034
|
+
Processing by HomeController#index as HTML
|
|
2035
|
+
Rendered home/index.html.erb within layouts/application (0.6ms)
|
|
2036
|
+
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
|
2037
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:36:55 +0200
|
|
2038
|
+
Processing by HomeController#subdir_template as PDF
|
|
2039
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.3ms)
|
|
2040
|
+
Rendered text template (0.0ms)
|
|
2041
|
+
Sent data subdir_template.pdf (0.6ms)
|
|
2042
|
+
Completed 200 OK in 109ms (Views: 108.8ms | ActiveRecord: 0.0ms)
|
|
2043
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
2044
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2045
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
2046
|
+
Connecting to database specified by database.yml
|
|
2047
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
2048
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
2049
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2050
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:36:59 +0200
|
|
2051
|
+
Processing by HomeController#index as HTML
|
|
2052
|
+
Rendered home/index.html.erb within layouts/application (1.4ms)
|
|
2053
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
|
2054
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:36:59 +0200
|
|
2055
|
+
Processing by HomeController#index as PDF
|
|
2056
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
2057
|
+
Rendered text template (0.0ms)
|
|
2058
|
+
Sent data contents.pdf (1.2ms)
|
|
2059
|
+
Completed 200 OK in 112ms (Views: 111.5ms | ActiveRecord: 0.0ms)
|
|
2060
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
2061
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2062
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:36:59 +0200
|
|
2063
|
+
Processing by HomeController#index as HTML
|
|
2064
|
+
Rendered home/index.html.erb within layouts/application (0.4ms)
|
|
2065
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
|
2066
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:36:59 +0200
|
|
2067
|
+
Processing by HomeController#subdir_template as PDF
|
|
2068
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.3ms)
|
|
2069
|
+
Rendered text template (0.0ms)
|
|
2070
|
+
Sent data subdir_template.pdf (0.6ms)
|
|
2071
|
+
Completed 200 OK in 144ms (Views: 144.0ms | ActiveRecord: 0.0ms)
|
|
2072
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
2073
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2074
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
2075
|
+
Connecting to database specified by database.yml
|
|
2076
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
2077
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
2078
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2079
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:37:11 +0200
|
|
2080
|
+
Processing by HomeController#index as HTML
|
|
2081
|
+
Rendered home/index.html.erb within layouts/application (1.3ms)
|
|
2082
|
+
Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
|
|
2083
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:37:11 +0200
|
|
2084
|
+
Processing by HomeController#index as PDF
|
|
2085
|
+
Rendered home/index.pdf.erb (0.3ms)
|
|
2086
|
+
Rendered text template (0.0ms)
|
|
2087
|
+
Sent data contents.pdf (1.6ms)
|
|
2088
|
+
Completed 200 OK in 441ms (Views: 441.2ms | ActiveRecord: 0.0ms)
|
|
2089
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
2090
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2091
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:37:11 +0200
|
|
2092
|
+
Processing by HomeController#index as HTML
|
|
2093
|
+
Rendered home/index.html.erb within layouts/application (0.5ms)
|
|
2094
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
|
2095
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:37:11 +0200
|
|
2096
|
+
Processing by HomeController#subdir_template as PDF
|
|
2097
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.3ms)
|
|
2098
|
+
Rendered text template (0.0ms)
|
|
2099
|
+
Sent data subdir_template.pdf (0.6ms)
|
|
2100
|
+
Completed 200 OK in 128ms (Views: 127.8ms | ActiveRecord: 0.0ms)
|
|
2101
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
2102
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
2103
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
2104
|
+
Connecting to database specified by database.yml
|
|
2105
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
2106
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
2107
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2108
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:38:01 +0200
|
|
2109
|
+
Processing by HomeController#index as HTML
|
|
2110
|
+
Rendered home/index.html.erb within layouts/application (1.4ms)
|
|
2111
|
+
Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
|
|
2112
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:38:01 +0200
|
|
2113
|
+
Processing by HomeController#index as PDF
|
|
2114
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
2115
|
+
Rendered inline template (1.2ms)
|
|
2116
|
+
Completed 500 Internal Server Error in 470ms (Views: 469.4ms | ActiveRecord: 0.0ms)
|
|
2117
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
2118
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2119
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:38:02 +0200
|
|
2120
|
+
Processing by HomeController#index as HTML
|
|
2121
|
+
Rendered home/index.html.erb within layouts/application (0.7ms)
|
|
2122
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
|
2123
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:38:02 +0200
|
|
2124
|
+
Processing by HomeController#subdir_template as PDF
|
|
2125
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.3ms)
|
|
2126
|
+
Rendered inline template (0.9ms)
|
|
2127
|
+
Completed 500 Internal Server Error in 199ms (Views: 198.8ms | ActiveRecord: 0.0ms)
|
|
2128
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
2129
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2130
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
2131
|
+
Connecting to database specified by database.yml
|
|
2132
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
2133
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
2134
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2135
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:38:21 +0200
|
|
2136
|
+
Processing by HomeController#index as HTML
|
|
2137
|
+
Rendered home/index.html.erb within layouts/application (1.5ms)
|
|
2138
|
+
Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.0ms)
|
|
2139
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:38:21 +0200
|
|
2140
|
+
Processing by HomeController#index as PDF
|
|
2141
|
+
Rendered home/index.pdf.erb (0.3ms)
|
|
2142
|
+
Rendered inline template (1.1ms)
|
|
2143
|
+
Completed 500 Internal Server Error in 450ms (Views: 449.6ms | ActiveRecord: 0.0ms)
|
|
2144
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
2145
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2146
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:38:21 +0200
|
|
2147
|
+
Processing by HomeController#index as HTML
|
|
2148
|
+
Rendered home/index.html.erb within layouts/application (0.6ms)
|
|
2149
|
+
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
|
2150
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:38:21 +0200
|
|
2151
|
+
Processing by HomeController#subdir_template as PDF
|
|
2152
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.2ms)
|
|
2153
|
+
Rendered inline template (1.2ms)
|
|
2154
|
+
Completed 500 Internal Server Error in 123ms (Views: 122.9ms | ActiveRecord: 0.0ms)
|
|
2155
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
2156
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2157
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
2158
|
+
Connecting to database specified by database.yml
|
|
2159
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
2160
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
2161
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2162
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:38:54 +0200
|
|
2163
|
+
Processing by HomeController#index as HTML
|
|
2164
|
+
Rendered home/index.html.erb within layouts/application (1.3ms)
|
|
2165
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
|
|
2166
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:38:54 +0200
|
|
2167
|
+
Processing by HomeController#index as PDF
|
|
2168
|
+
Rendered home/index.pdf.erb (0.3ms)
|
|
2169
|
+
Rendered inline template (0.9ms)
|
|
2170
|
+
Completed 500 Internal Server Error in 379ms (Views: 379.2ms | ActiveRecord: 0.0ms)
|
|
2171
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
2172
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2173
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:38:54 +0200
|
|
2174
|
+
Processing by HomeController#index as HTML
|
|
2175
|
+
Rendered home/index.html.erb within layouts/application (0.3ms)
|
|
2176
|
+
Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
|
2177
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:38:54 +0200
|
|
2178
|
+
Processing by HomeController#subdir_template as PDF
|
|
2179
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.3ms)
|
|
2180
|
+
Rendered inline template (1.9ms)
|
|
2181
|
+
Completed 500 Internal Server Error in 126ms (Views: 125.3ms | ActiveRecord: 0.0ms)
|
|
2182
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
2183
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2184
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
2185
|
+
Connecting to database specified by database.yml
|
|
2186
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
2187
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
2188
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2189
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:42:09 +0200
|
|
2190
|
+
Processing by HomeController#index as HTML
|
|
2191
|
+
Rendered home/index.html.erb within layouts/application (1.5ms)
|
|
2192
|
+
Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
|
|
2193
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:42:09 +0200
|
|
2194
|
+
Processing by HomeController#index as PDF
|
|
2195
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
2196
|
+
Rendered text template (0.0ms)
|
|
2197
|
+
Sent data contents.pdf (1.2ms)
|
|
2198
|
+
Completed 200 OK in 1521ms (Views: 1520.6ms | ActiveRecord: 0.0ms)
|
|
2199
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
2200
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2201
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:42:10 +0200
|
|
2202
|
+
Processing by HomeController#index as HTML
|
|
2203
|
+
Rendered home/index.html.erb within layouts/application (0.4ms)
|
|
2204
|
+
Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
|
2205
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:42:10 +0200
|
|
2206
|
+
Processing by HomeController#subdir_template as PDF
|
|
2207
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.2ms)
|
|
2208
|
+
Rendered text template (0.0ms)
|
|
2209
|
+
Sent data subdir_template.pdf (0.6ms)
|
|
2210
|
+
Completed 200 OK in 179ms (Views: 178.6ms | ActiveRecord: 0.0ms)
|
|
2211
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
2212
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2213
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
2214
|
+
Connecting to database specified by database.yml
|
|
2215
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
2216
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
2217
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2218
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:42:45 +0200
|
|
2219
|
+
Processing by HomeController#index as HTML
|
|
2220
|
+
Rendered home/index.html.erb within layouts/application (1.4ms)
|
|
2221
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
|
2222
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:42:45 +0200
|
|
2223
|
+
Processing by HomeController#index as PDF
|
|
2224
|
+
Rendered home/index.pdf.erb (0.3ms)
|
|
2225
|
+
Rendered inline template (1.3ms)
|
|
2226
|
+
Completed 500 Internal Server Error in 418ms (Views: 417.4ms | ActiveRecord: 0.0ms)
|
|
2227
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
2228
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2229
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:42:45 +0200
|
|
2230
|
+
Processing by HomeController#index as HTML
|
|
2231
|
+
Rendered home/index.html.erb within layouts/application (0.6ms)
|
|
2232
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
|
2233
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:42:45 +0200
|
|
2234
|
+
Processing by HomeController#subdir_template as PDF
|
|
2235
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.3ms)
|
|
2236
|
+
Rendered inline template (0.9ms)
|
|
2237
|
+
Completed 500 Internal Server Error in 209ms (Views: 208.1ms | ActiveRecord: 0.0ms)
|
|
2238
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
2239
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2240
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
2241
|
+
Connecting to database specified by database.yml
|
|
2242
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
2243
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
2244
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2245
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:43:08 +0200
|
|
2246
|
+
Processing by HomeController#index as HTML
|
|
2247
|
+
Rendered home/index.html.erb within layouts/application (1.5ms)
|
|
2248
|
+
Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
|
|
2249
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2013-08-29 14:43:08 +0200
|
|
2250
|
+
Processing by HomeController#index as PDF
|
|
2251
|
+
Rendered home/index.pdf.erb (0.3ms)
|
|
2252
|
+
Rendered text template (0.0ms)
|
|
2253
|
+
Sent data contents.pdf (1.4ms)
|
|
2254
|
+
Completed 200 OK in 453ms (Views: 452.6ms | ActiveRecord: 0.0ms)
|
|
2255
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
2256
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2257
|
+
Started GET "/home" for 127.0.0.1 at 2013-08-29 14:43:09 +0200
|
|
2258
|
+
Processing by HomeController#index as HTML
|
|
2259
|
+
Rendered home/index.html.erb within layouts/application (0.5ms)
|
|
2260
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
|
2261
|
+
Started GET "/home/subdir_template.pdf" for 127.0.0.1 at 2013-08-29 14:43:09 +0200
|
|
2262
|
+
Processing by HomeController#subdir_template as PDF
|
|
2263
|
+
Rendered home/pdf/subdir_template.pdf.erb (0.2ms)
|
|
2264
|
+
Rendered text template (0.0ms)
|
|
2265
|
+
Sent data subdir_template.pdf (0.6ms)
|
|
2266
|
+
Completed 200 OK in 168ms (Views: 167.6ms | ActiveRecord: 0.0ms)
|
|
2267
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
2268
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
2269
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: docmago_client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jan Habermann
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-08-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httparty
|
|
@@ -44,28 +44,28 @@ dependencies:
|
|
|
44
44
|
requirements:
|
|
45
45
|
- - '>='
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 1.
|
|
47
|
+
version: 1.6.0
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - '>='
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: 1.
|
|
54
|
+
version: 1.6.0
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: rubyzip
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
|
59
59
|
- - '>='
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: 0.
|
|
61
|
+
version: 1.0.0
|
|
62
62
|
type: :runtime
|
|
63
63
|
prerelease: false
|
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
66
|
- - '>='
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
|
-
version: 0.
|
|
68
|
+
version: 1.0.0
|
|
69
69
|
- !ruby/object:Gem::Dependency
|
|
70
70
|
name: rails
|
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -195,7 +195,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
195
195
|
version: '0'
|
|
196
196
|
requirements: []
|
|
197
197
|
rubyforge_project:
|
|
198
|
-
rubygems_version: 2.0.
|
|
198
|
+
rubygems_version: 2.0.3
|
|
199
199
|
signing_key:
|
|
200
200
|
specification_version: 4
|
|
201
201
|
summary: Client for the Docmago API (www.docmago.com)
|