This file contains 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
namespace :db do | |
# Prevent dropping Production DB | |
# ... or terminate postgres connections before attempting to drop in non production environment | |
task :drop => [:abort_in_production, :terminate_pg] | |
task :abort_in_production => :environment do | |
abort "Can't drop #{Rails.env} DB!" if Rails.env.production? | |
end |
This file contains 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
# Extends Array class with a new flatten method | |
# Type checking is not done since this is extending Array | |
# Uses simple recursion | |
class Array | |
def re_flatten | |
flat = [] | |
self.each do |a| | |
if a.is_a?(Array) |
This file contains 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
--- | |
name: Google Calendar | |
group: google-apps | |
base_url: https://www.google.com/calendar | |
allowed_hosts: | |
- google.com | |
- accounts.google.com | |
requires_plugin: true | |
validation_method: script | |
login_type: email |
This file contains 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
<samlp:AuthnRequest | |
xmlns:samlp="urn:oasis:names:tc:SAML:2.0:protocol" ID="_ca41734ef91362577eb1" Version="2.0" IssueInstant="2014-11-03T22:44:43Z" ProtocolBinding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST" AssertionConsumerServiceURL="http://bitium-sugarcrm.keewooi.com/index.php?module=Users&action=Authenticate"> | |
<saml:Issuer | |
xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion">php-saml | |
</saml:Issuer> | |
<samlp:NameIDPolicy | |
xmlns:samlp="urn:oasis:names:tc:SAML:2.0:protocol" Format="urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress" AllowCreate="true"> | |
</samlp:NameIDPolicy> | |
<samlp:RequestedAuthnContext | |
xmlns:samlp="urn:oasis:names:tc:SAML:2.0:protocol" Comparison="exact"> |
This file contains 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
--- | |
name: Webex Enterprise | |
base_url: https://{subdomain}.webex.com/ | |
login_type: username | |
installation: | |
fields: | |
- name: subdomain | |
notes: within_frame not working reliably with webkit and frameset | |
spider: | |
driver: poltergeist |
This file contains 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
--- | |
name: Webex | |
base_url: https://meetings.webex.com | |
login_type: email | |
authentication_types: | |
- browser | |
launch_timeout: 60 | |
spider: | |
driver: webkit | |
actions: |
This file contains 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 'omniauth-oauth2' | |
module OmniAuth | |
module Strategies | |
class Smartsheet < OmniAuth::Strategies::OAuth2 | |
# Give your strategy a name. | |
option :name, "smartsheet" | |
# This is where you pass the options you would pass when | |
# initializing your consumer from the OAuth gem. |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<xmlrequest> | |
<request> | |
<control> | |
<senderid>Bitium</senderid> | |
<password>5V4da3RkhB</password> | |
<controlid>bitium</controlid> | |
<uniqueid>false</uniqueid> | |
<dtdversion>2.1</dtdversion> | |
</control> |
This file contains 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
schemas: | |
users: | |
attributes: | |
- name: request | |
attributes: | |
- name: control | |
attributes: | |
- name: senderid | |
value: $account_login | |
- name: password |
This file contains 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
(function ($) { | |
'use strict'; | |
$.fn.waitFor = function (options) { | |
options = options || {}; // Note: all arguments default | |
options.timeout = options.timeout || 100; // Note: default timeout | |
var el; | |
var selector = this.selector; | |
function waitForElement(timeout) { | |
var $elements = $(selector); |
NewerOlder