`
- Website: https://stimulusjs.org/
- GitHub repo: https://github.com/stimulusjs/stimulus
- Handbook: https://stimulusjs.org/handbook/introduction
- Discourse: https://discourse.stimulusjs.org/
| # http://stackoverflow.com/questions/8507798/rails-3-1-plugin-gem-dummy-test-app-rspec | |
| # http://namick.tumblr.com/post/17663752365/how-to-create-a-gemified-plugin-with-rails-3-2-rspec | |
| rails plugin new plugin_name --skip-test-unit --dummy-path=spec/dummy | |
| cd plugin_name | |
| # Add rspec-rails to gemspec dev deps | |
| # s.add_development_dependency "rspec-rails" | |
| bundle install |
| class ApplicationController < ActionController::Base | |
| include I18nHelper | |
| end |
`
| // .storybook/main.js | |
| // | |
| // this module makes the assumption that | |
| // the local host is accessible at http://localhost:3001" | |
| let fs = require('fs'); | |
| module.exports = { | |
| stories: ['../spec/components/**/*.stories.json'], | |
| addons: [ |