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
| myFunction = (arg1,arg2) -> |
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
| var day; | |
| if (day == "Monday" || day == "Tuesday" || day == "Wednesday" || day == "Thursday") { | |
| do_scream(); | |
| pull_hair_out(); | |
| } else { | |
| relax(); | |
| go_camping(); | |
| } |
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
| if day="Monday" or "Tuesday" or "Wednesday" or "Thursday" | |
| do_scream() | |
| pull_hair_out() | |
| else | |
| relax() | |
| go_camping() |
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
| AlbacoreDemo | |
| - AlbacoreDemo | |
| - AlbacoreDemo.Tests | |
| - AlbacoreDemo.sln |
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 | |
| foo | |
| bar | |
| $> rake foo | |
| foo | |
| $> rake bar | |
| bar |
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
| 1.0.0.0 |
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
| require 'albacore' | |
| require 'version_bumper' | |
| Albacore.configure do |config| | |
| config.mstest.command = "C:/Program\ Files\ (x86)/Microsoft Visual Studio 10.0/Common7/IDE/mstest.exe" | |
| config.msbuild.targets = [ :Clean, :Build ] | |
| end | |
| task :default => [:msbuild, :mstest, :output] |
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
| Albacore.configure do |config| | |
| config.mstest.command = "C:/Program\ Files\ (x86)/Microsoft Visual Studio 10.0/Common7/IDE/mstest.exe" | |
| config.msbuild.targets = [ :Clean, :Build ] | |
| end |
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
| output :output do |out| | |
| out.from 'AlbacoreDemo' | |
| out.to 'deploy' | |
| out.file 'Web.Debug.config', :as => 'Web.config' | |
| out.file 'global.asax' | |
| out.file 'favicon.ico' | |
| ['bin', 'content', 'images', 'scripts', 'views'].each do |d| | |
| out.dir d |
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
| msbuild :msbuild => [:assemblyinfo] do |msb| | |
| # snip | |
| end |