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: 8018629f8c6f61748ae5aa5860a1ea82d014a844
4
- data.tar.gz: 7712e63033b388e0093d2d773c01fa0cb8f8e7a8
3
+ metadata.gz: b4a49afceb2e583cb568d3130df8a79da662ea74
4
+ data.tar.gz: 903bb241dcde53b4d6cbc18c7f0edc620f40550c
5
5
  SHA512:
6
- metadata.gz: 69402da45908499b76a000ec5d72d8b85bdbe4b75a3d6dce3b160744d9b3512b4e90236e424a379e63e68a20e3dc48c672bfc850197b638685d9b7c1c161f34e
7
- data.tar.gz: b07359dbb65b56dae187e7f2414f128ef6c196903b84c8f5d283404cba65842aae18b0da366390f18e48b3b20a2782cf50051f02e307b712f10bad2d490e467d
6
+ metadata.gz: 220876b73d683c134cadef101b94aff88d08de75a7ff1d25d9d71d932747f1e18a35a24e683c62ff940230c1b8046c70ed30497233db4090fb3d006e6176debe
7
+ data.tar.gz: 3089fe96873fc69abf168852e806e4e9f11eba829eb6ffad8cdd4769f4cd22ace853cf5545624531f4d0f988cd4748ac42c0ec8a6dae5267a89409872f137652
@@ -1,6 +1,6 @@
1
1
  require 'uri'
2
2
  require 'nokogiri'
3
- require 'zip/zipfilesystem'
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::ZipFile.open(file_path, Zip::ZipFile::CREATE) do |zipfile|
15
- zipfile.file.open("document.html", "w") { |f| f.write @html }
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.file.open(normalize_uri(uri), "w") { |f| f.write(File.read(resolve_uri(uri))) }
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,3 +1,3 @@
1
1
  module DocmagoClient
2
- VERSION = "0.1.5"
2
+ VERSION = "0.2.0"
3
3
  end
@@ -1,2 +1,2 @@
1
1
  DocmagoClient.base_uri "http://docmago.dev/api"
2
- DocmagoClient.api_key "2rP35bmKnPr4Uj9iiEnE"
2
+ DocmagoClient.api_key "nj5PtYqJQgmVJzSycjLy"
@@ -1595,3 +1595,675 @@ Completed 200 OK in 225ms (Views: 224.8ms | ActiveRecord: 0.0ms)
1595
1595
   (0.1ms) rollback transaction
1596
1596
   (0.0ms) begin transaction
1597
1597
   (0.0ms) rollback transaction
