GardenParty a été mis en ligne dans une version utilisable, mais toujours en développement.
- Language: Français
- License: CC BY-NC-SA 2.0
- Published on: 09 Dec 2020 07:52 AM
- SFW:
- Projects: Garden Party
- Tags: No tags
Legal stuff about this site and your private life:
If you're not OK with this, move your way.
Change description...
GardenParty a été mis en ligne dans une version utilisable, mais toujours en développement.
A few weeks after we started this projects and we have news!
OpenSource webapp to help in garden management.
Le Manuel pratique de la culture maraîchère de Paris est un livre de 1845 faisant état de la culture intensive réalisée par les maraîchers de Paris. Ce projet est lereformattage de cet ouvrage tombé dans le domaine public, au format LaTeX.
ajout de section "Git add -p, késako ?"
rephrasage
typos et rephrasage
Depuis deux ans maintenant, je travaille régulièrement avec l'équipe d'Opus Codium. Nous avons un workflow concernant la gestion de nos dépôts Git que je souhaitais partager avec vous.
The Experiments Labs engine was a good exercise, but I have no more time to spend on it. It will be archived and the website will become a standard Rails application.
Small jigsaw game where you have to swap tiles to reconstruct an image.You can use your own images or select one in a set from Wikimedia.
Rails: Check Pundit authorization in RSpec
Pundit provide two helper methods to help you ensure the actions are authorized/scoped: verify_authorized
and verify_policy_scoped
. They are meant to be used in an after_action
hook.
As the check is made after the action, I see no point of using it in production, so I use it in RSpec:
# rails_helper.rb
# ...
config.before(:suite) do
FactoryBot.create :user, :known
ApplicationController.send(:after_action, :verify_authorized, {except: [:index]})
ApplicationController.send(:after_action, :verify_policy_scoped, {only: [:index]})
end
# ...
This way, it's still checked during all the tests using controllers.
Rail: sending emails via a rake task won't work if you use the_mail.deliver_later
. Use the_mail.deliver
, instead.
Keep in mind that .deliver
will be blocking in the context of the Rails server.
I heard that finding names for projects is "the hardest thing in development, after cache invaliadation". And that's right.
"Site compare" was a bad name because of two things: it compares sites, that's true. But it does not compare sites. So that's false.
"Capyxel"? After all, that does not mean anything, but it's about Capybara and pixels. Without being too obvious. So why not?
Change the project name to "Capyxel"
Fed up of searching for document examples?
Set of Application templates used to bootstrap projects.
Tool to compare two websites with screenshots diff.
This is a compilations of notes that leads to the setup of a control repo managed with r10k and the use of Hiera.
This is a compilation of notes that leads to an installation of a Puppet server on an Ubuntu server 18.04.
Typos
It's all about switching from Gettext_i18n_rails
to YAML translations in a Rails engine.