hello, Lera
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# rake file to build iPhone Xcode project using CruiseControl.rb | |
require 'rubygems' | |
require 'rake' | |
class FailedTestsException < Exception;end | |
class FailedBuildException < Exception;end | |
class FailedCleanException < Exception;end | |
task :default => 'test:all' | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# isurvey simple server | |
require 'rubygems' | |
require 'sinatra' | |
require 'activerecord' | |
configure do | |
ActiveRecord::Base.establish_connection( | |
:adapter => 'sqlite3', | |
:database => 'isurvey.sqlite3') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#git ignore for XCode iPhone project | |
.DS_Store | |
*.swp | |
*~.nib | |
build/ | |
*.pbxuser | |
*.perspective |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
' How to run NUnit inside visual studio on each successful build | |
' Go Tools -> Macros -> Macro IDE -> Project Explorer/EnvironmentEvents module | |
' Paste text bello | |
' see how to setup NUnit external command http://blog.rwendi.com/CategoryView,category,NUnit.aspx | |
Dim WasSuccess = True | |
Private Sub BuildEvents_OnBuildDone(ByVal Scope As EnvDTE.vsBuildScope, ByVal Action As EnvDTE.vsBuildAction) Handles BuildEvents.OnBuildDone | |
If WasSuccess = True Then | |
DTE.ExecuteCommand("Tools.ExternalCommand1") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
// make it chmod +x and put it into ~/bin dir | |
require('jasmine'); | |
var target = ""; | |
if(process.argv[2]) { | |
target = process.argv[2] |