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
(function ($, Namespace) { | |
'use strict'; | |
var slice = Array.prototype.slice; | |
function widget (widgetName, constructor) { | |
var namespace = 'fifty.' + widgetName; | |
return function (options) { | |
var $el = $(this), | |
args = slice.call(arguments), |
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
(function(App, Array) { | |
'use strict'; | |
var slice = Array.prototype.slice; | |
function Events () { | |
var events = {}; | |
function on (eventName, callback, context) { | |
if (!events[eventName]) { | |
events[eventName] = []; |
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 gulp = require('gulp'); | |
var concat = require('gulp-concat'); | |
var uglify = require('gulp-uglify'); | |
var bump = require('gulp-bump'); | |
var git = require('gulp-git'); | |
var del = require('del'); | |
var header = require('gulp-header'); | |
var rename = require("gulp-rename"); | |
var runSequence = require('run-sequence'); |
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
{ | |
"name": "modulejs", | |
"version": "0.0.1", | |
"description": "A new module", | |
"license": "MIT", | |
"private": true, | |
"authors": [ | |
"mparke" | |
], | |
"devDependencies": { |
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
// Karma configuration | |
module.exports = function(config) { | |
config.set({ | |
// base path, that will be used to resolve files and exclude | |
basePath: '', | |
// frameworks to use | |
frameworks: ['jasmine'], |
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
python3 get-pip.py | |
pip is configured with locations that require TLS/SSL, however the ssl module in Python is not available. | |
Collecting pip | |
Could not fetch URL https://pypi.python.org/simple/pip/: There was a problem confirming the ssl certificate: Can't connect to HTTPS URL because the SSL module is not available. - skipping | |
Could not find a version that satisfies the requirement pip (from versions: ) | |
No matching distribution found for pip |
OlderNewer