infinitered / cdq

Core Data Query for RubyMotion
MIT License
172 stars 35 forks source link

cdq init breaks Rakefile if no terminating newline #135

Closed spnkr closed 4 years ago

spnkr commented 7 years ago

e.g. if this is your rakefile before running cdq init via the CLI:

desc "..."
task "some-task" do
  #....
end

it does this:

desc "..."
task "some-task" do
  #...
endtask :"build:simulator" => :"schema:build"
task :"build:device" => :"schema:build"

but should do this

desc "..."
task "some-task" do
  #...
end
task :"build:simulator" => :"schema:build"
task :"build:device" => :"schema:build"