Skip to content

Instantly share code, notes, and snippets.

View sgomezglobant's full-sized avatar
💭
Web UI Architect at @globant

Sebastian Gomez sgomezglobant

💭
Web UI Architect at @globant
View GitHub Profile
@sgomezglobant
sgomezglobant / test
Created December 21, 2017 15:50
test
before_all do |lane|
sh("rm -rf ../*.xcarchive")
sh("rm -rf ../*.ipa")
sh("rm -rf ../*.zip")
# Make sure our directory is clean, except for changes Fastlane has made
clean_build_artifacts
@sgomezglobant
sgomezglobant / test
Created December 21, 2017 15:50
test
before_all do |lane|
sh("rm -rf ../*.xcarchive")
sh("rm -rf ../*.ipa")
sh("rm -rf ../*.zip")
# Make sure our directory is clean, except for changes Fastlane has made
clean_build_artifacts
@sgomezglobant
sgomezglobant / README.md
Created June 16, 2017 17:32 — forked from joyrexus/README.md
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})