Jacek Tomaszewski

Results 81 comments of Jacek Tomaszewski

I added such method to my ApplicationController: ``` rb def staccato_client_id session["staccato.client_id"] ||= cookies["_ga"].split(".").last(2).join(".") if cookies["_ga"] session["staccato.client_id"] ||= Staccato.build_client_id end ``` This will parse the client_id which is set automatically...

Yeah, you're right. You can fix it in 2 ways (see https://github.com/jtomaszewski/ionic-cordova-gulp-seed/blob/master/gulpfile.coffee#L28): 1. define ENV variable LOCAL_IP (f.e. `LOCAL_IP="127.0.0.1" gulp) 2. modify gulpfile.coffee and define LOCAL_IP manually

Seems like most of the tasks are working. Try running them 1by1 to see which triggers the error. Maybe gulp watch ? (livereload server).

OK, then remove the weinre completely from the gulp 'default' task - it's a remote debugger that isn't really needed.

It runs the web server, but also stuff like live reload server and weinre debugger server.

`gulp server` (which is included in the default `gulp` command) runs the server by default on the 4400 port - so you can visit localhost:4400 in your browser. You can...

What would be the advantage of such solution? Do we gain anything that we don't have in the current build process?

Yeah, but in Ionic apps propably: - you will load all the .js files from ./app/ directory anyway (if not, why would you have them there?) - all the files...

Unfortunately I don't use nor have Windows at this moment. Anyone wants to make a pull request with it?

I guess another way of doing this would be having a buildkite plugin, that before/after a deploy is done, checks commit messages between `PREV_VERSION...CURRENT_VERSION`, scans them for jira ticket IDs,...