forked from OHI-Science/ohi-science.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathohi-science.github.io-terminalhistory.txt
6793 lines (6762 loc) · 214 KB
/
ohi-science.github.io-terminalhistory.txt
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: Tue Apr 18 15:47:32 on ttys000
cd '/Users/julialowndes/github/ohi-science.github.io'
Julias-MacBook-Pro-2:~ julialowndes$ cd '/Users/julialowndes/github/ohi-science.github.io'
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle install
Fetching gem metadata from https://rubygems.org/..........
Fetching version metadata from https://rubygems.org/..
Fetching dependency metadata from https://rubygems.org/.
Resolving dependencies...
Bundler could not find compatible versions for gem "ruby":
In Gemfile:
ruby
activesupport (= 5.0.0) was resolved to 5.0.0, which depends on
ruby (>= 2.2.2)
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ which ruby
/usr/local/bin/ruby
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ ruby -v
ruby 2.4.1p111 (2017-03-22 revision 58053) [x86_64-darwin16]
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ git add Gemfile Gemfile.lock
fatal: pathspec 'Gemfile.lock' did not match any files
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle exec jekyll serve
Could not find gem 'jekyll (= 3.1.6)' in any of the gem sources listed in your Gemfile.
Run `bundle install` to install missing gems.
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ which jekyll
/usr/local/bin/jekyll
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ jekyll -v
WARN: Unresolved specs during Gem::Specification.reset:
jekyll-watch (~> 1.1)
WARN: Clearing out unresolved specs.
Please report a bug if this causes problems.
/Library/Ruby/Gems/2.0.0/gems/bundler-1.14.6/lib/bundler/resolver.rb:386:in `block in verify_gemfile_dependencies_are_found!': Could not find gem 'jekyll (= 3.1.6)' in any of the gem sources listed in your Gemfile. (Bundler::GemNotFound)
from /Library/Ruby/Gems/2.0.0/gems/bundler-1.14.6/lib/bundler/resolver.rb:356:in `each'
from /Library/Ruby/Gems/2.0.0/gems/bundler-1.14.6/lib/bundler/resolver.rb:356:in `verify_gemfile_dependencies_are_found!'
from /Library/Ruby/Gems/2.0.0/gems/bundler-1.14.6/lib/bundler/resolver.rb:203:in `start'
from /Library/Ruby/Gems/2.0.0/gems/bundler-1.14.6/lib/bundler/resolver.rb:182:in `resolve'
from /Library/Ruby/Gems/2.0.0/gems/bundler-1.14.6/lib/bundler/definition.rb:252:in `resolve'
from /Library/Ruby/Gems/2.0.0/gems/bundler-1.14.6/lib/bundler/definition.rb:176:in `specs'
from /Library/Ruby/Gems/2.0.0/gems/bundler-1.14.6/lib/bundler/definition.rb:235:in `specs_for'
from /Library/Ruby/Gems/2.0.0/gems/bundler-1.14.6/lib/bundler/definition.rb:224:in `requested_specs'
from /Library/Ruby/Gems/2.0.0/gems/bundler-1.14.6/lib/bundler/runtime.rb:118:in `block in definition_method'
from /Library/Ruby/Gems/2.0.0/gems/bundler-1.14.6/lib/bundler/runtime.rb:19:in `setup'
from /Library/Ruby/Gems/2.0.0/gems/bundler-1.14.6/lib/bundler.rb:100:in `setup'
from /Library/Ruby/Gems/2.0.0/gems/jekyll-3.4.3/lib/jekyll/plugin_manager.rb:36:in `require_from_bundler'
from /Library/Ruby/Gems/2.0.0/gems/jekyll-3.4.3/exe/jekyll:9:in `<top (required)>'
from /usr/local/bin/jekyll:22:in `load'
from /usr/local/bin/jekyll:22:in `<main>'
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ sudo gem install jekyll
Password:
Fetching: public_suffix-2.0.5.gem (100%)
Successfully installed public_suffix-2.0.5
Fetching: addressable-2.5.1.gem (100%)
Successfully installed addressable-2.5.1
Fetching: colorator-1.1.0.gem (100%)
Successfully installed colorator-1.1.0
Fetching: sass-3.4.23.gem (100%)
Successfully installed sass-3.4.23
Fetching: jekyll-sass-converter-1.5.0.gem (100%)
Successfully installed jekyll-sass-converter-1.5.0
Fetching: rb-fsevent-0.9.8.gem (100%)
Successfully installed rb-fsevent-0.9.8
Fetching: ffi-1.9.18.gem (100%)
Building native extensions. This could take a while...
Successfully installed ffi-1.9.18
Fetching: rb-inotify-0.9.8.gem (100%)
Successfully installed rb-inotify-0.9.8
Fetching: listen-3.0.8.gem (100%)
Successfully installed listen-3.0.8
Fetching: jekyll-watch-1.5.0.gem (100%)
Successfully installed jekyll-watch-1.5.0
Fetching: kramdown-1.13.2.gem (100%)
Successfully installed kramdown-1.13.2
Fetching: liquid-3.0.6.gem (100%)
Successfully installed liquid-3.0.6
Fetching: mercenary-0.3.6.gem (100%)
Successfully installed mercenary-0.3.6
Fetching: forwardable-extended-2.6.0.gem (100%)
Successfully installed forwardable-extended-2.6.0
Fetching: pathutil-0.14.0.gem (100%)
Successfully installed pathutil-0.14.0
Fetching: rouge-1.11.1.gem (100%)
Successfully installed rouge-1.11.1
Fetching: safe_yaml-1.0.4.gem (100%)
Successfully installed safe_yaml-1.0.4
Fetching: jekyll-3.4.3.gem (100%)
Successfully installed jekyll-3.4.3
Parsing documentation for public_suffix-2.0.5
Installing ri documentation for public_suffix-2.0.5
Parsing documentation for addressable-2.5.1
Installing ri documentation for addressable-2.5.1
Parsing documentation for colorator-1.1.0
Installing ri documentation for colorator-1.1.0
Parsing documentation for sass-3.4.23
Installing ri documentation for sass-3.4.23
Parsing documentation for jekyll-sass-converter-1.5.0
Installing ri documentation for jekyll-sass-converter-1.5.0
Parsing documentation for rb-fsevent-0.9.8
Installing ri documentation for rb-fsevent-0.9.8
Parsing documentation for ffi-1.9.18
Installing ri documentation for ffi-1.9.18
Parsing documentation for rb-inotify-0.9.8
Installing ri documentation for rb-inotify-0.9.8
Parsing documentation for listen-3.0.8
Installing ri documentation for listen-3.0.8
Parsing documentation for jekyll-watch-1.5.0
Installing ri documentation for jekyll-watch-1.5.0
Parsing documentation for kramdown-1.13.2
Installing ri documentation for kramdown-1.13.2
Parsing documentation for liquid-3.0.6
Installing ri documentation for liquid-3.0.6
Parsing documentation for mercenary-0.3.6
Installing ri documentation for mercenary-0.3.6
Parsing documentation for forwardable-extended-2.6.0
Installing ri documentation for forwardable-extended-2.6.0
Parsing documentation for pathutil-0.14.0
Installing ri documentation for pathutil-0.14.0
Parsing documentation for rouge-1.11.1
Installing ri documentation for rouge-1.11.1
Parsing documentation for safe_yaml-1.0.4
Installing ri documentation for safe_yaml-1.0.4
Parsing documentation for jekyll-3.4.3
Installing ri documentation for jekyll-3.4.3
Done installing documentation for public_suffix, addressable, colorator, sass, jekyll-sass-converter, rb-fsevent, ffi, rb-inotify, listen, jekyll-watch, kramdown, liquid, mercenary, forwardable-extended, pathutil, rouge, safe_yaml, jekyll after 30 seconds
18 gems installed
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle exec jekyll serve
Could not find gem 'jekyll (= 3.1.6)' in any of the gem sources listed in your Gemfile.
Run `bundle install` to install missing gems.
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle exec jekyll serve
[!] There was an error parsing `Gemfile`: Illformed requirement ["=> 3.1.6"]. Bundler cannot continue.
# from /Users/julialowndes/github/ohi-science.github.io/Gemfile:5
# -------------------------------------------
#
> gem 'jekyll', '=> 3.1.6'
# gem 'jekyll-paginate', '= 1.1.0'
# -------------------------------------------
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle exec jekyll serve
Could not find gem 'jekyll-paginate (= 1.1.0)' in any of the gem sources listed in your Gemfile.
Run `bundle install` to install missing gems.
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle install
Fetching gem metadata from https://rubygems.org/...........
Fetching version metadata from https://rubygems.org/..
Fetching dependency metadata from https://rubygems.org/.
Resolving dependencies...
Bundler could not find compatible versions for gem "ruby":
In Gemfile:
ruby
activesupport (= 5.0.0) was resolved to 5.0.0, which depends on
ruby (>= 2.2.2)
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle install
[!] There was an error parsing `Gemfile`: You cannot specify the same gem twice with different version requirements.
You specified: activesupport (= 5.0.0) and activesupport (= 4.2.7). Bundler cannot continue.
# from /Users/julialowndes/github/ohi-science.github.io/Gemfile:13
# -------------------------------------------
# gem 'sass', '= 3.4.22'
> gem 'activesupport', '= 4.2.7'
# -------------------------------------------
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle install
Fetching gem metadata from https://rubygems.org/..........
Fetching version metadata from https://rubygems.org/..
Fetching dependency metadata from https://rubygems.org/.
Resolving dependencies...
Bundler could not find compatible versions for gem "ruby":
In Gemfile:
ruby
activesupport (= 5.0.0) was resolved to 5.0.0, which depends on
ruby (>= 2.2.2)
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle install
Fetching gem metadata from https://rubygems.org/..........
Fetching version metadata from https://rubygems.org/..
Fetching dependency metadata from https://rubygems.org/.
Resolving dependencies...
Bundler could not find compatible versions for gem "jekyll":
In Gemfile:
jekyll (= 3.4.3)
github-pages (= 82) was resolved to 82, which depends on
jekyll (= 3.1.6)
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle exec jekyll serve
Could not find gem 'jekyll-paginate (= 1.1.0)' in any of the gem sources listed in your Gemfile.
Run `bundle install` to install missing gems.
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle install
Fetching gem metadata from https://rubygems.org/..........
Fetching version metadata from https://rubygems.org/..
Fetching dependency metadata from https://rubygems.org/.
Resolving dependencies...
Bundler could not find compatible versions for gem "jekyll":
In Gemfile:
jekyll (= 3.4.3)
github-pages (= 82) was resolved to 82, which depends on
jekyll (= 3.1.6)
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle install
Fetching gem metadata from https://rubygems.org/..........
Fetching version metadata from https://rubygems.org/..
Fetching dependency metadata from https://rubygems.org/.
Resolving dependencies...
Using i18n 0.8.1
Your user account isn't allowed to install to the system RubyGems.
You can cancel this installation and run:
bundle install --path vendor/bundle
to install the gems into ./vendor/bundle/, or you can enter your password
and install the bundled gems to RubyGems using sudo.
Password:
Your user account isn't allowed to install to the system RubyGems.
You can cancel this installation and run:
bundle install --path vendor/bundle
to install the gems into ./vendor/bundle/, or you can enter your password
and install the bundled gems to RubyGems using sudo.
Password:
Installing json 1.8.6 with native extensions
Using minitest 5.10.1
Using thread_safe 0.3.6
Installing public_suffix 2.0.5
Using coffee-script-source 1.12.2
Using execjs 2.7.0
Using colorator 1.1.0
Using ffi 1.9.18
Using multipart-post 2.0.0
Using forwardable-extended 2.6.0
Installing gemoji 3.0.0
cp: /usr/bin/gemoji: Operation not permitted
Using net-dns 0.8.0
Using sass 3.4.22
Using rb-fsevent 0.9.8
Installing kramdown 1.13.2
cp: /usr/bin/kramdown: Operation not permitted
Using liquid 3.0.6
Using mercenary 0.3.6
Installing rouge 1.11.1
cp: /usr/bin/rougify: Operation not permitted
Using safe_yaml 1.0.4
Using mini_portile2 2.1.0
Using jekyll-paginate 1.1.0
Installing jekyll-swiss 0.4.0
Installing minima 2.0.0
Using unicode-display_width 1.1.3
Using posix-spawn 0.3.13
Installing yajl-ruby 1.2.2 with native extensions
Using bundler 1.14.6
Using tzinfo 1.2.3
Installing addressable 2.5.1
Using coffee-script 2.4.1
Using ethon 0.10.1
Using rb-inotify 0.9.8
Using faraday 0.12.0.1
Using pathutil 0.14.0
Installing jekyll-sass-converter 1.5.0
Installing nokogiri 1.6.8.1 with native extensions
cp: /usr/bin/nokogiri: Operation not permitted
Using terminal-table 1.7.3
Installing pygments.rb 0.6.3
Installing activesupport 4.2.7
Using jekyll-coffeescript 1.0.1
Installing typhoeus 0.8.0
Using listen 3.0.6
Installing sawyer 0.8.1
Installing html-pipeline 2.5.0
Using jekyll-watch 1.5.0
Installing octokit 4.7.0
Using jekyll 3.4.3
Installing github-pages-health-check 1.3.3
Using jekyll-gist 1.4.0
Installing jekyll-avatar 0.4.2
Installing jekyll-default-layout 0.1.4
Installing jekyll-feed 0.9.2
Installing jekyll-github-metadata 2.3.1
Installing jekyll-mentions 1.2.0
Installing jekyll-optional-front-matter 0.1.2
Installing jekyll-readme-index 0.1.0
Installing jekyll-redirect-from 0.12.1
Installing jekyll-relative-links 0.4.0
Installing jekyll-seo-tag 2.2.0
Installing jekyll-sitemap 1.0.0
Installing jekyll-theme-architect 0.0.4
Installing jekyll-theme-cayman 0.0.4
Installing jekyll-theme-dinky 0.0.4
Installing jekyll-theme-hacker 0.0.4
Installing jekyll-theme-leap-day 0.0.4
Installing jekyll-theme-merlot 0.0.4
Installing jekyll-theme-midnight 0.0.4
Installing jekyll-theme-minimal 0.0.4
Installing jekyll-theme-modernist 0.0.4
Installing jekyll-theme-primer 0.1.8
Installing jekyll-theme-slate 0.0.4
Installing jekyll-theme-tactile 0.0.4
Installing jekyll-theme-time-machine 0.0.4
Installing jekyll-titles-from-headings 0.1.5
Installing jemoji 0.8.0
Installing github-pages 134
cp: /usr/bin/github-pages: Operation not permitted
Bundle complete! 8 Gemfile dependencies, 77 gems now installed.
Use `bundle show [gemname]` to see where a bundled gem is installed.
Post-install message from html-pipeline:
-------------------------------------------------
Thank you for installing html-pipeline!
You must bundle Filter gem dependencies.
See html-pipeline README.md for more details.
https://github.com/jch/html-pipeline#dependencies
-------------------------------------------------
Post-install message from minima:
----------------------------------------------
Thank you for installing minima 2.0!
Minima 2.0 comes with a breaking change that
renders '<your-site>/css/main.scss' redundant.
That file is now bundled with this gem as
'<minima>/assets/main.scss'.
More Information:
https://github.com/jekyll/minima#customization
----------------------------------------------
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle exec jekyll serve
Could not find i18n-0.8.1 in any of the sources
Run `bundle install` to install missing gems.
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ exit
logout
Saving session...
...copying shared history...
...saving history...truncating history files...
...completed.
[Process completed]
Last login: Tue Apr 18 16:10:46 on ttys000
cd '/Users/julialowndes/github/ohi-science.github.io'
Julias-MacBook-Pro-2:~ julialowndes$ cd '/Users/julialowndes/github/ohi-science.github.io'
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle exec jekyll serve
Could not find i18n-0.8.1 in any of the sources
Run `bundle install` to install missing gems.
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ jekyll serve --safe
/usr/local/Cellar/ruby/2.4.1_1/lib/ruby/2.4.0/rubygems/core_ext/kernel_require.rb:55:in `require': cannot load such file -- bundler (LoadError)
from /usr/local/Cellar/ruby/2.4.1_1/lib/ruby/2.4.0/rubygems/core_ext/kernel_require.rb:55:in `require'
from /usr/local/lib/ruby/gems/2.4.0/gems/jekyll-3.4.3/lib/jekyll/plugin_manager.rb:34:in `require_from_bundler'
from /usr/local/lib/ruby/gems/2.4.0/gems/jekyll-3.4.3/exe/jekyll:9:in `<top (required)>'
from /usr/local/bin/jekyll:22:in `load'
from /usr/local/bin/jekyll:22:in `<main>'
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ gem install i18n
Fetching: i18n-0.8.1.gem (100%)
Successfully installed i18n-0.8.1
ERROR: While executing gem ... (Errno::EACCES)
Permission denied @ dir_s_mkdir - /usr/local/lib/ruby/gems/2.4.0/doc/i18n-0.8.1
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle exec jekyll serve
Could not find json-1.8.6 in any of the sources
Run `bundle install` to install missing gems.
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle exec jekyll serve
Could not find json-1.8.6 in any of the sources
Run `bundle install` to install missing gems.
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle exec jekyll serve
Could not find json-1.8.6 in any of the sources
Run `bundle install` to install missing gems.
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ gem install json -v 1.8.6
Fetching: json-1.8.6.gem (100%)
Building native extensions. This could take a while...
ERROR: While executing gem ... (Errno::EACCES)
Permission denied @ dir_s_mkdir - /usr/local/lib/ruby/gems/2.4.0/extensions/x86_64-darwin-16/2.4.0/json-1.8.6
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle exec jekyll serve
Could not find json-1.8.6 in any of the sources
Run `bundle install` to install missing gems.
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle install
Resolving dependencies...
Using i18n 0.8.1
Using json 1.8.6
Using minitest 5.10.1
Using thread_safe 0.3.6
Using public_suffix 2.0.5
Using coffee-script-source 1.12.2
Using execjs 2.7.0
Using colorator 1.1.0
Using ffi 1.9.18
Using multipart-post 2.0.0
Using forwardable-extended 2.6.0
Using gemoji 3.0.0
Using net-dns 0.8.0
Using sass 3.4.22
Using rb-fsevent 0.9.8
Using kramdown 1.13.2
Using liquid 3.0.6
Using mercenary 0.3.6
Using rouge 1.11.1
Using safe_yaml 1.0.4
Using mini_portile2 2.1.0
Using jekyll-paginate 1.1.0
Using jekyll-swiss 0.4.0
Using minima 2.0.0
Using unicode-display_width 1.1.3
Using posix-spawn 0.3.13
Using yajl-ruby 1.2.2
Using bundler 1.14.6
Using tzinfo 1.2.3
Using addressable 2.5.1
Using coffee-script 2.4.1
Using ethon 0.10.1
Using rb-inotify 0.9.8
Using faraday 0.12.0.1
Using pathutil 0.14.0
Using jekyll-sass-converter 1.5.0
Using nokogiri 1.6.8.1
Using terminal-table 1.7.3
Using pygments.rb 0.6.3
Using activesupport 4.2.7
Using jekyll-coffeescript 1.0.1
Using typhoeus 0.8.0
Using listen 3.0.6
Using sawyer 0.8.1
Using html-pipeline 2.5.0
Using jekyll-watch 1.5.0
Using octokit 4.7.0
Using jekyll 3.4.3
Using github-pages-health-check 1.3.3
Using jekyll-gist 1.4.0
Using jekyll-avatar 0.4.2
Using jekyll-default-layout 0.1.4
Using jekyll-feed 0.9.2
Using jekyll-github-metadata 2.3.1
Using jekyll-mentions 1.2.0
Using jekyll-optional-front-matter 0.1.2
Using jekyll-readme-index 0.1.0
Using jekyll-redirect-from 0.12.1
Using jekyll-relative-links 0.4.0
Using jekyll-seo-tag 2.2.0
Using jekyll-sitemap 1.0.0
Using jekyll-theme-architect 0.0.4
Using jekyll-theme-cayman 0.0.4
Using jekyll-theme-dinky 0.0.4
Using jekyll-theme-hacker 0.0.4
Using jekyll-theme-leap-day 0.0.4
Using jekyll-theme-merlot 0.0.4
Using jekyll-theme-midnight 0.0.4
Using jekyll-theme-minimal 0.0.4
Using jekyll-theme-modernist 0.0.4
Using jekyll-theme-primer 0.1.8
Using jekyll-theme-slate 0.0.4
Using jekyll-theme-tactile 0.0.4
Using jekyll-theme-time-machine 0.0.4
Using jekyll-titles-from-headings 0.1.5
Using jemoji 0.8.0
Using github-pages 134
Bundle complete! 10 Gemfile dependencies, 77 gems now installed.
Use `bundle show [gemname]` to see where a bundled gem is installed.
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle exec jekyll serve
Could not find json-1.8.6 in any of the sources
Run `bundle install` to install missing gems.
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ gem install json -v 1.8.6
Building native extensions. This could take a while...
ERROR: While executing gem ... (Errno::EACCES)
Permission denied @ dir_s_mkdir - /usr/local/lib/ruby/gems/2.4.0/extensions/x86_64-darwin-16/2.4.0/json-1.8.6
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ gem install -n /usr/local/bin json -v 1.8.6
Building native extensions. This could take a while...
ERROR: While executing gem ... (Errno::EACCES)
Permission denied @ dir_s_mkdir - /usr/local/lib/ruby/gems/2.4.0/extensions/x86_64-darwin-16/2.4.0/json-1.8.6
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ sudo gem install -n /usr/local/bin json -v 1.8.6
Password:
Building native extensions. This could take a while...
Successfully installed json-1.8.6
Parsing documentation for json-1.8.6
Installing ri documentation for json-1.8.6
Done installing documentation for json after 1 seconds
1 gem installed
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle install
Using i18n 0.8.1
Using json 1.8.6
Using minitest 5.10.1
Using thread_safe 0.3.6
Using public_suffix 2.0.5
Using coffee-script-source 1.12.2
Using execjs 2.7.0
Using colorator 1.1.0
Using ffi 1.9.18
Using multipart-post 2.0.0
Using forwardable-extended 2.6.0
Using gemoji 3.0.0
Using net-dns 0.8.0
Using sass 3.4.22
Using rb-fsevent 0.9.8
Using kramdown 1.13.2
Using liquid 3.0.6
Using mercenary 0.3.6
Using rouge 1.11.1
Using safe_yaml 1.0.4
Using mini_portile2 2.1.0
Using jekyll-paginate 1.1.0
Using jekyll-swiss 0.4.0
Using minima 2.0.0
Using unicode-display_width 1.1.3
Using posix-spawn 0.3.13
Using yajl-ruby 1.2.2
Using bundler 1.14.6
Using tzinfo 1.2.3
Using addressable 2.5.1
Using coffee-script 2.4.1
Using ethon 0.10.1
Using rb-inotify 0.9.8
Using faraday 0.12.0.1
Using pathutil 0.14.0
Using jekyll-sass-converter 1.5.0
Using nokogiri 1.6.8.1
Using terminal-table 1.7.3
Using pygments.rb 0.6.3
Using activesupport 4.2.7
Using jekyll-coffeescript 1.0.1
Using typhoeus 0.8.0
Using listen 3.0.6
Using sawyer 0.8.1
Using html-pipeline 2.5.0
Using jekyll-watch 1.5.0
Using octokit 4.7.0
Using jekyll 3.4.3
Using github-pages-health-check 1.3.3
Using jekyll-gist 1.4.0
Using jekyll-avatar 0.4.2
Using jekyll-default-layout 0.1.4
Using jekyll-feed 0.9.2
Using jekyll-github-metadata 2.3.1
Using jekyll-mentions 1.2.0
Using jekyll-optional-front-matter 0.1.2
Using jekyll-readme-index 0.1.0
Using jekyll-redirect-from 0.12.1
Using jekyll-relative-links 0.4.0
Using jekyll-seo-tag 2.2.0
Using jekyll-sitemap 1.0.0
Using jekyll-theme-architect 0.0.4
Using jekyll-theme-cayman 0.0.4
Using jekyll-theme-dinky 0.0.4
Using jekyll-theme-hacker 0.0.4
Using jekyll-theme-leap-day 0.0.4
Using jekyll-theme-merlot 0.0.4
Using jekyll-theme-midnight 0.0.4
Using jekyll-theme-minimal 0.0.4
Using jekyll-theme-modernist 0.0.4
Using jekyll-theme-primer 0.1.8
Using jekyll-theme-slate 0.0.4
Using jekyll-theme-tactile 0.0.4
Using jekyll-theme-time-machine 0.0.4
Using jekyll-titles-from-headings 0.1.5
Using jemoji 0.8.0
Using github-pages 134
Bundle complete! 10 Gemfile dependencies, 77 gems now installed.
Use `bundle show [gemname]` to see where a bundled gem is installed.
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle exec jekyll serve
Could not find thread_safe-0.3.6 in any of the sources
Run `bundle install` to install missing gems.
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ gem install thread_safe
Fetching: thread_safe-0.3.6.gem (100%)
Successfully installed thread_safe-0.3.6
ERROR: While executing gem ... (Errno::EACCES)
Permission denied @ dir_s_mkdir - /usr/local/lib/ruby/gems/2.4.0/doc/thread_safe-0.3.6
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ sudo gem install -n /usr/local/bin thread_safe
Successfully installed thread_safe-0.3.6
Parsing documentation for thread_safe-0.3.6
Installing ri documentation for thread_safe-0.3.6
Done installing documentation for thread_safe after 0 seconds
1 gem installed
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle install
Resolving dependencies...
Using i18n 0.8.1
Using json 1.8.6
Using minitest 5.10.1
Using thread_safe 0.3.6
Using public_suffix 2.0.5
Using coffee-script-source 1.12.2
Using execjs 2.7.0
Using colorator 1.1.0
Using ffi 1.9.18
Using multipart-post 2.0.0
Using forwardable-extended 2.6.0
Using gemoji 3.0.0
Using net-dns 0.8.0
Using sass 3.4.22
Using rb-fsevent 0.9.8
Using kramdown 1.13.2
Using liquid 3.0.6
Using mercenary 0.3.6
Using rouge 1.11.1
Using safe_yaml 1.0.4
Using mini_portile2 2.1.0
Using jekyll-paginate 1.1.0
Using jekyll-swiss 0.4.0
Using minima 2.0.0
Using unicode-display_width 1.1.3
Using posix-spawn 0.3.13
Using yajl-ruby 1.2.2
Using bundler 1.14.6
Using tzinfo 1.2.3
Using addressable 2.5.1
Using coffee-script 2.4.1
Using ethon 0.10.1
Using rb-inotify 0.9.8
Using faraday 0.12.0.1
Using pathutil 0.14.0
Using jekyll-sass-converter 1.5.0
Using nokogiri 1.6.8.1
Using terminal-table 1.7.3
Using pygments.rb 0.6.3
Using activesupport 4.2.7
Using jekyll-coffeescript 1.0.1
Using typhoeus 0.8.0
Using listen 3.0.6
Using sawyer 0.8.1
Using html-pipeline 2.5.0
Using jekyll-watch 1.5.0
Using octokit 4.7.0
Using jekyll 3.4.3
Using github-pages-health-check 1.3.3
Using jekyll-gist 1.4.0
Using jekyll-avatar 0.4.2
Using jekyll-default-layout 0.1.4
Using jekyll-feed 0.9.2
Using jekyll-github-metadata 2.3.1
Using jekyll-mentions 1.2.0
Using jekyll-optional-front-matter 0.1.2
Using jekyll-readme-index 0.1.0
Using jekyll-redirect-from 0.12.1
Using jekyll-relative-links 0.4.0
Using jekyll-seo-tag 2.2.0
Using jekyll-sitemap 1.0.0
Using jekyll-theme-architect 0.0.4
Using jekyll-theme-cayman 0.0.4
Using jekyll-theme-dinky 0.0.4
Using jekyll-theme-hacker 0.0.4
Using jekyll-theme-leap-day 0.0.4
Using jekyll-theme-merlot 0.0.4
Using jekyll-theme-midnight 0.0.4
Using jekyll-theme-minimal 0.0.4
Using jekyll-theme-modernist 0.0.4
Using jekyll-theme-primer 0.1.8
Using jekyll-theme-slate 0.0.4
Using jekyll-theme-tactile 0.0.4
Using jekyll-theme-time-machine 0.0.4
Using jekyll-titles-from-headings 0.1.5
Using jemoji 0.8.0
Using github-pages 134
Bundle complete! 11 Gemfile dependencies, 77 gems now installed.
Use `bundle show [gemname]` to see where a bundled gem is installed.
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle exec jekyll serve
Could not find tzinfo-1.2.3 in any of the sources
Run `bundle install` to install missing gems.
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ gem install tzinfo
Fetching: tzinfo-1.2.3.gem (100%)
Successfully installed tzinfo-1.2.3
ERROR: While executing gem ... (Errno::EACCES)
Permission denied @ dir_s_mkdir - /usr/local/lib/ruby/gems/2.4.0/doc/tzinfo-1.2.3
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ sudo gem install -n /usr/local/bin tzinfo
Successfully installed tzinfo-1.2.3
Parsing documentation for tzinfo-1.2.3
Installing ri documentation for tzinfo-1.2.3
Done installing documentation for tzinfo after 2 seconds
1 gem installed
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle install
Resolving dependencies...
Using i18n 0.8.1
Using json 1.8.6
Using minitest 5.10.1
Using thread_safe 0.3.6
Using public_suffix 2.0.5
Using coffee-script-source 1.12.2
Using execjs 2.7.0
Using colorator 1.1.0
Using ffi 1.9.18
Using multipart-post 2.0.0
Using forwardable-extended 2.6.0
Using gemoji 3.0.0
Using net-dns 0.8.0
Using sass 3.4.22
Using rb-fsevent 0.9.8
Using kramdown 1.13.2
Using liquid 3.0.6
Using mercenary 0.3.6
Using rouge 1.11.1
Using safe_yaml 1.0.4
Using mini_portile2 2.1.0
Using jekyll-paginate 1.1.0
Using jekyll-swiss 0.4.0
Using minima 2.0.0
Using unicode-display_width 1.1.3
Using posix-spawn 0.3.13
Using yajl-ruby 1.2.2
Using bundler 1.14.6
Using tzinfo 1.2.3
Using addressable 2.5.1
Using coffee-script 2.4.1
Using ethon 0.10.1
Using rb-inotify 0.9.8
Using faraday 0.12.0.1
Using pathutil 0.14.0
Using jekyll-sass-converter 1.5.0
Using nokogiri 1.6.8.1
Using terminal-table 1.7.3
Using pygments.rb 0.6.3
Using activesupport 4.2.7
Using jekyll-coffeescript 1.0.1
Using typhoeus 0.8.0
Using listen 3.0.6
Using sawyer 0.8.1
Using html-pipeline 2.5.0
Using jekyll-watch 1.5.0
Using octokit 4.7.0
Using jekyll 3.4.3
Using github-pages-health-check 1.3.3
Using jekyll-gist 1.4.0
Using jekyll-avatar 0.4.2
Using jekyll-default-layout 0.1.4
Using jekyll-feed 0.9.2
Using jekyll-github-metadata 2.3.1
Using jekyll-mentions 1.2.0
Using jekyll-optional-front-matter 0.1.2
Using jekyll-readme-index 0.1.0
Using jekyll-redirect-from 0.12.1
Using jekyll-relative-links 0.4.0
Using jekyll-seo-tag 2.2.0
Using jekyll-sitemap 1.0.0
Using jekyll-theme-architect 0.0.4
Using jekyll-theme-cayman 0.0.4
Using jekyll-theme-dinky 0.0.4
Using jekyll-theme-hacker 0.0.4
Using jekyll-theme-leap-day 0.0.4
Using jekyll-theme-merlot 0.0.4
Using jekyll-theme-midnight 0.0.4
Using jekyll-theme-minimal 0.0.4
Using jekyll-theme-modernist 0.0.4
Using jekyll-theme-primer 0.1.8
Using jekyll-theme-slate 0.0.4
Using jekyll-theme-tactile 0.0.4
Using jekyll-theme-time-machine 0.0.4
Using jekyll-titles-from-headings 0.1.5
Using jemoji 0.8.0
Using github-pages 134
Bundle complete! 12 Gemfile dependencies, 77 gems now installed.
Use `bundle show [gemname]` to see where a bundled gem is installed.
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle exec jekyll serve
Could not find activesupport-4.2.7 in any of the sources
Run `bundle install` to install missing gems.
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ gem install activesupport -v 4.2.7
Fetching: activesupport-4.2.7.gem (100%)
Successfully installed activesupport-4.2.7
ERROR: While executing gem ... (Errno::EACCES)
Permission denied @ dir_s_mkdir - /usr/local/lib/ruby/gems/2.4.0/doc/activesupport-4.2.7
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ gem install activesupport
Fetching: concurrent-ruby-1.0.5.gem (100%)
Successfully installed concurrent-ruby-1.0.5
Fetching: activesupport-5.0.2.gem (100%)
Successfully installed activesupport-5.0.2
ERROR: While executing gem ... (Errno::EACCES)
Permission denied @ dir_s_mkdir - /usr/local/lib/ruby/gems/2.4.0/doc/concurrent-ruby-1.0.5
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ sudo gem install -n /usr/local/bin activesupport
Successfully installed activesupport-5.0.2
Parsing documentation for activesupport-5.0.2
Installing ri documentation for activesupport-5.0.2
Done installing documentation for activesupport after 3 seconds
1 gem installed
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle install
Using i18n 0.8.1
Using json 1.8.6
Using minitest 5.10.1
Using thread_safe 0.3.6
Using public_suffix 2.0.5
Using coffee-script-source 1.12.2
Using execjs 2.7.0
Using colorator 1.1.0
Using ffi 1.9.18
Using multipart-post 2.0.0
Using forwardable-extended 2.6.0
Using gemoji 3.0.0
Using net-dns 0.8.0
Using sass 3.4.22
Using rb-fsevent 0.9.8
Using kramdown 1.13.2
Using liquid 3.0.6
Using mercenary 0.3.6
Using rouge 1.11.1
Using safe_yaml 1.0.4
Using mini_portile2 2.1.0
Using jekyll-paginate 1.1.0
Using jekyll-swiss 0.4.0
Using minima 2.0.0
Using unicode-display_width 1.1.3
Using posix-spawn 0.3.13
Using yajl-ruby 1.2.2
Using bundler 1.14.6
Using tzinfo 1.2.3
Using addressable 2.5.1
Using coffee-script 2.4.1
Using ethon 0.10.1
Using rb-inotify 0.9.8
Using faraday 0.12.0.1
Using pathutil 0.14.0
Using jekyll-sass-converter 1.5.0
Using nokogiri 1.6.8.1
Using terminal-table 1.7.3
Using pygments.rb 0.6.3
Using activesupport 4.2.7
Using jekyll-coffeescript 1.0.1
Using typhoeus 0.8.0
Using listen 3.0.6
Using sawyer 0.8.1
Using html-pipeline 2.5.0
Using jekyll-watch 1.5.0
Using octokit 4.7.0
Using jekyll 3.4.3
Using github-pages-health-check 1.3.3
Using jekyll-gist 1.4.0
Using jekyll-avatar 0.4.2
Using jekyll-default-layout 0.1.4
Using jekyll-feed 0.9.2
Using jekyll-github-metadata 2.3.1
Using jekyll-mentions 1.2.0
Using jekyll-optional-front-matter 0.1.2
Using jekyll-readme-index 0.1.0
Using jekyll-redirect-from 0.12.1
Using jekyll-relative-links 0.4.0
Using jekyll-seo-tag 2.2.0
Using jekyll-sitemap 1.0.0
Using jekyll-theme-architect 0.0.4
Using jekyll-theme-cayman 0.0.4
Using jekyll-theme-dinky 0.0.4
Using jekyll-theme-hacker 0.0.4
Using jekyll-theme-leap-day 0.0.4
Using jekyll-theme-merlot 0.0.4
Using jekyll-theme-midnight 0.0.4
Using jekyll-theme-minimal 0.0.4
Using jekyll-theme-modernist 0.0.4
Using jekyll-theme-primer 0.1.8
Using jekyll-theme-slate 0.0.4
Using jekyll-theme-tactile 0.0.4
Using jekyll-theme-time-machine 0.0.4
Using jekyll-titles-from-headings 0.1.5
Using jemoji 0.8.0
Using github-pages 134
Bundle complete! 12 Gemfile dependencies, 77 gems now installed.
Use `bundle show [gemname]` to see where a bundled gem is installed.
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle exec jekyll serve
Could not find coffee-script-source-1.12.2 in any of the sources
Run `bundle install` to install missing gems.
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ sudo gem install -n /usr/local/bin coffee-script-source
Fetching: coffee-script-source-1.12.2.gem (100%)
Successfully installed coffee-script-source-1.12.2
Parsing documentation for coffee-script-source-1.12.2
Installing ri documentation for coffee-script-source-1.12.2
Done installing documentation for coffee-script-source after 2 seconds
1 gem installed
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle install
Using i18n 0.8.1
Using json 1.8.6
Using minitest 5.10.1
Using thread_safe 0.3.6
Using public_suffix 2.0.5
Using coffee-script-source 1.12.2
Using execjs 2.7.0
Using colorator 1.1.0
Using ffi 1.9.18
Using multipart-post 2.0.0
Using forwardable-extended 2.6.0
Using gemoji 3.0.0
Using net-dns 0.8.0
Using sass 3.4.22
Using rb-fsevent 0.9.8
Using kramdown 1.13.2
Using liquid 3.0.6
Using mercenary 0.3.6
Using rouge 1.11.1
Using safe_yaml 1.0.4
Using mini_portile2 2.1.0
Using jekyll-paginate 1.1.0
Using jekyll-swiss 0.4.0
Using minima 2.0.0
Using unicode-display_width 1.1.3
Using posix-spawn 0.3.13
Using yajl-ruby 1.2.2
Using bundler 1.14.6
Using tzinfo 1.2.3
Using addressable 2.5.1
Using coffee-script 2.4.1
Using ethon 0.10.1
Using rb-inotify 0.9.8
Using faraday 0.12.0.1
Using pathutil 0.14.0
Using jekyll-sass-converter 1.5.0
Using nokogiri 1.6.8.1
Using terminal-table 1.7.3
Using pygments.rb 0.6.3
Using activesupport 4.2.7
Using jekyll-coffeescript 1.0.1
Using typhoeus 0.8.0
Using listen 3.0.6
Using sawyer 0.8.1
Using html-pipeline 2.5.0
Using jekyll-watch 1.5.0
Using octokit 4.7.0
Using jekyll 3.4.3
Using github-pages-health-check 1.3.3
Using jekyll-gist 1.4.0
Using jekyll-avatar 0.4.2
Using jekyll-default-layout 0.1.4
Using jekyll-feed 0.9.2
Using jekyll-github-metadata 2.3.1
Using jekyll-mentions 1.2.0
Using jekyll-optional-front-matter 0.1.2
Using jekyll-readme-index 0.1.0
Using jekyll-redirect-from 0.12.1
Using jekyll-relative-links 0.4.0
Using jekyll-seo-tag 2.2.0
Using jekyll-sitemap 1.0.0
Using jekyll-theme-architect 0.0.4
Using jekyll-theme-cayman 0.0.4
Using jekyll-theme-dinky 0.0.4
Using jekyll-theme-hacker 0.0.4
Using jekyll-theme-leap-day 0.0.4
Using jekyll-theme-merlot 0.0.4
Using jekyll-theme-midnight 0.0.4
Using jekyll-theme-minimal 0.0.4
Using jekyll-theme-modernist 0.0.4
Using jekyll-theme-primer 0.1.8
Using jekyll-theme-slate 0.0.4
Using jekyll-theme-tactile 0.0.4
Using jekyll-theme-time-machine 0.0.4
Using jekyll-titles-from-headings 0.1.5
Using jemoji 0.8.0
Using github-pages 134
Bundle complete! 12 Gemfile dependencies, 77 gems now installed.
Use `bundle show [gemname]` to see where a bundled gem is installed.
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle exec jekyll serve
Could not find execjs-2.7.0 in any of the sources
Run `bundle install` to install missing gems.
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ sudo gem install -n /usr/local/bin execjs
Fetching: execjs-2.7.0.gem (100%)
Successfully installed execjs-2.7.0
Parsing documentation for execjs-2.7.0
Installing ri documentation for execjs-2.7.0
Done installing documentation for execjs after 0 seconds
1 gem installed
Julias-MacBook-Pro-2:ohi-science.github.io julialowndes$ bundle install
Using i18n 0.8.1
Using json 1.8.6
Using minitest 5.10.1
Using thread_safe 0.3.6
Using public_suffix 2.0.5
Using coffee-script-source 1.12.2
Using execjs 2.7.0
Using colorator 1.1.0
Using ffi 1.9.18
Using multipart-post 2.0.0
Using forwardable-extended 2.6.0
Using gemoji 3.0.0
Using net-dns 0.8.0
Using sass 3.4.22
Using rb-fsevent 0.9.8
Using kramdown 1.13.2
Using liquid 3.0.6
Using mercenary 0.3.6
Using rouge 1.11.1
Using safe_yaml 1.0.4
Using mini_portile2 2.1.0
Using jekyll-paginate 1.1.0
Using jekyll-swiss 0.4.0
Using minima 2.0.0
Using unicode-display_width 1.1.3
Using posix-spawn 0.3.13
Using yajl-ruby 1.2.2
Using bundler 1.14.6
Using tzinfo 1.2.3
Using addressable 2.5.1
Using coffee-script 2.4.1
Using ethon 0.10.1
Using rb-inotify 0.9.8
Using faraday 0.12.0.1
Using pathutil 0.14.0
Using jekyll-sass-converter 1.5.0
Using nokogiri 1.6.8.1
Using terminal-table 1.7.3
Using pygments.rb 0.6.3
Using activesupport 4.2.7
Using jekyll-coffeescript 1.0.1
Using typhoeus 0.8.0
Using listen 3.0.6
Using sawyer 0.8.1
Using html-pipeline 2.5.0
Using jekyll-watch 1.5.0
Using octokit 4.7.0
Using jekyll 3.4.3
Using github-pages-health-check 1.3.3
Using jekyll-gist 1.4.0
Using jekyll-avatar 0.4.2
Using jekyll-default-layout 0.1.4