LoginSignup
1
0

More than 5 years have passed since last update.

railsでファイルのpathやURLをいい感じに書く

Last updated at Posted at 2019-04-07

ありがちな書き方

  • 文字列を結合する
  • /を自分で書かなきゃでつらい

"http://www.example.com" + "/tmp" + "/abc.csv"
=> "http://www.example.com/tmp/abc.csv"

Fileを使用する

  • 割といい感じ
> File.join("http://www.example.com", "tmp", "abc.csv")
=> "http://www.example.com/tmp/abc.csv"

Pathnameを使う

  • オシャレにかけます🙆‍♀️
> (Pathname("http://www.example.com") / "tmp" / "abc.csv").to_s
=> "http://www.example.com/tmp/abc.csv"
1
0
2

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
1
0