質問編集履歴

1

gemfileとgemlistの追加

2017/08/28 01:57

投稿

neko_53
neko_53

スコア75

test CHANGED
File without changes
test CHANGED
@@ -347,3 +347,329 @@
347
347
  ruby2.3.1
348
348
 
349
349
  OS Sierra10.12.5
350
+
351
+
352
+
353
+
354
+
355
+ 追記2017/08/28 10:48
356
+
357
+
358
+
359
+ gem listを見てみると以下のようになっていました。
360
+
361
+ ```ここに言語を入力
362
+
363
+ actionmailer (4.2.5.1)
364
+
365
+ actionpack (4.2.5.1)
366
+
367
+ actionview (4.2.5.1)
368
+
369
+ activejob (4.2.5.1)
370
+
371
+ activemodel (4.2.5.1)
372
+
373
+ activerecord (4.2.5.1)
374
+
375
+ activesupport (4.2.5.1)
376
+
377
+ arel (6.0.4)
378
+
379
+ bcrypt (3.1.11)
380
+
381
+ bigdecimal (1.2.8)
382
+
383
+ binding_of_caller (0.7.2)
384
+
385
+ builder (3.2.3)
386
+
387
+ bundler (1.15.4, 1.15.3)
388
+
389
+ byebug (9.0.6)
390
+
391
+ CFPropertyList (2.3.5)
392
+
393
+ coderay (1.1.1)
394
+
395
+ coffee-rails (4.1.1)
396
+
397
+ coffee-script (2.4.1)
398
+
399
+ coffee-script-source (1.12.2)
400
+
401
+ concurrent-ruby (1.0.5)
402
+
403
+ debug_inspector (0.0.3, 0.0.2)
404
+
405
+ devise (4.3.0)
406
+
407
+ did_you_mean (1.0.0)
408
+
409
+ erubis (2.7.0)
410
+
411
+ excon (0.55.0)
412
+
413
+ execjs (2.7.0)
414
+
415
+ ffi (1.9.18)
416
+
417
+ fission (0.5.0)
418
+
419
+ fog-core (1.43.0)
420
+
421
+ formatador (0.2.5)
422
+
423
+ globalid (0.4.0)
424
+
425
+ google-analytics-rails (1.1.0)
426
+
427
+ i18n (0.8.6, 0.8.1)
428
+
429
+ inflecto (0.0.2)
430
+
431
+ io-console (0.4.5)
432
+
433
+ ipaddress (0.8.3)
434
+
435
+ jbuilder (2.7.0)
436
+
437
+ jquery-rails (4.3.1)
438
+
439
+ json (1.8.6, 1.8.3)
440
+
441
+ loofah (2.0.3)
442
+
443
+ mail (2.6.6)
444
+
445
+ method_source (0.8.2)
446
+
447
+ mime-types (3.1)
448
+
449
+ mime-types-data (3.2016.0521)
450
+
451
+ mini_portile2 (2.2.0, 2.1.0)
452
+
453
+ minitest (5.10.3, 5.10.1, 5.8.3)
454
+
455
+ multi_json (1.12.1)
456
+
457
+ mysql2 (0.4.8)
458
+
459
+ net-telnet (0.1.1)
460
+
461
+ nokogiri (1.8.0, 1.7.1)
462
+
463
+ orm_adapter (0.5.0)
464
+
465
+ power_assert (0.2.6)
466
+
467
+ pry (0.10.4)
468
+
469
+ pry-rails (0.3.6)
470
+
471
+ psych (2.0.17)
472
+
473
+ rack (1.6.8, 1.6.5)
474
+
475
+ rack-test (0.6.3)
476
+
477
+ rails (4.2.5.1)
478
+
479
+ rails-deprecated_sanitizer (1.0.3)
480
+
481
+ rails-dom-testing (1.0.8)
482
+
483
+ rails-html-sanitizer (1.0.3)
484
+
485
+ rails_serve_static_assets (0.0.5)
486
+
487
+ rails_stdout_logging (0.0.5)
488
+
489
+ railties (4.2.5.1)
490
+
491
+ rake (12.0.0, 10.4.2)
492
+
493
+ rb-fsevent (0.10.2)
494
+
495
+ rb-inotify (0.9.10)
496
+
497
+ rdoc (4.3.0, 4.2.1)
498
+
499
+ responders (2.4.0)
500
+
501
+ rmagick (2.16.0)
502
+
503
+ sass (3.5.1, 3.4.23)
504
+
505
+ sass-listen (4.0.0)
506
+
507
+ sass-rails (5.0.6)
508
+
509
+ sdoc (0.4.2)
510
+
511
+ slop (3.6.0)
512
+
513
+ spring (2.0.2)
514
+
515
+ sprockets (3.7.1)
516
+
517
+ sprockets-rails (3.2.0)
518
+
519
+ test-unit (3.1.5)
520
+
521
+ thor (0.19.4)
522
+
523
+ thread_safe (0.3.6)
524
+
525
+ tilt (2.0.8, 2.0.7)
526
+
527
+ trollop (2.1.2)
528
+
529
+ turbolinks (5.0.1)
530
+
531
+ turbolinks-source (5.0.3, 5.0.0)
532
+
533
+ tzinfo (1.2.3)
534
+
535
+ uglifier (3.2.0, 3.1.13)
536
+
537
+ warden (1.2.7)
538
+
539
+ web-console (2.3.0)
540
+
541
+ xml-simple (1.1.5)
542
+
543
+ ```
544
+
545
+
546
+
547
+ mysqlが0.4.8になっているのですがこの場合gemfileのmysqlのバージョンを0.4.8に変更してbundle installすれば良いのでしょうか?
548
+
549
+ 一応、以下に現在のgemfileを添付します。
550
+
551
+
552
+
553
+ ```ここに言語を入力
554
+
555
+ source 'https://rubygems.org'
556
+
557
+
558
+
559
+ ruby '2.3.1'
560
+
561
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
562
+
563
+ gem 'rails', '4.2.5.1'
564
+
565
+ # Use mysql as the database for Active Record
566
+
567
+ gem 'mysql2', '0.3.18'
568
+
569
+ # Use SCSS for stylesheets
570
+
571
+ gem 'sass-rails', '~> 5.0'
572
+
573
+ # Use Uglifier as compressor for JavaScript assets
574
+
575
+ gem 'uglifier', '>= 1.3.0'
576
+
577
+ # Use CoffeeScript for .coffee assets and views
578
+
579
+ gem 'coffee-rails', '~> 4.1.0'
580
+
581
+ # See https://github.com/rails/execjs#readme for more supported runtimes
582
+
583
+ # gem 'therubyracer', platforms: :ruby
584
+
585
+
586
+
587
+ # Use jquery as the JavaScript library
588
+
589
+ gem 'jquery-rails'
590
+
591
+ # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
592
+
593
+ gem 'turbolinks'
594
+
595
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
596
+
597
+ gem 'jbuilder', '~> 2.0'
598
+
599
+ # bundle exec rake doc:rails generates the API under doc/api.
600
+
601
+ gem 'sdoc', '~> 0.4.0', group: :doc
602
+
603
+
604
+
605
+ # Use ActiveModel has_secure_password
606
+
607
+ # gem 'bcrypt', '~> 3.1.7'
608
+
609
+
610
+
611
+ # Use Unicorn as the app server
612
+
613
+ # gem 'unicorn'
614
+
615
+
616
+
617
+ # Use Capistrano for deployment
618
+
619
+ # gem 'capistrano-rails', group: :development
620
+
621
+
622
+
623
+ group :development, :test do
624
+
625
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
626
+
627
+ gem 'byebug'
628
+
629
+ end
630
+
631
+
632
+
633
+ group :development do
634
+
635
+ # Access an IRB console on exception pages or by using <%= console %> in views
636
+
637
+ gem 'web-console', '~> 2.0'
638
+
639
+
640
+
641
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
642
+
643
+ gem 'spring'
644
+
645
+ end
646
+
647
+ group :production, :staging do
648
+
649
+ gem 'rails_12factor'
650
+
651
+ end
652
+
653
+
654
+
655
+ gem 'devise'
656
+
657
+ gem 'carrierwave'
658
+
659
+ gem 'rmagick'
660
+
661
+ gem 'fog'
662
+
663
+ gem 'pry-rails'
664
+
665
+ gem 'google-analytics-rails'
666
+
667
+ gem 'payjp'
668
+
669
+
670
+
671
+ ```
672
+
673
+
674
+
675
+ よろしくお願いします。