I hereby claim:
- I am mattgibson on github.
- I am mattgibson (https://keybase.io/mattgibson) on keybase.
- I have a public key whose fingerprint is 3050 E6FB 37F1 6961 B66B 1F17 B221 45D2 23E2 C2FD
To claim this, I am signing this object:
| id | |
| 186487 |
| # To set up: | |
| # | |
| # Add this file to /lib/tasks/tddium.rake | |
| # | |
| # Create an IAM user on AWS with no special policies, then add the access | |
| # key and secret key to your Tddium suite config like this: | |
| # | |
| # cd /your/local/app/directory | |
| # tddium config:add suite AWS_ACCESS_KEY yourkeyhere | |
| # tddium config:add suite AWS_SECRET_KEY yoursecrethere |
| Scenario: Navigating to the new activity form | |
| Given I am on the course page | |
| When I click on the new activity button | |
| And I enter the details of a new activity and save the form | |
| Then I should be on the page for the new activity | |
| And I should see the details of the new activity on the page |
I hereby claim:
To claim this, I am signing this object:
| # Setup: | |
| # tddium config:add suite EY_API_TOKEN xxxxxxxx | |
| # (take EY_API_TOKEN value from ~/.eyrc) | |
| # tddium config:add suite EY_DEPLOY_KEY yyyyyyy | |
| # (EY_DEPLOY_KEY value is Base64-encoded content of your ~/.ssh/id_rsa OR any other ssh key authorised for a given EY env) | |
| # To get a new key: $ ssh-keygen -t rsa | |
| # To base 64 encode it without line breaks and copy to the clipboard: $ openssl base64 < ey-key | tr -d '\n' | pbcopy | |
| # Now add the public key to Engine Yard via the GUI, * AND APPLY CHANGES TO THE ENVIRONMENT * | |
| # | |
| # Be aware that the command line tddium thing will connect to the remote suite based on the name of the local |
| # To be run from within the block folder | |
| git archive -o ../block_ajax_marking-2.1.5b3.zip --prefix=ajax_marking/ MOODLE_22_STABLE | |
| # Changelog URL for the plugins DB GUI | |
| https://github.com/mattgibson/moodle-block_ajax_marking/commits/MOODLE_22_STABLE | |
| # Alternative download URL for the plugins DB GUI | |
| https://github.com/mattgibson/moodle-block_ajax_marking/zipball/2.1.5b4 |
| # Example scenario: two Moodles - one 2.1.x, one 2.2.x. Fix is on 2.2.x and we want to backport it | |
| # to 2.1.x. Each moodle is a separate repo roughly following the gitflow approach and there is a | |
| # separate develop and release branch for each one. | |
| # Push to gihub from the repo that has the fix branch | |
| # Fetch from github from the repo that needs it (assuming we have one repo for each release branch) | |
| # Checkout the fix branch as a new local branch | |
| git checkout -b localfix origin/fixbranch |
| if ($CFG->debug == DEBUG_DEVELOPER) { | |
| $debugquery = block_ajax_marking_debuggable_query($sql, $params); | |
| } |