Replace all pretty quotes with ASCII.

This commit is contained in:
Eloy Durán
2014-03-04 19:05:27 +01:00
committed by Watson
parent 404a28da83
commit 4e13d3706a
2 changed files with 3 additions and 3 deletions

View File

@@ -65,7 +65,7 @@ task :simulator do
target = ENV['target']
if target && Motion::Util::Version.new(target) < deployment_target
App.fail "It is not possible to simulate an SDK version (#{target}) " \
"lower than the apps deployment target (#{deployment_target})"
"lower than the app's deployment target (#{deployment_target})"
end
target ||= App.config.sdk_version
@@ -255,7 +255,7 @@ namespace :profile do
task :device do
ENV['__USE_DEVICE_INT__'] = '1'
# Create a build that allows debugging but doesnt start a debugger on deploy.
# Create a build that allows debugging but doesn't start a debugger on deploy.
App.config.entitlements['get-task-allow'] = true
ENV['install_only'] = '1'
Rake::Task['device'].invoke

View File

@@ -17,7 +17,7 @@ module Motion; module Util
@segments ||= @version.split('.').map(&:to_i)
end
# This is pretty much vendored straight from RubyGems, except we dont
# This is pretty much vendored straight from RubyGems, except we don't
# care about string segments for our purposes.
#
# https://github.com/rubygems/rubygems/blob/81d806d818baeb5dcb6398ca631d772a003d078e/lib/rubygems/version.rb