1598
+ Connecting to database specified by database.yml
1599
+  (0.2ms) begin transaction
1600
+  (0.0ms) rollback transaction
1601
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1611
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1621
+  (0.0ms) begin transaction
1622
+  (0.0ms) rollback transaction
1623
+ Connecting to database specified by database.yml
1624
+  (0.2ms) begin transaction
1625
+  (0.0ms) rollback transaction
1626
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1636
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1646
+  (0.0ms) begin transaction
1647
+  (0.0ms) rollback transaction
1648
+ Connecting to database specified by database.yml
1649
+  (0.2ms) begin transaction
1650
+  (0.0ms) rollback transaction
1651
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1662
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1673
+  (0.0ms) begin transaction
1674
+  (0.0ms) rollback transaction
1675
+ Connecting to database specified by database.yml
1676
+  (0.2ms) begin transaction
1677
+  (0.0ms) rollback transaction
1678
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1690
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1702
+  (0.0ms) begin transaction
1703
+  (0.0ms) rollback transaction
1704
+ Connecting to database specified by database.yml
1705
+  (0.2ms) begin transaction
1706
+  (0.0ms) rollback transaction
1707
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1719
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1731
+  (0.0ms) begin transaction
1732
+  (0.0ms) rollback transaction
1733
+ Connecting to database specified by database.yml
1734
+  (0.2ms) begin transaction
1735
+  (0.0ms) rollback transaction
1736
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1748
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1760
+  (0.0ms) begin transaction
1761
+  (0.0ms) rollback transaction
1762
+ Connecting to database specified by database.yml
1763
+  (0.2ms) begin transaction
1764
+  (0.0ms) rollback transaction
1765
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1777
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1789
+  (0.0ms) begin transaction
1790
+  (0.0ms) rollback transaction
1791
+ Connecting to database specified by database.yml
1792
+  (0.2ms) begin transaction
1793
+  (0.0ms) rollback transaction
1794
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1806
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1818
+  (0.1ms) begin transaction
1819
+  (0.0ms) rollback transaction
1820
+ Connecting to database specified by database.yml
1821
+  (0.2ms) begin transaction
1822
+  (0.0ms) rollback transaction
1823
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1835
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1847
+  (0.0ms) begin transaction
1848
+  (0.0ms) rollback transaction
1849
+ Connecting to database specified by database.yml
1850
+  (0.3ms) begin transaction
1851
+  (0.1ms) rollback transaction
1852
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1864
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1876
+  (0.0ms) begin transaction
1877
+  (0.0ms) rollback transaction
1878
+ Connecting to database specified by database.yml
1879
+  (0.2ms) begin transaction
1880
+  (0.0ms) rollback transaction
1881
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1893
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1905
+  (0.0ms) begin transaction
1906
+  (0.0ms) rollback transaction
1907
+ Connecting to database specified by database.yml
1908
+  (0.2ms) begin transaction
1909
+  (0.0ms) rollback transaction
1910
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1921
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1932
+  (0.0ms) begin transaction
1933
+  (0.0ms) rollback transaction
1934
+ Connecting to database specified by database.yml
1935
+  (0.2ms) begin transaction
1936
+  (0.0ms) rollback transaction
1937
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1949
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1961
+  (0.0ms) begin transaction
1962
+  (0.0ms) rollback transaction
1963
+ Connecting to database specified by database.yml
1964
+  (0.2ms) begin transaction
1965
+  (0.0ms) rollback transaction
1966
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1976
+  (0.4ms) begin transaction
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
+  (0.1ms) rollback transaction
1986
+  (0.0ms) begin transaction
1987
+  (0.0ms) rollback transaction
1988
+ Connecting to database specified by database.yml
1989
+  (0.2ms) begin transaction
1990
+  (0.0ms) rollback transaction
1991
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
2003
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
2015
+  (0.1ms) begin transaction
2016
+  (0.1ms) rollback transaction
2017
+ Connecting to database specified by database.yml
2018
+  (0.2ms) begin transaction
2019
+  (0.0ms) rollback transaction
2020
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
2032
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
2044
+  (0.0ms) begin transaction
2045
+  (0.0ms) rollback transaction
2046
+ Connecting to database specified by database.yml
2047
+  (0.2ms) begin transaction
2048
+  (0.0ms) rollback transaction
2049
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
2061
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
2073
+  (0.0ms) begin transaction
2074
+  (0.0ms) rollback transaction
2075
+ Connecting to database specified by database.yml
2076
+  (0.2ms) begin transaction
2077
+  (0.0ms) rollback transaction
2078
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
2090
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
2102
+  (0.1ms) begin transaction
2103
+  (0.0ms) rollback transaction
2104
+ Connecting to database specified by database.yml
2105
+  (0.2ms) begin transaction
2106
+  (0.0ms) rollback transaction
2107
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
2118
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
2129
+  (0.0ms) begin transaction
2130
+  (0.0ms) rollback transaction
2131
+ Connecting to database specified by database.yml
2132
+  (0.2ms) begin transaction
2133
+  (0.0ms) rollback transaction
2134
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
2145
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
2156
+  (0.0ms) begin transaction
2157
+  (0.0ms) rollback transaction
2158
+ Connecting to database specified by database.yml
2159
+  (0.2ms) begin transaction
2160
+  (0.0ms) rollback transaction
2161
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
2172
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
2183
+  (0.0ms) begin transaction
2184
+  (0.0ms) rollback transaction
2185
+ Connecting to database specified by database.yml
2186
+  (0.2ms) begin transaction
2187
+  (0.0ms) rollback transaction
2188
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
2200
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
2212
+  (0.0ms) begin transaction
2213
+  (0.0ms) rollback transaction
2214
+ Connecting to database specified by database.yml
2215
+  (0.2ms) begin transaction
2216
+  (0.0ms) rollback transaction
2217
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
2228
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
2239
+  (0.0ms) begin transaction
2240
+  (0.0ms) rollback transaction
2241
+ Connecting to database specified by database.yml
2242
+  (0.2ms) begin transaction
2243
+  (0.0ms) rollback transaction
2244
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
2256
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
2268
+  (0.0ms) begin transaction
2269
+  (0.0ms) 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.1.5
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-06-30 00:00:00.000000000 Z
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.5.9
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.5.9
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.9.9
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.9.9
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.2
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)