Ubuntu 15.10 npm 3.5.3 node 4.2.6
test-sourcemaps@ /tmp/my-project
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
| error = "<%= escape_javascript flash[:error] %>" | |
| unless error | |
| $('tr#<%= dom_id(@category) %>').fadeOut() | |
| else | |
| $('#content').prepend("<%= escape_javascript render(partial: 'flashes') %>") |
| #! /bin/sh | |
| source "$HOME/.rvm/scripts/rvm" | |
| app_name=$1 | |
| rvm default | |
| current_ruby=`rvm current` | |
| echo "Creating gemset ${app_name}..." | |
| rvm gemset create $app_name |
| # put this file to $HOME/.oh-my-zsh/custom/plugins/chpwd_profiles | |
| # and add plugin name to .zshrc: plugins=(... chpwd_profiles) | |
| function chpwd_profiles() { | |
| local -x profile | |
| zstyle -s ":chpwd:profiles:${PWD}" profile profile || profile='default' | |
| if (( ${+functions[chpwd_profile_$profile]} )) ; then | |
| chpwd_profile_${profile} | |
| fi |
| require 'active_support' | |
| module Connectable | |
| extend ActiveSupport::Concern | |
| def connect | |
| puts "connecting with #{self.class.params}" | |
| end | |
| class_methods do |
| <?php | |
| class User extends UserAbstract { | |
| public $old_password; | |
| public $auth_hash; | |
| public $usernameOnForum; |
| const webpack = require('webpack'); | |
| const WebpackDevServer = require('webpack-dev-server'); | |
| const config = require('../webpack.config'); | |
| const hotWebpackPort = process.env.HOT_WEBPACK_PORT || 3500; | |
| config.output.publicPath = `https://localhost:${hotWebpackPort}/assets/`; | |
| ['entry1', 'entry2'].forEach(entryName => { | |
| config.entry[entryName].push( | |
| 'webpack-dev-server/client?https://localhost:' + hotWebpackPort, | |
| 'webpack/hot/only-dev-server' |
Ubuntu 15.10 npm 3.5.3 node 4.2.6
test-sourcemaps@ /tmp/my-project
├─┬ [email protected]
│ ├─┬ [email protected]
│ │ ├── [email protected]
│ │ ├─┬ [email protected]
| [user] | |
| name = darkside | |
| email = [email protected] | |
| [color] | |
| diff = auto | |
| status = auto | |
| branch = auto | |
| [color "branch"] | |
| current = green | |
| local = yellow |
| { | |
| "caret_style": "phase", | |
| "color_scheme": "Packages/RailsCasts Colour Scheme/RailsCastsColorScheme.tmTheme", | |
| "default_line_ending": "unix", | |
| "detect_slow_plugins": false, | |
| "ensure_newline_at_eof_on_save": true, | |
| "file_exclude_patterns": | |
| [ | |
| ".tags*", | |
| "*.pyc", |
| <template> | |
| <transition name="fade" enter-active-class="fadeInDown" leave-active-class="fadeOutDown"> | |
| <div :class="cssClass" class="ui animated message"> | |
| <i @click="triggerClose(notification)" class="close icon"></i> | |
| <div v-if="notification.title" class="header">{{notification.title}}</div> | |
| <p>{{notification.text}}</p> | |
| </div> | |
| </transition> | |
| </template> |