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
well always | |
but our vendor files really should be minified | |
Currently we had to patch JQuery manually | |
which caused a minified jquery to become full blown | |
however minifying the entire app is probably not safe | |
so the dependencies should be | |
I know how to minify it in the settings, but I have never split it up fine grained . | |
So I wonder if it is even possible. | |
Otherwise we may need to move to grunt | |
Rich Downie |
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
Before do | |
@driver = Selenium::WebDriver.for :chrome | |
@domain = "https://google.com" | |
@time = 2 | |
end |
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
2014-04-14T12:58:06.013042+00:00 app[web.1]: Processing by MetricsController#dropin as HTML | |
2014-04-14T12:58:06.013042+00:00 app[web.1]: Parameters: {"scenario"=>"features/Advantage.feature:11", "browser"=>"chrome"} | |
2014-04-14T12:58:06.122036+00:00 app[web.1]: Completed 500 Internal Server Error in 109ms | |
2014-04-14T12:58:06.124068+00:00 app[web.1]: | |
2014-04-14T12:58:06.124068+00:00 app[web.1]: ActiveRecord::StatementInvalid (PG::InsufficientPrivilege: ERROR: permission denied for relation metrics | |
2014-04-14T12:58:06.124068+00:00 app[web.1]: : INSERT INTO "metrics" ("browser", "comment", "created_at", "exception", "name", "scenario", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"): | |
2014-04-14T12:58:06.124068+00:00 app[web.1]: app/controllers/metrics_controller.rb:4:in `dropin' | |
2014-04-14T12:58:06.124068+00:00 app[web.1]: | |
2014-04-14T12:58:06.124068+00:00 app[web.1]: |
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
richdownie@mbp ~/code/cyborg (git::master) $ heroku pg:info | |
=== HEROKU_POSTGRESQL_WHITE_URL (DATABASE_URL) | |
Plan: Dev | |
Status: available | |
Connections: 1 | |
PG Version: 9.2.7 | |
Created: 2013-05-17 13:54 UTC | |
Data Size: 8.7 MB | |
Tables: 7 | |
Rows: 3097/10000 (In compliance) |
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
richdownie@mbp ~/code/cyborg (git::master) $ heroku run rake db:reset RAILS_ENV=production | |
Running `rake db:reset RAILS_ENV=production` attached to terminal... up, run.1676 | |
Your Gemfile lists the gem cucumber (>= 0) more than once. | |
You should probably keep only one of them. | |
While it's not a problem now, it could cause errors if you change the version of just one of them later. | |
Your Gemfile lists the gem selenium-webdriver (>= 0) more than once. | |
You should probably keep only one of them. | |
While it's not a problem now, it could cause errors if you change the version of just one of them later. | |
Your Gemfile lists the gem rspec (>= 0) more than once. | |
You should probably keep only one of them. |
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
require 'blackboxd' | |
require 'cucumber' | |
require 'selenium-webdriver' | |
require 'rspec' | |
Before do | |
@driver = Selenium::WebDriver.for :chrome | |
@time = 15 | |
end |
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
Windows Users Get Started! | |
Install chocolatey (instructions on chocolatey.org) | |
At a command prompt: | |
> cinst gitextensions | |
> cinst ruby | |
> cinst gow | |
> cinst SeleniumChromeDriver2 | |
> cinst IEDriverServer |
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
gem 'cucumber' | |
gem 'rspec' | |
gem 'page-object' | |
gem 'thor' | |
gem 'gmail' | |
gem 'httparty' | |
gem 'twitter' | |
gem 'twilio-ruby'% |
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
What I Test with: | |
gem 'cucumber' | |
gem ‘selenium-webdriver | |
gem 'rspec' | |
gem 'page-object' | |
gem 'gmail' | |
gem 'httparty' | |
gem 'twitter' | |
gem 'twilio-ruby' | |
gem ‘ruby-jmeter’ |
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
$ brew install caskroom/cask/brew-cask | |
$ brew cask install licecap |