0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Rails windowsからMacへの移行

Last updated at Posted at 2019-11-13

awsのクラウドIDEで、railsの環境をwindowsからmacへ移行する際の作業について述べる。
まず、awsのコンソールにログインし、cloud9のIDEを開く。そして、これまで作成していたアプリのディレクトリ下にあるgemfileを開く。

Gemfile
source 'https://rubygems.org'

.
.

group :production do
  gem 'pg', '0.20.0'
  gem 'fog', '1.42'
end

# Windows環境ではtzinfo-dataというgemを含める必要があります
# gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

一番下のコメントアウトしている部分はwindows使用時はコメントアウトしていなかったが、mac環境ではここの記述をコメントアウトし、ターミナルでbundle installすれば、これまで作成したアプリのファイル群をmacでもちゃんと機能させることができる。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?