$ brew cask create td-agent2
# /usr/local/Library/Taps/caskroom/homebrew-cask/Casks/td-agent2.rb
class TdAgent2 < Cask
version '2.0.2'
sha256 '00c090151f38ddecaf5174b5d31891fa8961375bc50b9537faec9e6728e2f51e'
last updated at 2014.04.14 | |
### Clicking links and buttons | |
click_link('id-of-link') | |
click_link('Link Text') | |
click_button('Save') | |
click_on('Link Text') # clicks on either links or buttons | |
click_on('Button Value') | |
### Interacting with forms |
$ brew cask create td-agent2
# /usr/local/Library/Taps/caskroom/homebrew-cask/Casks/td-agent2.rb
class TdAgent2 < Cask
version '2.0.2'
sha256 '00c090151f38ddecaf5174b5d31891fa8961375bc50b9537faec9e6728e2f51e'
# キーバインドを vi 風にする | |
setw -g mode-keys vi | |
## デフォルトのbind-key変更(お好みで) | |
set -g prefix C-t | |
unbind-key C-b | |
bind-key C-t send-prefix | |
# mouse mode | |
#set -g mode-mouse on |
# This file contains information which helps Meteor properly upgrade your | |
# app when you run 'meteor update'. You should check it into version control | |
# with your project. | |
notices-for-0.9.0 | |
notices-for-0.9.1 | |
0.9.4-platform-file | |
notices-for-facebook-graph-api-2 |
# This file contains information which helps Meteor properly upgrade your | |
# app when you run 'meteor update'. You should check it into version control | |
# with your project. | |
notices-for-0.9.0 | |
notices-for-0.9.1 | |
0.9.4-platform-file | |
notices-for-facebook-graph-api-2 | |
1.2.0-standard-minifiers-package | |
1.2.0-meteor-platform-split |
// file: ~/.eslintrc | |
// | |
// $ npm install --save-dev eslint-config-airbnb eslint-plugin-react eslint | |
// or | |
// $ npm install -g eslint-config-airbnb eslint-plugin-react eslint | |
{ | |
"parser": "babel-eslint", | |
"extends": "airbnb", |
<!-- client/main.html --> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Simple Memo</title> | |
</head> | |
<body> | |
<h1>Hello, Meteor World!</h1> | |
</body> |
meteor npm install --save react react-dom | |
meteor add [email protected] |
mkdir -p imports/ui/layouts | |
touch imports/ui/layouts/AppLayout.js |
mkdir -p imports/ui/components | |
touch imports/ui/components/Header.js |