2014-08-01から1ヶ月間の記事一覧
↓ こちらのとおりです。 WebStorm/PhpStorm メモ - 自動保存を停止したい - {u:b} うーん、あまり変わらない気がする。別のところに原因がありそう。
インストール % npm install jit-grunt -D % npm uninstall load-grunt-tasks -D jit-gruntを使うようにGruntfile.coffeeを書き換え。 後、watchにspawn: falseも追加しといた。 #Gruntfile.coffee module.exports = (grunt) -> # Load grunt tasks automati…
AngularJSのminify対策をしてくれるアレ。 例によって、generator-angularで作ったプロジェクトでの話。 grunt-ng-annotateをインストールしてgrunt-ngminを外して、記述をngminからngAnnotateにしただけでいけました。 % npm install grunt-ng-annotate -D …
まんまこれ↓ CoffeeScript で AngularJS のテストを書くときに気をつけること - Qiita 'use strict' describe 'Service: AwesomeInterceptor', -> httpProvider = {} # load the service's module beforeEach module 'myApp',($httpProvider)-> httpProvider…
そっけないです..... karma-spec-reporterをインストールして設定する。 % npm install karma-spec-reporter -D # karma.conf.coffee plugins: [ 'karma-phantomjs-launcher' 'karma-jasmine' 'karma-coffee-preprocessor' + 'karma-spec-reporter' 'karma-c…
Action Controller Overview — Ruby on Rails Guides ↑ここに書いてある。 config/initializers/wrap_parameters.rbはRails4.1だとデフォルトで多分こうなっている。↓ Be sure to restart your server when you modify this file. # This file contains sett…
ココを見ましょう。 ありがとうございます。 やった内容 // package.json "karma-coverage": "git+https://github.com/mokemokechicken/karma-coverage.git#master", % npm l #karma.conf.js 'karma-phantomjs-launcher' 'karma-jasmine' 'karma-coffee-prep…
generator-angularで作ったプロジェクトにProtractorでのe2eテストを入れたやつをVagrant環境でアレする。 コレの続き https://github.com/exratione/protractor-selenium-server-cookbook:このクックブックを追加してよしなに設定する。 で、node_modules/p…
Yeomanで作ったプロジェクト関係なくて、単にVagrant環境で開発する時にホスト側のブラウザとかで確認したい時の話。 こういう場合にgrunt-contrib-connectの設定で、こういうのを見かける↓ #Gruntfile.coffee connect: options: port: 9000 livereload: 357…
generator-angularはkarma,jasmineのtestは用意されているけど、e2eテストはAngular Scenario Runner(非推奨)が入ってはいるものの使えるようになってないので、Protractorを入れる。 前提 yo angular --coffee でフロントエンド部を生成済みとする*1。 作業…
grunt-connect-proxyを使って、rails server と、grunt serve の2つを叩いてLiveReloadで開発出来るようにしようという話。 あとフロント側をビルドするとRailsのpublicディレクトリに静的ファイルとして配備するように。 RailsのAsset PipelineにAngularJS…
メモ。 Devise使用時にroutesでadminとかのnamespaceにdevise_forを入れると,Devise::SessionsController等で authenticate_user! が authenticate_admin_user! とかなってしまう*1 # config/routes.rb namespace :admin do devise_for :users, controllers:…
多くの皆様のおかげでなんとかやれております。今後共よろしくお願い致します。