I hereby claim:
- I am jaymiejones86 on github.
- I am jaymiejones86 (https://keybase.io/jaymiejones86) on keybase.
- I have a public key ASCAX71375M9gyF3z4nOV_SX2q1flBYLOqw5mGiA3kj3Ago
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
require 'hanami/interactor' | |
class CreateOrganisation | |
include Hanami::Interactor | |
def initialize(params) | |
params[:id] = NormalizeParameterName.format(params[:id]) | |
@params = params | |
@organisation = Organisation.new(@params) | |
end |
I have a podcast called Coder Catchup which you can find at http://codercatchup.com/ or on twitter https://twitter.com/codercatchup and I am approaching Episode 100 of the weekly podcast series I am doing.
The podcast is about spreading information to anyone who works on the web, things that may hopefully improve their career or open up other opportunities or thought processes.
For episode 100 I am seeking out various people in the web community and asking if they would mind answering 5 question that will be read out on the episode.
Would you mind answering these questions for me? All good if you do not wish to or cannot.
Drupal 8.1.10 released
a maintenance release which contains fixes for security vulnerabilities
https://www.drupal.org/blog/drupal-8110-released
Drupal 8.2.0 is now available
https://www.drupal.org/blog/drupal-8-2-0
Core | |
Drupal 8.2.0-rc1 is available for testing | |
https://www.drupal.org/blog/drupal-8-2-0-rc1 | |
Security Release 8.x | |
https://www.drupal.org/SA-CORE-2016-004 | |
Articles | |
Base themes without the bloat |
Drupal 8.2.0 will be released October 5; beta begins week of August 3
https://groups.drupal.org/node/512705
7 New Improvements You'll See in Drupal 8.2
https://www.ostraining.com/blog/drupal/drupal-82
TLDR: Page Builder in Core!
Drupal April/May 2016
Core Drupal 8.0.6 This is also the final scheduled patch release of the 8.0.x series. The next stable release planned for Drupal 8 will be the Drupal 8.1.0 minor release, which is scheduled for April 20, 2016. Sites should plan to update to 8.1.0 once it is released in order to continue receiving bug and security fixes. A release candidate will be available for testing soon. https://www.drupal.org/drupal-8.0.6-release-notes
Migration update for Drupal 8.1 http://mikeryan.name/blog/mikeryan/migration-update-for-drupal-8-1
// After last line in config where the require is add | |
add_filter('xmlrpc_enabled', '__return_false'); |
scenario 'I can select an option through js rendered element', js: true do | |
fill_in 'email', with: '[email protected]' | |
script = "$('#role').val('admin')" | |
page.execute_script(script) | |
page.execute_script("React.addons.TestUtils.Simulate.change(document.getElementById('role'))") | |
click_button 'Add User' | |
expect(unread_emails_for('[email protected]').size).to eq(1) | |
end |
bundle exec brakeman -o security.html | |
bundle exec rails_best_practices --output-file best_practices.html -f html . | |
open security.html | |
open best_practices.html | |
bundle-audit |