Specify Ruby (not Rails) project

I have a plain Ruby project (not Rails) that CircleCI seems to be assuming is a Rails project – its running rake db:create and failing. This might be because there is a config/database.yml file. I could override these database commands in circle.yml, but I’d prefer to be able to specify that its a plain Ruby project.

Is there a way to specify a project as plain Ruby (not Rails) in circle.yml?

No, you would need to override the phases were you don’t want inferred commands to run.

1 Like