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.
@@ -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,3 +1,3 @@
1
1
  module DocmagoClient
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
@@ -1 +1,2 @@
1
- DocmagoClient.api_key "test"
1
+ DocmagoClient.base_uri "http://localhost:3000/api/"
2
+ DocmagoClient.api_key "Hq2zWQ8pfDjbRGZuvJhy"
@@ -569,3 +569,543 @@ Completed 200 OK in 1022ms (Views: 1022.1ms | ActiveRecord: 0.0ms)
569
569
   (0.1ms) rollback transaction
570
570
   (0.0ms) begin transaction
571
571
   (0.0ms) rollback transaction
572
+ Connecting to database specified by database.yml
573
+  (0.2ms) begin transaction
574
+  (0.0ms) rollback transaction
575
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
589
+  (0.0ms) begin transaction
590
+  (0.0ms) rollback transaction
591
+ Connecting to database specified by database.yml
592
+  (0.2ms) begin transaction
593
+  (0.0ms) rollback transaction
594
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
608
+  (0.0ms) begin transaction
609
+  (0.0ms) rollback transaction
610
+ Connecting to database specified by database.yml
611
+  (0.2ms) begin transaction
612
+  (0.0ms) rollback transaction
613
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
627
+  (0.0ms) begin transaction
628
+  (0.0ms) rollback transaction
629
+ Connecting to database specified by database.yml
630
+  (0.2ms) begin transaction
631
+  (0.0ms) rollback transaction
632
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
646
+  (0.0ms) begin transaction
647
+  (0.0ms) rollback transaction
648
+ Connecting to database specified by database.yml
649
+  (0.2ms) begin transaction
650
+  (0.0ms) rollback transaction
651
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
666
+  (0.1ms) begin transaction
667
+  (0.0ms) rollback transaction
668
+ Connecting to database specified by database.yml
669
+  (0.2ms) begin transaction
670
+  (0.0ms) rollback transaction
671
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
685
+  (0.0ms) begin transaction
686
+  (0.0ms) rollback transaction
687
+ Connecting to database specified by database.yml
688
+  (0.2ms) begin transaction
689
+  (0.0ms) rollback transaction
690
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
704
+  (0.0ms) begin transaction
705
+  (0.0ms) rollback transaction
706
+ Connecting to database specified by database.yml
707
+  (0.3ms) begin transaction
708
+  (0.0ms) rollback transaction
709
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
723
+  (0.0ms) begin transaction
724
+  (0.0ms) rollback transaction
725
+ Connecting to database specified by database.yml
726
+  (0.2ms) begin transaction
727
+  (0.0ms) rollback transaction
728
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
742
+  (0.0ms) begin transaction
743
+  (0.0ms) rollback transaction
744
+ Connecting to database specified by database.yml
745
+  (0.2ms) begin transaction
746
+  (0.0ms) rollback transaction
747
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
761
+  (0.0ms) begin transaction
762
+  (0.0ms) rollback transaction
763
+ Connecting to database specified by database.yml
764
+  (0.3ms) begin transaction
765
+  (0.0ms) rollback transaction
766
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
780
+  (0.0ms) begin transaction
781
+  (0.0ms) rollback transaction
782
+ Connecting to database specified by database.yml
783
+  (0.2ms) begin transaction
784
+  (0.0ms) rollback transaction
785
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
800
+  (0.0ms) begin transaction
801
+  (0.0ms) rollback transaction
802
+ Connecting to database specified by database.yml
803
+  (0.2ms) begin transaction
804
+  (0.0ms) rollback transaction
805
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
819
+  (0.0ms) begin transaction
820
+  (0.0ms) rollback transaction
821
+ Connecting to database specified by database.yml
822
+  (0.2ms) begin transaction
823
+  (0.0ms) rollback transaction
824
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
839
+  (0.1ms) begin transaction
840
+  (0.0ms) rollback transaction
841
+ Connecting to database specified by database.yml
842
+  (0.2ms) begin transaction
843
+  (0.0ms) rollback transaction
844
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
859
+  (0.0ms) begin transaction
860
+  (0.0ms) rollback transaction
861
+ Connecting to database specified by database.yml
862
+  (0.2ms) begin transaction
863
+  (0.0ms) rollback transaction
864
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
880
+  (0.0ms) begin transaction
881
+  (0.0ms) rollback transaction
882
+ Connecting to database specified by database.yml
883
+  (0.2ms) begin transaction
884
+  (0.0ms) rollback transaction
885
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
901
+  (0.0ms) begin transaction
902
+  (0.0ms) rollback transaction
903
+ Connecting to database specified by database.yml
904
+  (0.2ms) begin transaction
905
+  (0.0ms) rollback transaction
906
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
922
+  (0.0ms) begin transaction
923
+  (0.0ms) rollback transaction
924
+ Connecting to database specified by database.yml
925
+  (0.2ms) begin transaction
926
+  (0.0ms) rollback transaction
927
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
943
+  (0.0ms) begin transaction
944
+  (0.0ms) rollback transaction
945
+ Connecting to database specified by database.yml
946
+  (0.2ms) begin transaction
947
+  (0.0ms) rollback transaction
948
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
964
+  (0.0ms) begin transaction
965
+  (0.0ms) rollback transaction
966
+ Connecting to database specified by database.yml
967
+  (0.2ms) begin transaction
968
+  (0.0ms) rollback transaction
969
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
985
+  (0.0ms) begin transaction
986
+  (0.0ms) rollback transaction
987
+ Connecting to database specified by database.yml
988
+  (0.2ms) begin transaction
989
+  (0.0ms) rollback transaction
990
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1006
+  (0.0ms) begin transaction
1007
+  (0.0ms) rollback transaction
1008
+ Connecting to database specified by database.yml
1009
+  (0.2ms) begin transaction
1010
+  (0.0ms) rollback transaction
1011
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1026
+  (0.0ms) begin transaction
1027
+  (0.0ms) rollback transaction
1028
+ Connecting to database specified by database.yml
1029
+  (0.2ms) begin transaction
1030
+  (0.0ms) rollback transaction
1031
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1047
+  (0.0ms) begin transaction
1048
+  (0.0ms) rollback transaction
1049
+ Connecting to database specified by database.yml
1050
+  (0.2ms) begin transaction
1051
+  (0.0ms) rollback transaction
1052
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1068
+  (0.0ms) begin transaction
1069
+  (0.0ms) rollback transaction
1070
+ Connecting to database specified by database.yml
1071
+  (0.2ms) begin transaction
1072
+  (0.0ms) rollback transaction
1073
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1089
+  (0.0ms) begin transaction
1090
+  (0.0ms) rollback transaction
1091
+ Connecting to database specified by database.yml
1092
+  (0.2ms) begin transaction
1093
+  (0.0ms) rollback transaction
1094
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1110
+  (0.0ms) begin transaction
1111
+  (0.0ms) rollback transaction
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: docmago_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: