-
Notifications
You must be signed in to change notification settings - Fork 0
/
TerrminalOutput-HerokuErrors
2093 lines (2060 loc) · 109 KB
/
TerrminalOutput-HerokuErrors
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Last login: Mon Dec 18 13:25:29 on ttys002
You have mail.
GA General Assembly Web Development Immersive
------------------------------------------
git version 2.14.1
Homebrew 1.4.0 Homebrew/homebrew-core (git revision 2d612; last commit 2017-12-17)
ruby 2.4.1p111 (2017-03-22 revision 58053) [x86_64-darwin16]
node v8.5.0
psql (PostgreSQL) 9.6.5
------------------------------------------
type unwelcome to remove this message
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkApp on master
$ cd ../../../../../
andrealee ~/CODE
$ cd ../
andrealee ~
$ ll
total 7.8M
drwxr-xr-x+ 77 andrealee 501 2.6K Dec 12 22:14 ./
drwxr-xr-x 6 root admin 204 Sep 20 17:44 ../
drwx------ 35 andrealee 501 1.2K Dec 19 15:03 .Trash/
drwxr-x--x 3 andrealee 501 102 Jul 9 2008 .adobe/
drwxr-xr-x 14 andrealee 501 476 Oct 21 13:55 .atom/
drwx------ 257 andrealee 501 8.6K Dec 19 23:52 .bash_sessions/
drwxr-xr-x 3 andrealee 501 102 Nov 30 11:54 .bundle/
drwxr-xr-x 34 andrealee 501 1.2K Jan 27 2011 .calibre-fontconfig/
drwxr-xr-x 5 andrealee 501 170 Oct 23 14:17 .config/
drwx------ 3 andrealee 501 102 Jul 22 2008 .cups/
drwxr-xr-x 107 andrealee 501 3.6K Jun 22 2009 .dvdcss/
drwxr-xr-x 34 andrealee 501 1.2K Jan 27 2011 .fontconfig/
drwxr-xr-x 14 andrealee 501 476 Jan 27 2011 .fonts/
drwxr-xr-x 3 andrealee 501 102 Sep 25 13:57 .gem/
drwxr-xr-x 3 andrealee 501 102 Oct 23 14:17 .local/
drwxrwxrwx 3 andrealee 501 102 Sep 14 2007 .mplayer/
drwxr-xr-x 3 andrealee 501 102 Oct 24 14:04 .node-gyp/
drwxr-xr-x 7 andrealee 501 238 Nov 30 15:48 .npm/
drwxr-xr-x 24 andrealee 501 816 Sep 25 14:05 .nvm/
drwxr-xr-x 6 andrealee 501 204 Nov 20 10:31 .pgadmin/
drwxr-xr-x 21 andrealee 501 714 Sep 25 13:57 .rbenv/
drwx------ 4 andrealee 501 136 Sep 25 13:51 .ssh/
drwxr-xr-x 6 andrealee 501 204 Sep 25 13:53 .subversion/
drwxr-xr-x 5 andrealee 501 170 Sep 25 14:09 .wdi/
drwx------ 3 andrealee 501 102 Oct 3 18:38 Applications/
drwxr-xr-x 4 andrealee 501 136 Sep 27 19:52 CODE/
drwxr-xr-x 18 andrealee 501 612 Jan 28 2011 'Calibre Library'/
drwx------+ 27 andrealee 501 918 Dec 18 00:04 Desktop/
drwx------+ 35 andrealee 501 1.2K Oct 5 00:05 Documents/
drwx------+ 368 andrealee 501 13K Dec 19 23:49 Downloads/
drwx------+ 71 andrealee 501 2.4K Dec 6 00:12 Library/
drwx------+ 7 andrealee 501 238 May 11 2008 Movies/
drwx------+ 8 andrealee 501 272 Jul 16 2013 Music/
drwx------+ 10 andrealee 501 340 Sep 27 2015 Pictures/
drwxr-xr-x+ 5 andrealee 501 170 Jun 5 2013 Public/
drwxr-xr-x+ 6 andrealee 501 204 Mar 18 2005 Sites/
drwxrwxrwx 79 andrealee 501 2.7K Feb 14 2009 'dahlia etc'/
drwxr-xr-x 3 andrealee 501 102 Sep 7 17:44 funn_things/
drwxr-xr-x 8 andrealee 501 272 Dec 20 2007 iPodderData/
-r-------- 1 andrealee 501 7 Aug 17 11:09 .CFUserTextEncoding
-rw-r--r-- 1 andrealee 501 33K Dec 19 23:38 .DS_Store
-rw------- 1 andrealee 501 89K Dec 18 13:10 .bash_history
-rw-r--r-- 1 andrealee 501 9.1K Oct 4 11:25 .bash_profile
-rw-r--r-- 1 andrealee 501 4.2K Sep 25 14:09 .bash_prompt.sh
-rw-r--r-- 1 andrealee 501 2.3K Sep 25 14:09 .bash_wdi_command.sh
-rwxr-xr-x 1 andrealee 501 39 Sep 25 14:09 .bashrc*
-rw-r--r-- 1 andrealee 501 602 Sep 25 14:09 .editorconfig
-rw-r--r-- 1 andrealee 501 210 Sep 25 14:09 .gemrc
-rw-r--r-- 1 andrealee 501 70K Sep 25 13:52 .git-completion.bash
-rw-r--r-- 1 andrealee 501 749 Sep 25 13:52 .gitconfig
-rw-r--r-- 1 andrealee 501 1.3K Sep 25 14:09 .gitignore_global
-rw-r--r-- 1 andrealee 501 333 Sep 25 14:09 .gitmessage.txt
-rw-r--r-- 1 andrealee 501 0 Sep 25 15:58 .hidden
-rw-r--r-- 1 andrealee 501 593 Sep 25 14:09 .inputrc
-rw-r--r-- 1 andrealee 501 354 Sep 25 14:09 .irbrc
-rw------- 1 andrealee 501 44 Sep 20 23:36 .lesshst
-rw------- 1 andrealee 501 203 Oct 23 14:17 .netrc
-rw------- 1 andrealee 501 19K Dec 10 22:19 .node_repl_history
-rw-r--r-- 1 andrealee 501 7 Sep 25 14:09 .nvmrc
-rw------- 1 andrealee 501 700 Dec 1 10:20 .pry_history
-rw-r--r-- 1 andrealee 501 353 Sep 25 14:09 .pryrc
-rw------- 1 andrealee 501 17K Dec 12 22:14 .psql_history
-rw------- 1 andrealee 501 0 Nov 28 15:52 .psql_history-99289.tmp
-rw-r--r-- 1 andrealee 501 981 Sep 25 14:09 .welcome_prompt.sh
-rw-r--r-- 1 andrealee 501 116 Dec 11 13:20 .yarnrc
-rw-r--r-- 1 andrealee 501 0 Jul 24 2013 071913-TODO.txt
-rw-r--r-- 1 andrealee 501 240 Dec 23 2010 12-20-2010.txt
-rw-r--r-- 1 andrealee 501 20 Sep 25 13:51 2
-rw-r--r-- 1 andrealee 501 2.3M Sep 16 2013 'Downloads-1.(null)'
-rw-r--r-- 1 andrealee 501 2.9M Sep 16 2013 'Downloads-2.(null)'
-rw-r--r-- 1 andrealee 501 1.6M Jul 24 2013 'How to Exploit the Stickies App in OS X - The Mac Observer.pdf'
-rw-r--r-- 1 andrealee 501 4 Jul 24 2013 RANDOMSTUFF.txt
lrwxr-xr-x 1 andrealee 501 59 Mar 17 2005 'Send Registration' -> '/Users/andrealee/Library/Assistants/Send Registration.setup'
-rw-r--r-- 1 andrealee 501 727K Aug 25 2013 Untitled-1.pdf
-rw-r--r-- 1 andrealee 501 8 May 11 2008 loc.txt
-rw-r--r-- 1 andrealee 501 460 Jun 18 2013 oldToDo-122310.txt
-rw-r--r-- 1 andrealee 501 34 May 11 2008 tmp1.txt
andrealee ~
$ cd ..
andrealee /Users
$ ll
total 0
drwxr-xr-x 6 root admin 204 Sep 20 17:44 ./
drwxr-xr-x 44 root wheel 1.6K Nov 26 04:05 ../
drwxr-xr-x+ 12 Guest _guest 408 Sep 20 17:44 Guest/
drwxrwxrwt 9 root wheel 306 Aug 17 10:58 Shared/
drwxr-xr-x+ 77 andrealee 501 2.6K Dec 12 22:14 andrealee/
-rw-r--r-- 1 root wheel 0 Jul 30 2016 .localized
andrealee /Users
$ cd andrealee/
andrealee ~
$ cd Downloads/
andrealee ~/Downloads
$ tar -xzf elasticsearch-6.1.1.tar.gz
andrealee ~/Downloads
$ cd elasticsearch-6.1.1/
andrealee ~/Downloads/elasticsearch-6.1.1
$ ll
total 212K
drwxr-xr-x 10 andrealee 501 340 Dec 17 15:24 ./
drwx------+ 369 andrealee 501 13K Dec 19 23:52 ../
drwxr-xr-x 15 andrealee 501 510 Dec 17 15:24 bin/
drwxr-xr-x 5 andrealee 501 170 Dec 17 15:24 config/
drwxr-xr-x 38 andrealee 501 1.3K Dec 17 15:24 lib/
drwxr-xr-x 15 andrealee 501 510 Dec 17 15:24 modules/
drwxr-xr-x 2 andrealee 501 68 Dec 17 15:24 plugins/
-rw-r--r-- 1 andrealee 501 12K Dec 17 15:22 LICENSE.txt
-rw-r--r-- 1 andrealee 501 188K Dec 17 15:24 NOTICE.txt
-rw-r--r-- 1 andrealee 501 9.2K Dec 17 15:22 README.textile
andrealee ~/Downloads/elasticsearch-6.1.1
$ cd ../../../
andrealee /Users
$ ll
total 0
drwxr-xr-x 6 root admin 204 Sep 20 17:44 ./
drwxr-xr-x 44 root wheel 1.6K Nov 26 04:05 ../
drwxr-xr-x+ 12 Guest _guest 408 Sep 20 17:44 Guest/
drwxrwxrwt 9 root wheel 306 Aug 17 10:58 Shared/
drwxr-xr-x+ 78 andrealee 501 2.6K Dec 20 00:06 andrealee/
-rw-r--r-- 1 root wheel 0 Jul 30 2016 .localized
andrealee /Users
$ cd andrealee/
andrealee ~
$ cd CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy/
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy on master[?]
$ heroku create
Creating app... done, ⬢ shielded-reaches-35099
https://shielded-reaches-35099.herokuapp.com/ | https://git.heroku.com/shielded-reaches-35099.git
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy on master[?]
$ git push heroku master
error: src refspec master does not match any.
error: failed to push some refs to 'https://git.heroku.com/shielded-reaches-35099.git'
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy on master[?]
$ git remote origin -v
error: Unknown subcommand: origin
usage: git remote [-v | --verbose]
or: git remote add [-t <branch>] [-m <master>] [-f] [--tags | --no-tags] [--mirror=<fetch|push>] <name> <url>
or: git remote rename <old> <new>
or: git remote remove <name>
or: git remote set-head <name> (-a | --auto | -d | --delete | <branch>)
or: git remote [-v | --verbose] show [-n] <name>
or: git remote prune [-n | --dry-run] <name>
or: git remote [-v | --verbose] update [-p | --prune] [(<group> | <remote>)...]
or: git remote set-branches [--add] <name> <branch>...
or: git remote get-url [--push] [--all] <name>
or: git remote set-url [--push] <name> <newurl> [<oldurl>]
or: git remote set-url --add <name> <newurl>
or: git remote set-url --delete <name> <url>
-v, --verbose be verbose; must be placed before a subcommand
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy on master[?]
$ ll
total 0
drwxr-xr-x 4 andrealee 501 136 Dec 20 01:25 ./
drwxr-xr-x 5 andrealee 501 170 Dec 20 01:16 ../
drwxr-xr-x 10 andrealee 501 340 Dec 20 01:46 .git/
drwxr-xr-x 21 andrealee 501 714 Dec 20 01:25 InkApp/
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy on master[?]
$ git remote add origin https://github.com/alee092017/InkAppDeploy.git
fatal: remote origin already exists.
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy on master[?]
$ git remote -v
heroku https://git.heroku.com/shielded-reaches-35099.git (fetch)
heroku https://git.heroku.com/shielded-reaches-35099.git (push)
origin https://github.com/alee092017/InkAppDeploy.git (fetch)
origin https://github.com/alee092017/InkAppDeploy.git (push)
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy on master[?]
$ git push origin master
error: src refspec master does not match any.
error: failed to push some refs to 'https://github.com/alee092017/InkAppDeploy.git'
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy on master[?]
$ git push heroku master
error: src refspec master does not match any.
error: failed to push some refs to 'https://git.heroku.com/shielded-reaches-35099.git'
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy on master[?]
$ cd ../../
andrealee ~/CODE/wdi/UNIT_04/Project
$ cd InkApp329/
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329
$ cd ../InkApp329/
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329
$ cd InkAppDeploy/InkApp/
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy/InkApp on master[!]
$ ll
total 40K
drwxr-xr-x 21 andrealee 501 714 Dec 20 01:25 ./
drwxr-xr-x 4 andrealee 501 136 Dec 20 01:25 ../
drwxr-xr-x 14 andrealee 501 476 Dec 20 01:25 .git/
drwxr-xr-x 11 andrealee 501 374 Dec 20 01:25 app/
drwxr-xr-x 9 andrealee 501 306 Dec 20 01:25 bin/
drwxr-xr-x 14 andrealee 501 476 Dec 20 01:25 config/
drwxr-xr-x 6 andrealee 501 204 Dec 20 01:25 db/
drwxr-xr-x 4 andrealee 501 136 Dec 20 01:25 lib/
drwxr-xr-x 4 andrealee 501 136 Dec 20 01:25 log/
drwxr-xr-x 10 andrealee 501 340 Dec 20 01:25 public/
drwxr-xr-x 11 andrealee 501 374 Dec 20 01:25 test/
drwxr-xr-x 7 andrealee 501 238 Dec 20 01:25 tmp/
drwxr-xr-x 3 andrealee 501 102 Dec 20 01:25 vendor/
-rw-r--r-- 1 andrealee 501 6.1K Dec 20 01:25 .DS_Store
-rw-r--r-- 1 andrealee 501 536 Dec 20 01:25 .gitignore
-rw-r--r-- 1 andrealee 501 2.4K Dec 20 01:25 Gemfile
-rw-r--r-- 1 andrealee 501 6.1K Dec 20 01:25 Gemfile.lock
-rw-r--r-- 1 andrealee 501 374 Dec 20 01:25 README.md
-rw-r--r-- 1 andrealee 501 227 Dec 20 01:25 Rakefile
-rw-r--r-- 1 andrealee 501 130 Dec 20 01:25 config.ru
-rw-r--r-- 1 andrealee 501 64 Dec 20 01:25 package.json
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy/InkApp on master[!]
$ git push heroku master
fatal: 'heroku' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy/InkApp on master[!]
$ heroku login
Enter your Heroku credentials:
Email: [email protected]
Password: *********
Logged in as [email protected]
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy/InkApp on master[!]
$ git push origin master
Everything up-to-date
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy/InkApp on master[!]
$ git push heroku master
fatal: 'heroku' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy/InkApp on master[!]
$ git push heroku master
fatal: 'heroku' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy/InkApp on master[!]
$ heroku create
Creating app... done, ⬢ radiant-brook-89291
https://radiant-brook-89291.herokuapp.com/ | https://git.heroku.com/radiant-brook-89291.git
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy/InkApp on master[!]
$ git push heroku master
Counting objects: 450, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (425/425), done.
Writing objects: 100% (450/450), 626.34 KiB | 8.24 MiB/s, done.
Total 450 (delta 210), reused 0 (delta 0)
remote: Compressing source files... done.
remote: Building source:
remote:
remote: ! Warning: Multiple default buildpacks reported the ability to handle this app. The first buildpack in the list below will be used.
remote: Detected buildpacks: Ruby,Node.js
remote: See https://devcenter.heroku.com/articles/buildpacks#buildpack-detect-order
remote: -----> Ruby app detected
remote: -----> Compiling Ruby/Rails
remote: -----> Using Ruby version: ruby-2.3.4
remote: -----> Installing dependencies using bundler 1.15.2
remote: Running: bundle install --without development:test --path vendor/bundle --binstubs vendor/bundle/bin -j4 --deployment
remote: Warning: the running version of Bundler (1.15.2) is older than the version that created the lockfile (1.16.0). We suggest you upgrade to the latest version of Bundler by running `gem install bundler`.
remote: Fetching gem metadata from https://rubygems.org/........
remote: Fetching version metadata from https://rubygems.org/..
remote: Fetching dependency metadata from https://rubygems.org/.
remote: Fetching rake 12.3.0
remote: Fetching concurrent-ruby 1.0.5
remote: Fetching minitest 5.10.3
remote: Installing rake 12.3.0
remote: Installing minitest 5.10.3
remote: Installing concurrent-ruby 1.0.5
remote: Fetching thread_safe 0.3.6
remote: Fetching builder 3.2.3
remote: Installing thread_safe 0.3.6
remote: Installing builder 3.2.3
remote: Fetching erubi 1.7.0
remote: Fetching mini_portile2 2.3.0
remote: Installing erubi 1.7.0
remote: Installing mini_portile2 2.3.0
remote: Fetching crass 1.0.3
remote: Fetching rack 2.0.3
remote: Installing crass 1.0.3
remote: Fetching nio4r 2.1.0
remote: Installing nio4r 2.1.0 with native extensions
remote: Installing rack 2.0.3
remote: Fetching websocket-extensions 0.1.3
remote: Installing websocket-extensions 0.1.3
remote: Fetching mini_mime 1.0.0
remote: Installing mini_mime 1.0.0
remote: Fetching arel 8.0.0
remote: Installing arel 8.0.0
remote: Fetching execjs 2.7.0
remote: Installing execjs 2.7.0
remote: Fetching bcrypt 3.1.11
remote: Fetching rb-fsevent 0.10.2
remote: Installing bcrypt 3.1.11 with native extensions
remote: Installing rb-fsevent 0.10.2
remote: Fetching ffi 1.9.18
remote: Installing ffi 1.9.18 with native extensions
remote: Using bundler 1.15.2
remote: Fetching climate_control 0.2.0
remote: Installing climate_control 0.2.0
remote: Fetching coffee-script-source 1.12.2
remote: Installing coffee-script-source 1.12.2
remote: Fetching method_source 0.9.0
remote: Installing method_source 0.9.0
remote: Fetching thor 0.20.0
remote: Installing thor 0.20.0
remote: Fetching orm_adapter 0.5.0
remote: Installing orm_adapter 0.5.0
remote: Fetching multi_json 1.12.2
remote: Installing multi_json 1.12.2
remote: Fetching multipart-post 2.0.0
remote: Installing multipart-post 2.0.0
remote: Fetching hashie 3.5.6
remote: Installing hashie 3.5.6
remote: Fetching mime-types-data 3.2016.0521
remote: Installing mime-types-data 3.2016.0521
remote: Fetching mimemagic 0.3.2
remote: Installing mimemagic 0.3.2
remote: Fetching puma 3.11.0
remote: Installing puma 3.11.0 with native extensions
remote: Fetching tilt 2.0.8
remote: Installing tilt 2.0.8
remote: Fetching sqlite3 1.3.13
remote: Installing sqlite3 1.3.13 with native extensions
remote: Fetching turbolinks-source 5.0.3
remote: Installing turbolinks-source 5.0.3
remote: Fetching i18n 0.9.1
remote: Installing i18n 0.9.1
remote: Fetching tzinfo 1.2.4
remote: Installing tzinfo 1.2.4
remote: Fetching nokogiri 1.8.1
remote: Installing nokogiri 1.8.1 with native extensions
remote: Fetching websocket-driver 0.6.5
remote: Installing websocket-driver 0.6.5 with native extensions
remote: Fetching mail 2.7.0
remote: Installing mail 2.7.0
remote: Fetching rack-test 0.8.2
remote: Installing rack-test 0.8.2
remote: Fetching warden 1.2.7
remote: Installing warden 1.2.7
remote: Fetching sprockets 3.7.1
remote: Installing sprockets 3.7.1
remote: Fetching autoprefixer-rails 7.2.3
remote: Installing autoprefixer-rails 7.2.3
remote: Fetching uglifier 4.0.2
remote: Installing uglifier 4.0.2
remote: Fetching cocaine 0.5.8
remote: Installing cocaine 0.5.8
remote: Fetching coffee-script 2.4.1
remote: Installing coffee-script 2.4.1
remote: Fetching elasticsearch-api 6.0.0
remote: Installing elasticsearch-api 6.0.0
remote: Fetching faraday 0.13.1
remote: Installing faraday 0.13.1
remote: Fetching mime-types 3.1
remote: Installing mime-types 3.1
remote: Fetching rb-inotify 0.9.10
remote: Installing rb-inotify 0.9.10
remote: Fetching turbolinks 5.0.1
remote: Installing turbolinks 5.0.1
remote: Fetching activesupport 5.1.4
remote: Installing activesupport 5.1.4
remote: The latest bundler is 1.16.0, but you are currently running 1.15.2.
remote: To update, run `gem install bundler`
remote: Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
remote: current directory:
remote: /tmp/build_c884d783db9d04233edd32d3f6dfda2a/vendor/bundle/ruby/2.3.0/gems/sqlite3-1.3.13/ext/sqlite
remote: /tmp/build_c884d783db9d04233edd32d3f6dfda2a/vendor/ruby-2.3.4/bin/ruby -r
remote: ./siteconf20171220-224-8vja9f.rb extconf.rb
remote: checking for sqlite3.h... no
remote: sqlite3.h is missing. Try 'brew install sqlite3',
remote: 'yum install sqlite-devel' or 'apt-get install libsqlite3-dev'
remote: and check your shared library search path (the
remote: location where your sqlite3 shared library is located).
remote: *** extconf.rb failed ***
remote: Could not create Makefile due to some reason, probably lack of necessary
remote: libraries and/or headers. Check the mkmf.log file for more details. You may
remote: need configuration options.
remote: Provided configuration options:
remote: --with-opt-dir
remote: --without-opt-dir
remote: --with-opt-include
remote: --without-opt-include=${opt-dir}/include
remote: --with-opt-lib
remote: --without-opt-lib=${opt-dir}/lib
remote: --with-make-prog
remote: --without-make-prog
remote: --srcdir=.
remote: --curdir
remote: --ruby=/tmp/build_c884d783db9d04233edd32d3f6dfda2a/vendor/ruby-2.3.4/bin/$(RUBY_BASE_NAME)
remote: --with-sqlite3-config
remote: --without-sqlite3-config
remote: --with-pkg-config
remote: --without-pkg-config
remote: --with-sqlite3-dir
remote: --without-sqlite3-dir
remote: --with-sqlite3-include
remote: --without-sqlite3-include=${sqlite3-dir}/include
remote: --with-sqlite3-lib
remote: --without-sqlite3-lib=${sqlite3-dir}/lib
remote: To see why this extension failed to compile, please check the mkmf.log which can
remote: be found here:
remote: /tmp/build_c884d783db9d04233edd32d3f6dfda2a/vendor/bundle/ruby/2.3.0/extensions/x86_64-linux/2.3.0/sqlite3-1.3.13/mkmf.log
remote: extconf failed, exit code 1
remote: Gem files will remain installed in
remote: /tmp/build_c884d783db9d04233edd32d3f6dfda2a/vendor/bundle/ruby/2.3.0/gems/sqlite3-1.3.13
remote: for inspection.
remote: Results logged to
remote: /tmp/build_c884d783db9d04233edd32d3f6dfda2a/vendor/bundle/ruby/2.3.0/extensions/x86_64-linux/2.3.0/sqlite3-1.3.13/gem_make.out
remote: An error occurred while installing sqlite3 (1.3.13), and Bundler cannot
remote: continue.
remote: Make sure that `gem install sqlite3 -v '1.3.13'` succeeds before bundling.
remote: In Gemfile:
remote: sqlite3
remote: Bundler Output: Warning: the running version of Bundler (1.15.2) is older than the version that created the lockfile (1.16.0). We suggest you upgrade to the latest version of Bundler by running `gem install bundler`.
remote: Fetching gem metadata from https://rubygems.org/........
remote: Fetching version metadata from https://rubygems.org/..
remote: Fetching dependency metadata from https://rubygems.org/.
remote: Fetching rake 12.3.0
remote: Fetching concurrent-ruby 1.0.5
remote: Fetching minitest 5.10.3
remote: Installing rake 12.3.0
remote: Installing minitest 5.10.3
remote: Installing concurrent-ruby 1.0.5
remote: Fetching thread_safe 0.3.6
remote: Fetching builder 3.2.3
remote: Installing thread_safe 0.3.6
remote: Installing builder 3.2.3
remote: Fetching erubi 1.7.0
remote: Fetching mini_portile2 2.3.0
remote: Installing erubi 1.7.0
remote: Installing mini_portile2 2.3.0
remote: Fetching crass 1.0.3
remote: Fetching rack 2.0.3
remote: Installing crass 1.0.3
remote: Fetching nio4r 2.1.0
remote: Installing nio4r 2.1.0 with native extensions
remote: Installing rack 2.0.3
remote: Fetching websocket-extensions 0.1.3
remote: Installing websocket-extensions 0.1.3
remote: Fetching mini_mime 1.0.0
remote: Installing mini_mime 1.0.0
remote: Fetching arel 8.0.0
remote: Installing arel 8.0.0
remote: Fetching execjs 2.7.0
remote: Installing execjs 2.7.0
remote: Fetching bcrypt 3.1.11
remote: Fetching rb-fsevent 0.10.2
remote: Installing bcrypt 3.1.11 with native extensions
remote: Installing rb-fsevent 0.10.2
remote: Fetching ffi 1.9.18
remote: Installing ffi 1.9.18 with native extensions
remote: Using bundler 1.15.2
remote: Fetching climate_control 0.2.0
remote: Installing climate_control 0.2.0
remote: Fetching coffee-script-source 1.12.2
remote: Installing coffee-script-source 1.12.2
remote: Fetching method_source 0.9.0
remote: Installing method_source 0.9.0
remote: Fetching thor 0.20.0
remote: Installing thor 0.20.0
remote: Fetching orm_adapter 0.5.0
remote: Installing orm_adapter 0.5.0
remote: Fetching multi_json 1.12.2
remote: Installing multi_json 1.12.2
remote: Fetching multipart-post 2.0.0
remote: Installing multipart-post 2.0.0
remote: Fetching hashie 3.5.6
remote: Installing hashie 3.5.6
remote: Fetching mime-types-data 3.2016.0521
remote: Installing mime-types-data 3.2016.0521
remote: Fetching mimemagic 0.3.2
remote: Installing mimemagic 0.3.2
remote: Fetching puma 3.11.0
remote: Installing puma 3.11.0 with native extensions
remote: Fetching tilt 2.0.8
remote: Installing tilt 2.0.8
remote: Fetching sqlite3 1.3.13
remote: Installing sqlite3 1.3.13 with native extensions
remote: Fetching turbolinks-source 5.0.3
remote: Installing turbolinks-source 5.0.3
remote: Fetching i18n 0.9.1
remote: Installing i18n 0.9.1
remote: Fetching tzinfo 1.2.4
remote: Installing tzinfo 1.2.4
remote: Fetching nokogiri 1.8.1
remote: Installing nokogiri 1.8.1 with native extensions
remote: Fetching websocket-driver 0.6.5
remote: Installing websocket-driver 0.6.5 with native extensions
remote: Fetching mail 2.7.0
remote: Installing mail 2.7.0
remote: Fetching rack-test 0.8.2
remote: Installing rack-test 0.8.2
remote: Fetching warden 1.2.7
remote: Installing warden 1.2.7
remote: Fetching sprockets 3.7.1
remote: Installing sprockets 3.7.1
remote: Fetching autoprefixer-rails 7.2.3
remote: Installing autoprefixer-rails 7.2.3
remote: Fetching uglifier 4.0.2
remote: Installing uglifier 4.0.2
remote: Fetching cocaine 0.5.8
remote: Installing cocaine 0.5.8
remote: Fetching coffee-script 2.4.1
remote: Installing coffee-script 2.4.1
remote: Fetching elasticsearch-api 6.0.0
remote: Installing elasticsearch-api 6.0.0
remote: Fetching faraday 0.13.1
remote: Installing faraday 0.13.1
remote: Fetching mime-types 3.1
remote: Installing mime-types 3.1
remote: Fetching rb-inotify 0.9.10
remote: Installing rb-inotify 0.9.10
remote: Fetching turbolinks 5.0.1
remote: Installing turbolinks 5.0.1
remote: Fetching activesupport 5.1.4
remote: Installing activesupport 5.1.4
remote: The latest bundler is 1.16.0, but you are currently running 1.15.2.
remote: To update, run `gem install bundler`
remote: Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
remote:
remote: current directory:
remote: /tmp/build_c884d783db9d04233edd32d3f6dfda2a/vendor/bundle/ruby/2.3.0/gems/sqlite3-1.3.13/ext/sqlite
remote: /tmp/build_c884d783db9d04233edd32d3f6dfda2a/vendor/ruby-2.3.4/bin/ruby -r
remote: ./siteconf20171220-224-8vja9f.rb extconf.rb
remote: checking for sqlite3.h... no
remote: sqlite3.h is missing. Try 'brew install sqlite3',
remote: 'yum install sqlite-devel' or 'apt-get install libsqlite3-dev'
remote: and check your shared library search path (the
remote: location where your sqlite3 shared library is located).
remote: *** extconf.rb failed ***
remote: Could not create Makefile due to some reason, probably lack of necessary
remote: libraries and/or headers. Check the mkmf.log file for more details. You may
remote: need configuration options.
remote:
remote: Provided configuration options:
remote: --with-opt-dir
remote: --without-opt-dir
remote: --with-opt-include
remote: --without-opt-include=${opt-dir}/include
remote: --with-opt-lib
remote: --without-opt-lib=${opt-dir}/lib
remote: --with-make-prog
remote: --without-make-prog
remote: --srcdir=.
remote: --curdir
remote: --ruby=/tmp/build_c884d783db9d04233edd32d3f6dfda2a/vendor/ruby-2.3.4/bin/$(RUBY_BASE_NAME)
remote: --with-sqlite3-config
remote: --without-sqlite3-config
remote: --with-pkg-config
remote: --without-pkg-config
remote: --with-sqlite3-dir
remote: --without-sqlite3-dir
remote: --with-sqlite3-include
remote: --without-sqlite3-include=${sqlite3-dir}/include
remote: --with-sqlite3-lib
remote: --without-sqlite3-lib=${sqlite3-dir}/lib
remote:
remote: To see why this extension failed to compile, please check the mkmf.log which can
remote: be found here:
remote:
remote: /tmp/build_c884d783db9d04233edd32d3f6dfda2a/vendor/bundle/ruby/2.3.0/extensions/x86_64-linux/2.3.0/sqlite3-1.3.13/mkmf.log
remote:
remote: extconf failed, exit code 1
remote:
remote: Gem files will remain installed in
remote: /tmp/build_c884d783db9d04233edd32d3f6dfda2a/vendor/bundle/ruby/2.3.0/gems/sqlite3-1.3.13
remote: for inspection.
remote: Results logged to
remote: /tmp/build_c884d783db9d04233edd32d3f6dfda2a/vendor/bundle/ruby/2.3.0/extensions/x86_64-linux/2.3.0/sqlite3-1.3.13/gem_make.out
remote:
remote: An error occurred while installing sqlite3 (1.3.13), and Bundler cannot
remote: continue.
remote: Make sure that `gem install sqlite3 -v '1.3.13'` succeeds before bundling.
remote:
remote: In Gemfile:
remote: sqlite3
remote: !
remote: ! Failed to install gems via Bundler.
remote: ! Detected sqlite3 gem which is not supported on Heroku:
remote: ! https://devcenter.heroku.com/articles/sqlite3
remote: !
remote: ! Push rejected, failed to compile Ruby app.
remote:
remote: ! Push failed
remote: Verifying deploy....
remote:
remote: ! Push rejected to radiant-brook-89291.
remote:
To https://git.heroku.com/radiant-brook-89291.git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://git.heroku.com/radiant-brook-89291.git'
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy/InkApp on master[!]
$ brew install squlite3
Updating Homebrew...
==> Auto-updated Homebrew!
Updated 2 taps (caskroom/cask, caskroom/versions).
No changes to formulae.
Error: No available formula with the name "squlite3"
==> Searching for a previously deleted formula...
Warning: homebrew/core is shallow clone. To get complete history run:
git -C "$(brew --repo homebrew/core)" fetch --unshallow
Error: No previously deleted formula found.
==> Searching for similarly named formulae...
==> Searching local taps...
Error: No similarly named formulae found.
==> Searching taps...
==> Searching taps on GitHub...
Error: No formulae found in taps.
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy/InkApp on master[!]
$ sqlite -v
-bash: sqlite: command not found
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy/InkApp on master[!]
$ sqlite3 -v
sqlite3: Error: unknown option: -v
Use -help for a list of options.
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy/InkApp on master[!]
$ rails -v
Rails 5.1.4
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy/InkApp on master[!]
$ ruby -v
ruby 2.4.1p111 (2017-03-22 revision 58053) [x86_64-darwin16]
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy/InkApp on master[!]
$ bundle install
Using rake 12.3.0
Using concurrent-ruby 1.0.5
Using i18n 0.9.1
Using minitest 5.10.3
Using thread_safe 0.3.6
Using tzinfo 1.2.4
Using activesupport 5.1.4
Using builder 3.2.3
Using erubi 1.7.0
Using mini_portile2 2.3.0
Using nokogiri 1.8.1
Using rails-dom-testing 2.0.3
Using crass 1.0.3
Using loofah 2.1.1
Using rails-html-sanitizer 1.0.3
Using actionview 5.1.4
Using rack 2.0.3
Using rack-test 0.8.2
Using actionpack 5.1.4
Using nio4r 2.1.0
Using websocket-extensions 0.1.3
Using websocket-driver 0.6.5
Using actioncable 5.1.4
Using globalid 0.4.1
Using activejob 5.1.4
Using mini_mime 1.0.0
Using mail 2.7.0
Using actionmailer 5.1.4
Using activemodel 5.1.4
Using arel 8.0.0
Using activerecord 5.1.4
Using public_suffix 3.0.1
Using addressable 2.5.2
Using execjs 2.7.0
Using autoprefixer-rails 7.2.3
Using bcrypt 3.1.11
Using bindex 0.5.0
Using rb-fsevent 0.10.2
Using ffi 1.9.18
Using rb-inotify 0.9.10
Using sass-listen 4.0.0
Using sass 3.5.4
Using bootstrap-sass 3.3.7
Using bundler 1.16.0
Using byebug 9.1.0
Using xpath 2.1.0
Using capybara 2.16.1
Using childprocess 0.8.0
Using climate_control 0.2.0
Using cocaine 0.5.8
Using coffee-script-source 1.12.2
Using coffee-script 2.4.1
Using method_source 0.9.0
Using thor 0.20.0
Using railties 5.1.4
Using coffee-rails 4.2.2
Using orm_adapter 0.5.0
Using responders 2.4.0
Using warden 1.2.7
Using devise 4.3.0
Using multi_json 1.12.2
Using elasticsearch-api 6.0.0
Using multipart-post 2.0.0
Using faraday 0.13.1
Using elasticsearch-transport 6.0.0
Using elasticsearch 6.0.0
Using hashie 3.5.6
Using jbuilder 2.7.0
Using jquery-rails 4.3.1
Using ruby_dep 1.5.0
Using listen 3.1.5
Using mime-types-data 3.2016.0521
Using mime-types 3.1
Using mimemagic 0.3.2
Using paperclip 5.1.0
Using puma 3.11.0
Using sprockets 3.7.1
Using sprockets-rails 3.2.1
Using rails 5.1.4
Using rubyzip 1.2.1
Using tilt 2.0.8
Using sass-rails 5.0.7
Using searchkick 2.4.0
Using selenium-webdriver 3.8.0
Using spring 2.0.2
Using spring-watcher-listen 2.0.1
Using sqlite3 1.3.13
Using turbolinks-source 5.0.3
Using turbolinks 5.0.1
Using uglifier 4.0.2
Using web-console 3.5.1
Bundle complete! 21 Gemfile dependencies, 91 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy/InkApp on master[!]
$ bundle install
Using rake 12.3.0
Using concurrent-ruby 1.0.5
Using i18n 0.9.1
Using minitest 5.10.3
Using thread_safe 0.3.6
Using tzinfo 1.2.4
Using activesupport 5.1.4
Using builder 3.2.3
Using erubi 1.7.0
Using mini_portile2 2.3.0
Using nokogiri 1.8.1
Using rails-dom-testing 2.0.3
Using crass 1.0.3
Using loofah 2.1.1
Using rails-html-sanitizer 1.0.3
Using actionview 5.1.4
Using rack 2.0.3
Using rack-test 0.8.2
Using actionpack 5.1.4
Using nio4r 2.1.0
Using websocket-extensions 0.1.3
Using websocket-driver 0.6.5
Using actioncable 5.1.4
Using globalid 0.4.1
Using activejob 5.1.4
Using mini_mime 1.0.0
Using mail 2.7.0
Using actionmailer 5.1.4
Using activemodel 5.1.4
Using arel 8.0.0
Using activerecord 5.1.4
Using public_suffix 3.0.1
Using addressable 2.5.2
Using execjs 2.7.0
Using autoprefixer-rails 7.2.3
Using bcrypt 3.1.11
Using bindex 0.5.0
Using rb-fsevent 0.10.2
Using ffi 1.9.18
Using rb-inotify 0.9.10
Using sass-listen 4.0.0
Using sass 3.5.4
Using bootstrap-sass 3.3.7
Using bundler 1.16.0
Using byebug 9.1.0
Using xpath 2.1.0
Using capybara 2.16.1
Using childprocess 0.8.0
Using climate_control 0.2.0
Using cocaine 0.5.8
Using coffee-script-source 1.12.2
Using coffee-script 2.4.1
Using method_source 0.9.0
Using thor 0.20.0
Using railties 5.1.4
Using coffee-rails 4.2.2
Using orm_adapter 0.5.0
Using responders 2.4.0
Using warden 1.2.7
Using devise 4.3.0
Using multi_json 1.12.2
Using elasticsearch-api 6.0.0
Using multipart-post 2.0.0
Using faraday 0.13.1
Using elasticsearch-transport 6.0.0
Using elasticsearch 6.0.0
Using hashie 3.5.6
Using jbuilder 2.7.0
Using jquery-rails 4.3.1
Using ruby_dep 1.5.0
Using listen 3.1.5
Using mime-types-data 3.2016.0521
Using mime-types 3.1
Using mimemagic 0.3.2
Using paperclip 5.1.0
Using puma 3.11.0
Using sprockets 3.7.1
Using sprockets-rails 3.2.1
Using rails 5.1.4
Using rubyzip 1.2.1
Using tilt 2.0.8
Using sass-rails 5.0.7
Using searchkick 2.4.0
Using selenium-webdriver 3.8.0
Using spring 2.0.2
Using spring-watcher-listen 2.0.1
Using sqlite3 1.3.13
Using turbolinks-source 5.0.3
Using turbolinks 5.0.1
Using uglifier 4.0.2
Using web-console 3.5.1
Bundle complete! 21 Gemfile dependencies, 91 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy/InkApp on master[!]
$ bundle install
Using rake 12.3.0
Using concurrent-ruby 1.0.5
Using i18n 0.9.1
Using minitest 5.10.3
Using thread_safe 0.3.6
Using tzinfo 1.2.4
Using activesupport 5.1.4
Using builder 3.2.3
Using erubi 1.7.0
Using mini_portile2 2.3.0
Using nokogiri 1.8.1
Using rails-dom-testing 2.0.3
Using crass 1.0.3
Using loofah 2.1.1
Using rails-html-sanitizer 1.0.3
Using actionview 5.1.4
Using rack 2.0.3
Using rack-test 0.8.2
Using actionpack 5.1.4
Using nio4r 2.1.0
Using websocket-extensions 0.1.3
Using websocket-driver 0.6.5
Using actioncable 5.1.4
Using globalid 0.4.1
Using activejob 5.1.4
Using mini_mime 1.0.0
Using mail 2.7.0
Using actionmailer 5.1.4
Using activemodel 5.1.4
Using arel 8.0.0
Using activerecord 5.1.4
Using public_suffix 3.0.1
Using addressable 2.5.2
Using execjs 2.7.0
Using autoprefixer-rails 7.2.3
Using bcrypt 3.1.11
Using bindex 0.5.0
Using rb-fsevent 0.10.2
Using ffi 1.9.18
Using rb-inotify 0.9.10
Using sass-listen 4.0.0
Using sass 3.5.4
Using bootstrap-sass 3.3.7
Using bundler 1.16.0
Using byebug 9.1.0
Using xpath 2.1.0
Using capybara 2.16.1
Using childprocess 0.8.0
Using climate_control 0.2.0
Using cocaine 0.5.8
Using coffee-script-source 1.12.2
Using coffee-script 2.4.1
Using method_source 0.9.0
Using thor 0.20.0
Using railties 5.1.4
Using coffee-rails 4.2.2
Using orm_adapter 0.5.0
Using responders 2.4.0
Using warden 1.2.7
Using devise 4.3.0
Using multi_json 1.12.2
Using elasticsearch-api 6.0.0
Using multipart-post 2.0.0
Using faraday 0.13.1
Using elasticsearch-transport 6.0.0
Using elasticsearch 6.0.0
Using hashie 3.5.6
Using jbuilder 2.7.0
Using jquery-rails 4.3.1
Using ruby_dep 1.5.0
Using listen 3.1.5
Using mime-types-data 3.2016.0521
Using mime-types 3.1
Using mimemagic 0.3.2
Using paperclip 5.1.0
Using puma 3.11.0
Using sprockets 3.7.1
Using sprockets-rails 3.2.1
Using rails 5.1.4
Using rubyzip 1.2.1
Using tilt 2.0.8
Using sass-rails 5.0.7
Using searchkick 2.4.0
Using selenium-webdriver 3.8.0
Using spring 2.0.2
Using spring-watcher-listen 2.0.1
Using sqlite3 1.3.13
Using turbolinks-source 5.0.3
Using turbolinks 5.0.1
Using uglifier 4.0.2
Using web-console 3.5.1
Bundle complete! 21 Gemfile dependencies, 91 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy/InkApp on master[!]
$ bundle info pg
Could not find gem 'pg'.
andrealee ~/CODE/wdi/UNIT_04/Project/InkApp329/InkAppDeploy/InkApp on master[!]
$ bundle install
Using rake 12.3.0
Using concurrent-ruby 1.0.5
Using i18n 0.9.1
Using minitest 5.10.3
Using thread_safe 0.3.6
Using tzinfo 1.2.4
Using activesupport 5.1.4
Using builder 3.2.3
Using erubi 1.7.0
Using mini_portile2 2.3.0
Using nokogiri 1.8.1
Using rails-dom-testing 2.0.3
Using crass 1.0.3
Using loofah 2.1.1
Using rails-html-sanitizer 1.0.3
Using actionview 5.1.4
Using rack 2.0.3
Using rack-test 0.8.2
Using actionpack 5.1.4
Using nio4r 2.1.0
Using websocket-extensions 0.1.3
Using websocket-driver 0.6.5
Using actioncable 5.1.4
Using globalid 0.4.1
Using activejob 5.1.4
Using mini_mime 1.0.0
Using mail 2.7.0
Using actionmailer 5.1.4
Using activemodel 5.1.4
Using arel 8.0.0
Using activerecord 5.1.4
Using public_suffix 3.0.1
Using addressable 2.5.2
Using execjs 2.7.0
Using autoprefixer-rails 7.2.3
Using bcrypt 3.1.11
Using bindex 0.5.0
Using rb-fsevent 0.10.2
Using ffi 1.9.18
Using rb-inotify 0.9.10
Using sass-listen 4.0.0
Using sass 3.5.4
Using bootstrap-sass 3.3.7
Using bundler 1.16.0
Using byebug 9.1.0
Using xpath 2.1.0
Using capybara 2.16.1
Using childprocess 0.8.0
Using climate_control 0.2.0
Using cocaine 0.5.8
Using coffee-script-source 1.12.2
Using coffee-script 2.4.1
Using method_source 0.9.0
Using thor 0.20.0
Using railties 5.1.4
Using coffee-rails 4.2.2
Using orm_adapter 0.5.0
Using responders 2.4.0
Using warden 1.2.7
Using devise 4.3.0
Using multi_json 1.12.2
Using elasticsearch-api 6.0.0
Using multipart-post 2.0.0
Using faraday 0.13.1
Using elasticsearch-transport 6.0.0
Using elasticsearch 6.0.0
Using hashie 3.5.6
Using jbuilder 2.7.0