diff --git a/lib/motion/project/template/ios.rb b/lib/motion/project/template/ios.rb index b7e5b909..fe2f11c9 100644 --- a/lib/motion/project/template/ios.rb +++ b/lib/motion/project/template/ios.rb @@ -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 app’s 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 doesn’t 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 diff --git a/lib/motion/util/version.rb b/lib/motion/util/version.rb index bd94886c..96f45c17 100644 --- a/lib/motion/util/version.rb +++ b/lib/motion/util/version.rb @@ -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 don’t + # 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