sim_launcher 0.4.0 → 0.4.1.pre1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/.gitignore CHANGED
@@ -1,2 +1,3 @@
1
1
  .DS_Store
2
2
  pkg
3
+ native/*
data/.gitmodules CHANGED
@@ -1,6 +1,3 @@
1
1
  [submodule "vendor/iphonesim"]
2
2
  path = vendor/iphonesim
3
- url = git://github.com/moredip/iphonesim.git
4
- [submodule "vendor/ios-sim"]
5
- path = vendor/ios-sim
6
- url = https://github.com/phonegap/ios-sim.git
3
+ url = git://github.com/moredip/iphonesim.git
data/Rakefile CHANGED
@@ -1,17 +1,11 @@
1
1
  require 'bundler'
2
2
  Bundler::GemHelper.install_tasks
3
3
 
4
- desc "compile iphonesim binary"
5
- task "build_iphonesim" do
6
- sh 'xcodebuild -project vendor/iphonesim/iphonesim.xcodeproj/ clean build'
7
- cp 'vendor/iphonesim/build/Release/iphonesim', 'native/iphonesim'
8
- end
9
-
10
4
  desc "compile ios-sim binary"
11
5
  task "build_ios_sim" do
12
6
  native_dir = File.expand_path( '../native',__FILE__)
13
7
  Dir.mktmpdir do |tmp_dir|
14
- sh %Q{xcodebuild -project vendor/ios-sim/ios-sim.xcodeproj -configuration Debug SYMROOT='#{tmp_dir}' clean build}
8
+ sh %Q{xcodebuild -project vendor/iphonesim/ios-sim.xcodeproj -configuration Debug SYMROOT='#{tmp_dir}' clean build}
15
9
  FileUtils.cp( File.join(tmp_dir,'Debug','ios-sim'), native_dir )
16
10
  end
17
11
  end
@@ -1,3 +1,3 @@
1
1
  module SimLauncher
2
- VERSION = "0.4.0"
2
+ VERSION = "0.4.1.pre1"
3
3
  end
metadata CHANGED
@@ -1,8 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sim_launcher
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
5
- prerelease:
4
+ version: 0.4.1.pre1
5
+ prerelease: 6
6
6
  platform: ruby
7
7
  authors:
8
8
  - Pete Hodgson
@@ -46,7 +46,6 @@ files:
46
46
  - lib/sim_launcher/sdk_detector.rb
47
47
  - lib/sim_launcher/simulator.rb
48
48
  - lib/sim_launcher/version.rb
49
- - native/ios-sim
50
49
  - sim_launcher.gemspec
51
50
  homepage: http://rubygems.org/gems/sim_launcher
52
51
  licenses: []
@@ -63,9 +62,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
63
62
  required_rubygems_version: !ruby/object:Gem::Requirement
64
63
  none: false
65
64
  requirements:
66
- - - ! '>='
65
+ - - ! '>'
67
66
  - !ruby/object:Gem::Version
68
- version: '0'
67
+ version: 1.3.1
69
68
  requirements: []
70
69
  rubyforge_project:
71
70
  rubygems_version: 1.8.24
data/native/ios-sim DELETED
Binary file