Ryunosuke Sato

Results 17 issues of Ryunosuke Sato

The latter is deprecated since Ruby 2.1.0. ref: http://docs.ruby-lang.org/en/2.2.0/File.html#method-c-exists-3F And `File.exist?` works fine for older Ruby versions.

In Ruby 2.3, test-unit is removed from bundled gems. ref: https://bugs.ruby-lang.org/issues/9711

Even if some non-image files are uploaded to web server, it couldn't be previewed as markdown:<

rexml gem has not been default gem since Ruby 3.0. It is required in the following. https://github.com/drewblas/aws-ses/blob/v0.7.1/lib/aws/ses.rb#L1

FileUtils is not loaded automatically. We should require it before use. This PR fixes broken CI like the following: ``` Failures: 1) CarrierWave::Workers::StoreAsset#perform removes tmp directory on success Failure/Error: expect(FileUtils).to...

- A method that has `?` suffix should return boolean, but this method return an object that respond to `valid?`. - All other examples don't have `?`. - https://github.com/github/scientist/blob/8d9fd4ec676a0d3ba3be868b24415384108da2f0/README.md#L44 -...