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
| <error-page> | |
| <error-code>404</error-code> | |
| <location>/404.html</location> | |
| </error-page> |
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
| #!/bin/bash | |
| # Create temp folder to download rpms | |
| mkdir /tmp/rpms | |
| cd /tmp/rpms | |
| # Download HTOP, ATOP, MOST | |
| yum install htop atop most -y |
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
| #!/bin/bash | |
| clear | |
| echo -e "Preparing to start ...\n" | |
| cd /Users/gelias/workspace/ruby | |
| echo -e "removing oldest version ... \n" | |
| rm -rf /Users/gelias/workspace/ruby/cardapiaria | |
| echo -e "using ruby version 1.9.3 and Rails 3.2" | |
| rvm 1.9.3@rails32 |
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 'rubygems' | |
| require 'watir-webdriver' | |
| require 'rspec' | |
| describe "Look for browser elements" do | |
| FIRST_NAME = 'Guilherme' | |
| before(:each) {puts 'inicou'} | |
| after(:each) {@firefox.close unless @firefox.nil?} |
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 'watir-webdriver' | |
| firefox_instance = Watir::Browser.new :firefox | |
| firefox_instance.goto 'http://bit.ly/M1mjNB' | |
| firefox_instance.close |
NewerOlder