Remove spec files from framework target and improve task descriptions

This commit is contained in:
Mark Villacampa
2014-08-27 18:13:55 +02:00
parent 9836208853
commit dd3bf53675
3 changed files with 2 additions and 11 deletions

View File

@@ -37,7 +37,7 @@ require 'motion/project'
require 'motion/project/template/ios-extension-config'
require 'motion/project/template/ios-extension-builder'
desc "Build the project, then run the simulator"
desc "Build the simulator version"
task :default => :"build:simulator"
desc "Build everything"

View File

@@ -37,7 +37,7 @@ require 'motion/project'
require 'motion/project/template/ios-framework/config'
require 'motion/project/template/ios-framework/builder'
desc "Build the project, then run the simulator"
desc "Build the simulator version"
task :default => :"build:simulator"
desc "Build everything"

View File

@@ -1,9 +0,0 @@
describe "Application '<%= name %>'" do
before do
@app = UIApplication.sharedApplication
end
it "has one window" do
@app.windows.size.should == 1
end
end