docmago_client 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/lib/docmago_client.rb
CHANGED
|
@@ -18,6 +18,11 @@ module DocmagoClient
|
|
|
18
18
|
|
|
19
19
|
base_uri ENV["DOCMAGO_URL"] || "https://docmago.com/api/"
|
|
20
20
|
|
|
21
|
+
def self.base_uri(uri = nil)
|
|
22
|
+
default_options[:base_uri] = uri ? uri : default_options[:base_uri] || ENV["DOCMAGO_URL"]
|
|
23
|
+
default_options[:base_uri]
|
|
24
|
+
end
|
|
25
|
+
|
|
21
26
|
def self.api_key(key = nil)
|
|
22
27
|
default_options[:api_key] = key ? key : default_options[:api_key] || ENV["DOCMAGO_API_KEY"]
|
|
23
28
|
default_options[:api_key] || raise(DocmagoClient::Error::NoApiKeyProvidedError.new("No API key provided"))
|
|
@@ -16,6 +16,7 @@ module DocmagoClient
|
|
|
16
16
|
default_options = {
|
|
17
17
|
:name => filename||controller_name,
|
|
18
18
|
:test_mode => !Rails.env.production?,
|
|
19
|
+
:base_uri => url_for(:only_path => false)
|
|
19
20
|
}
|
|
20
21
|
options = default_options.merge(options)
|
|
21
22
|
options[:content] ||= render_to_string(options)
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
DocmagoClient.
|
|
1
|
+
DocmagoClient.base_uri "http://localhost:3000/api/"
|
|
2
|
+
DocmagoClient.api_key "Hq2zWQ8pfDjbRGZuvJhy"
|
data/test/dummy/log/test.log
CHANGED
|
@@ -569,3 +569,543 @@ Completed 200 OK in 1022ms (Views: 1022.1ms | ActiveRecord: 0.0ms)
|
|
|
569
569
|
[1m[35m (0.1ms)[0m rollback transaction
|
|
570
570
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
571
571
|
[1m[35m (0.0ms)[0m rollback transaction
|
|
572
|
+
Connecting to database specified by database.yml
|
|
573
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
574
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
575
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 17:50:58 +0200
|
|
579
|
+
Processing by HomeController#index as HTML
|
|
580
|
+
Rendered home/index.html.erb within layouts/application (1.6ms)
|
|
581
|
+
Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 17:50:58 +0200
|
|
585
|
+
Processing by HomeController#index as PDF
|
|
586
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
587
|
+
Completed 500 Internal Server Error in 2ms
|
|
588
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
589
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
590
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
591
|
+
Connecting to database specified by database.yml
|
|
592
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
593
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
594
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
595
|
+
|
|
596
|
+
|
|
597
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 17:51:58 +0200
|
|
598
|
+
Processing by HomeController#index as HTML
|
|
599
|
+
Rendered home/index.html.erb within layouts/application (1.6ms)
|
|
600
|
+
Completed 200 OK in 8ms (Views: 8.2ms | ActiveRecord: 0.0ms)
|
|
601
|
+
|
|
602
|
+
|
|
603
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 17:51:58 +0200
|
|
604
|
+
Processing by HomeController#index as PDF
|
|
605
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
606
|
+
Completed 500 Internal Server Error in 2ms
|
|
607
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
608
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
609
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
610
|
+
Connecting to database specified by database.yml
|
|
611
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
612
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
613
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 17:54:53 +0200
|
|
617
|
+
Processing by HomeController#index as HTML
|
|
618
|
+
Rendered home/index.html.erb within layouts/application (1.7ms)
|
|
619
|
+
Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 17:54:53 +0200
|
|
623
|
+
Processing by HomeController#index as PDF
|
|
624
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
625
|
+
Completed 500 Internal Server Error in 2ms
|
|
626
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
627
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
628
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
629
|
+
Connecting to database specified by database.yml
|
|
630
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
631
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
632
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 17:57:55 +0200
|
|
636
|
+
Processing by HomeController#index as HTML
|
|
637
|
+
Rendered home/index.html.erb within layouts/application (1.8ms)
|
|
638
|
+
Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.0ms)
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 17:57:55 +0200
|
|
642
|
+
Processing by HomeController#index as PDF
|
|
643
|
+
Rendered home/index.pdf.erb (0.3ms)
|
|
644
|
+
Completed 500 Internal Server Error in 2ms
|
|
645
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
646
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
647
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
648
|
+
Connecting to database specified by database.yml
|
|
649
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
650
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
651
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
652
|
+
|
|
653
|
+
|
|
654
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 17:58:22 +0200
|
|
655
|
+
Processing by HomeController#index as HTML
|
|
656
|
+
Rendered home/index.html.erb within layouts/application (1.6ms)
|
|
657
|
+
Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 17:58:23 +0200
|
|
661
|
+
Processing by HomeController#index as PDF
|
|
662
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
663
|
+
Rendered inline template (0.5ms)
|
|
664
|
+
Completed 401 Unauthorized in 1051ms (Views: 1050.7ms | ActiveRecord: 0.0ms)
|
|
665
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
666
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
667
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
668
|
+
Connecting to database specified by database.yml
|
|
669
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
670
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
671
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
672
|
+
|
|
673
|
+
|
|
674
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 18:00:06 +0200
|
|
675
|
+
Processing by HomeController#index as HTML
|
|
676
|
+
Rendered home/index.html.erb within layouts/application (1.6ms)
|
|
677
|
+
Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 18:00:06 +0200
|
|
681
|
+
Processing by HomeController#index as PDF
|
|
682
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
683
|
+
Completed 500 Internal Server Error in 4ms
|
|
684
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
685
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
686
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
687
|
+
Connecting to database specified by database.yml
|
|
688
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
689
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
690
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 18:01:00 +0200
|
|
694
|
+
Processing by HomeController#index as HTML
|
|
695
|
+
Rendered home/index.html.erb within layouts/application (1.6ms)
|
|
696
|
+
Completed 200 OK in 8ms (Views: 8.2ms | ActiveRecord: 0.0ms)
|
|
697
|
+
|
|
698
|
+
|
|
699
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 18:01:00 +0200
|
|
700
|
+
Processing by HomeController#index as PDF
|
|
701
|
+
Rendered home/index.pdf.erb (0.3ms)
|
|
702
|
+
Completed 500 Internal Server Error in 4ms
|
|
703
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
704
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
705
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
706
|
+
Connecting to database specified by database.yml
|
|
707
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
|
708
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
709
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 18:01:51 +0200
|
|
713
|
+
Processing by HomeController#index as HTML
|
|
714
|
+
Rendered home/index.html.erb within layouts/application (1.8ms)
|
|
715
|
+
Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
|
|
716
|
+
|
|
717
|
+
|
|
718
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 18:01:51 +0200
|
|
719
|
+
Processing by HomeController#index as PDF
|
|
720
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
721
|
+
Completed 500 Internal Server Error in 4ms
|
|
722
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
723
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
724
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
725
|
+
Connecting to database specified by database.yml
|
|
726
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
727
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
728
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
729
|
+
|
|
730
|
+
|
|
731
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 18:01:55 +0200
|
|
732
|
+
Processing by HomeController#index as HTML
|
|
733
|
+
Rendered home/index.html.erb within layouts/application (1.8ms)
|
|
734
|
+
Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
|
|
735
|
+
|
|
736
|
+
|
|
737
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 18:01:55 +0200
|
|
738
|
+
Processing by HomeController#index as PDF
|
|
739
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
740
|
+
Completed 500 Internal Server Error in 4ms
|
|
741
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
742
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
743
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
744
|
+
Connecting to database specified by database.yml
|
|
745
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
746
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
747
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 18:02:01 +0200
|
|
751
|
+
Processing by HomeController#index as HTML
|
|
752
|
+
Rendered home/index.html.erb within layouts/application (1.7ms)
|
|
753
|
+
Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
|
|
754
|
+
|
|
755
|
+
|
|
756
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 18:02:01 +0200
|
|
757
|
+
Processing by HomeController#index as PDF
|
|
758
|
+
Rendered home/index.pdf.erb (0.3ms)
|
|
759
|
+
Completed 500 Internal Server Error in 4ms
|
|
760
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
761
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
762
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
763
|
+
Connecting to database specified by database.yml
|
|
764
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
|
765
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
766
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
767
|
+
|
|
768
|
+
|
|
769
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 18:02:25 +0200
|
|
770
|
+
Processing by HomeController#index as HTML
|
|
771
|
+
Rendered home/index.html.erb within layouts/application (1.6ms)
|
|
772
|
+
Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.0ms)
|
|
773
|
+
|
|
774
|
+
|
|
775
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 18:02:26 +0200
|
|
776
|
+
Processing by HomeController#index as PDF
|
|
777
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
778
|
+
Completed 500 Internal Server Error in 4ms
|
|
779
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
780
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
781
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
782
|
+
Connecting to database specified by database.yml
|
|
783
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
784
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
785
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
786
|
+
|
|
787
|
+
|
|
788
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 18:02:45 +0200
|
|
789
|
+
Processing by HomeController#index as HTML
|
|
790
|
+
Rendered home/index.html.erb within layouts/application (1.7ms)
|
|
791
|
+
Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
|
|
792
|
+
|
|
793
|
+
|
|
794
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 18:02:45 +0200
|
|
795
|
+
Processing by HomeController#index as PDF
|
|
796
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
797
|
+
Rendered inline template (0.2ms)
|
|
798
|
+
Completed 401 Unauthorized in 611ms (Views: 611.3ms | ActiveRecord: 0.0ms)
|
|
799
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
800
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
801
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
802
|
+
Connecting to database specified by database.yml
|
|
803
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
804
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
805
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
806
|
+
|
|
807
|
+
|
|
808
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 18:03:22 +0200
|
|
809
|
+
Processing by HomeController#index as HTML
|
|
810
|
+
Rendered home/index.html.erb within layouts/application (1.9ms)
|
|
811
|
+
Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 18:03:22 +0200
|
|
815
|
+
Processing by HomeController#index as PDF
|
|
816
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
817
|
+
Completed 500 Internal Server Error in 2ms
|
|
818
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
819
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
820
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
821
|
+
Connecting to database specified by database.yml
|
|
822
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
823
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
824
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
825
|
+
|
|
826
|
+
|
|
827
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 18:04:56 +0200
|
|
828
|
+
Processing by HomeController#index as HTML
|
|
829
|
+
Rendered home/index.html.erb within layouts/application (1.6ms)
|
|
830
|
+
Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
|
|
831
|
+
|
|
832
|
+
|
|
833
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 18:04:56 +0200
|
|
834
|
+
Processing by HomeController#index as PDF
|
|
835
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
836
|
+
Rendered inline template (0.4ms)
|
|
837
|
+
Completed 401 Unauthorized in 1015ms (Views: 1015.2ms | ActiveRecord: 0.0ms)
|
|
838
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
839
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
840
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
841
|
+
Connecting to database specified by database.yml
|
|
842
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
843
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
844
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 18:05:33 +0200
|
|
848
|
+
Processing by HomeController#index as HTML
|
|
849
|
+
Rendered home/index.html.erb within layouts/application (1.7ms)
|
|
850
|
+
Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)
|
|
851
|
+
|
|
852
|
+
|
|
853
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 18:05:33 +0200
|
|
854
|
+
Processing by HomeController#index as PDF
|
|
855
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
856
|
+
Rendered inline template (0.2ms)
|
|
857
|
+
Completed 401 Unauthorized in 41ms (Views: 40.4ms | ActiveRecord: 0.0ms)
|
|
858
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
859
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
860
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
861
|
+
Connecting to database specified by database.yml
|
|
862
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
863
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
864
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 18:05:58 +0200
|
|
868
|
+
Processing by HomeController#index as HTML
|
|
869
|
+
Rendered home/index.html.erb within layouts/application (1.6ms)
|
|
870
|
+
Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.0ms)
|
|
871
|
+
|
|
872
|
+
|
|
873
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 18:05:58 +0200
|
|
874
|
+
Processing by HomeController#index as PDF
|
|
875
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
876
|
+
Rendered text template (0.0ms)
|
|
877
|
+
Sent data contents.pdf (1.8ms)
|
|
878
|
+
Completed 200 OK in 913ms (Views: 912.8ms | ActiveRecord: 0.0ms)
|
|
879
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
880
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
881
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
882
|
+
Connecting to database specified by database.yml
|
|
883
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
884
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
885
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
886
|
+
|
|
887
|
+
|
|
888
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 18:06:44 +0200
|
|
889
|
+
Processing by HomeController#index as HTML
|
|
890
|
+
Rendered home/index.html.erb within layouts/application (1.6ms)
|
|
891
|
+
Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)
|
|
892
|
+
|
|
893
|
+
|
|
894
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 18:06:45 +0200
|
|
895
|
+
Processing by HomeController#index as PDF
|
|
896
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
897
|
+
Rendered text template (0.0ms)
|
|
898
|
+
Sent data contents.pdf (1.5ms)
|
|
899
|
+
Completed 200 OK in 80ms (Views: 79.5ms | ActiveRecord: 0.0ms)
|
|
900
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
901
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
902
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
903
|
+
Connecting to database specified by database.yml
|
|
904
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
905
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
906
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
907
|
+
|
|
908
|
+
|
|
909
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 18:08:29 +0200
|
|
910
|
+
Processing by HomeController#index as HTML
|
|
911
|
+
Rendered home/index.html.erb within layouts/application (1.7ms)
|
|
912
|
+
Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms)
|
|
913
|
+
|
|
914
|
+
|
|
915
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 18:08:29 +0200
|
|
916
|
+
Processing by HomeController#index as PDF
|
|
917
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
918
|
+
Rendered text template (0.0ms)
|
|
919
|
+
Sent data contents.pdf (1.5ms)
|
|
920
|
+
Completed 200 OK in 68ms (Views: 67.7ms | ActiveRecord: 0.0ms)
|
|
921
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
922
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
923
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
924
|
+
Connecting to database specified by database.yml
|
|
925
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
926
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
927
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
928
|
+
|
|
929
|
+
|
|
930
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 18:09:34 +0200
|
|
931
|
+
Processing by HomeController#index as HTML
|
|
932
|
+
Rendered home/index.html.erb within layouts/application (1.8ms)
|
|
933
|
+
Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)
|
|
934
|
+
|
|
935
|
+
|
|
936
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 18:09:34 +0200
|
|
937
|
+
Processing by HomeController#index as PDF
|
|
938
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
939
|
+
Rendered text template (0.0ms)
|
|
940
|
+
Sent data contents.pdf (1.6ms)
|
|
941
|
+
Completed 200 OK in 64ms (Views: 63.7ms | ActiveRecord: 0.0ms)
|
|
942
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
943
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
944
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
945
|
+
Connecting to database specified by database.yml
|
|
946
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
947
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
948
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
949
|
+
|
|
950
|
+
|
|
951
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 18:11:50 +0200
|
|
952
|
+
Processing by HomeController#index as HTML
|
|
953
|
+
Rendered home/index.html.erb within layouts/application (1.8ms)
|
|
954
|
+
Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)
|
|
955
|
+
|
|
956
|
+
|
|
957
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 18:11:50 +0200
|
|
958
|
+
Processing by HomeController#index as PDF
|
|
959
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
960
|
+
Rendered text template (0.0ms)
|
|
961
|
+
Sent data contents.pdf (1.9ms)
|
|
962
|
+
Completed 200 OK in 74ms (Views: 73.5ms | ActiveRecord: 0.0ms)
|
|
963
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
964
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
965
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
966
|
+
Connecting to database specified by database.yml
|
|
967
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
968
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
969
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
970
|
+
|
|
971
|
+
|
|
972
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 18:12:21 +0200
|
|
973
|
+
Processing by HomeController#index as HTML
|
|
974
|
+
Rendered home/index.html.erb within layouts/application (1.6ms)
|
|
975
|
+
Completed 200 OK in 8ms (Views: 8.2ms | ActiveRecord: 0.0ms)
|
|
976
|
+
|
|
977
|
+
|
|
978
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 18:12:21 +0200
|
|
979
|
+
Processing by HomeController#index as PDF
|
|
980
|
+
Rendered home/index.pdf.erb (0.3ms)
|
|
981
|
+
Rendered text template (0.0ms)
|
|
982
|
+
Sent data contents.pdf (2.6ms)
|
|
983
|
+
Completed 200 OK in 69ms (Views: 69.3ms | ActiveRecord: 0.0ms)
|
|
984
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
985
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
986
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
987
|
+
Connecting to database specified by database.yml
|
|
988
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
989
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
990
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
991
|
+
|
|
992
|
+
|
|
993
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 18:13:17 +0200
|
|
994
|
+
Processing by HomeController#index as HTML
|
|
995
|
+
Rendered home/index.html.erb within layouts/application (1.8ms)
|
|
996
|
+
Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms)
|
|
997
|
+
|
|
998
|
+
|
|
999
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 18:13:17 +0200
|
|
1000
|
+
Processing by HomeController#index as PDF
|
|
1001
|
+
Rendered home/index.pdf.erb (0.3ms)
|
|
1002
|
+
Rendered text template (0.0ms)
|
|
1003
|
+
Sent data contents.pdf (1.6ms)
|
|
1004
|
+
Completed 200 OK in 103ms (Views: 102.8ms | ActiveRecord: 0.0ms)
|
|
1005
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1006
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1007
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1008
|
+
Connecting to database specified by database.yml
|
|
1009
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
1010
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1011
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
1012
|
+
|
|
1013
|
+
|
|
1014
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 18:18:41 +0200
|
|
1015
|
+
Processing by HomeController#index as HTML
|
|
1016
|
+
Rendered home/index.html.erb within layouts/application (1.7ms)
|
|
1017
|
+
Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
|
|
1018
|
+
|
|
1019
|
+
|
|
1020
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 18:18:41 +0200
|
|
1021
|
+
Processing by HomeController#index as PDF
|
|
1022
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
1023
|
+
Rendered inline template (0.9ms)
|
|
1024
|
+
Completed 500 Internal Server Error in 628ms (Views: 627.9ms | ActiveRecord: 0.0ms)
|
|
1025
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1026
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1027
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1028
|
+
Connecting to database specified by database.yml
|
|
1029
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
1030
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1031
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1032
|
+
|
|
1033
|
+
|
|
1034
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 18:19:33 +0200
|
|
1035
|
+
Processing by HomeController#index as HTML
|
|
1036
|
+
Rendered home/index.html.erb within layouts/application (1.6ms)
|
|
1037
|
+
Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
|
|
1038
|
+
|
|
1039
|
+
|
|
1040
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 18:19:33 +0200
|
|
1041
|
+
Processing by HomeController#index as PDF
|
|
1042
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
1043
|
+
Rendered text template (0.0ms)
|
|
1044
|
+
Sent data contents.pdf (1.6ms)
|
|
1045
|
+
Completed 200 OK in 538ms (Views: 538.2ms | ActiveRecord: 0.0ms)
|
|
1046
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1047
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1048
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1049
|
+
Connecting to database specified by database.yml
|
|
1050
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
1051
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1052
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1053
|
+
|
|
1054
|
+
|
|
1055
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 18:20:43 +0200
|
|
1056
|
+
Processing by HomeController#index as HTML
|
|
1057
|
+
Rendered home/index.html.erb within layouts/application (1.9ms)
|
|
1058
|
+
Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
|
|
1059
|
+
|
|
1060
|
+
|
|
1061
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 18:20:43 +0200
|
|
1062
|
+
Processing by HomeController#index as PDF
|
|
1063
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
1064
|
+
Rendered text template (0.0ms)
|
|
1065
|
+
Sent data contents.pdf (2.4ms)
|
|
1066
|
+
Completed 200 OK in 743ms (Views: 742.6ms | ActiveRecord: 0.0ms)
|
|
1067
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1068
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1069
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1070
|
+
Connecting to database specified by database.yml
|
|
1071
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
1072
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1073
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1074
|
+
|
|
1075
|
+
|
|
1076
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 18:22:15 +0200
|
|
1077
|
+
Processing by HomeController#index as HTML
|
|
1078
|
+
Rendered home/index.html.erb within layouts/application (1.8ms)
|
|
1079
|
+
Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
|
|
1080
|
+
|
|
1081
|
+
|
|
1082
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 18:22:15 +0200
|
|
1083
|
+
Processing by HomeController#index as PDF
|
|
1084
|
+
Rendered home/index.pdf.erb (0.2ms)
|
|
1085
|
+
Rendered text template (0.0ms)
|
|
1086
|
+
Sent data contents.pdf (2.6ms)
|
|
1087
|
+
Completed 200 OK in 1021ms (Views: 1020.7ms | ActiveRecord: 0.0ms)
|
|
1088
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1089
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1090
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1091
|
+
Connecting to database specified by database.yml
|
|
1092
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
1093
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
|
1094
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1095
|
+
|
|
1096
|
+
|
|
1097
|
+
Started GET "/home" for 127.0.0.1 at 2012-08-04 20:07:27 +0200
|
|
1098
|
+
Processing by HomeController#index as HTML
|
|
1099
|
+
Rendered home/index.html.erb within layouts/application (1.7ms)
|
|
1100
|
+
Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
|
|
1101
|
+
|
|
1102
|
+
|
|
1103
|
+
Started GET "/home.pdf" for 127.0.0.1 at 2012-08-04 20:07:27 +0200
|
|
1104
|
+
Processing by HomeController#index as PDF
|
|
1105
|
+
Rendered home/index.pdf.erb (0.3ms)
|
|
1106
|
+
Rendered text template (0.0ms)
|
|
1107
|
+
Sent data contents.pdf (2.5ms)
|
|
1108
|
+
Completed 200 OK in 83ms (Views: 82.4ms | ActiveRecord: 0.0ms)
|
|
1109
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
1110
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
1111
|
+
[1m[35m (0.0ms)[0m rollback transaction
|