├── .github └── workflows │ ├── dynamic-readme.yml │ └── dynamic-security.yml ├── .gitignore ├── .ruby-version ├── .travis.yml ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── SECURITY.md ├── app └── views │ └── breadcrumbs │ └── _breadcrumbs.html.erb ├── croutons.gemspec ├── lib ├── croutons.rb └── croutons │ ├── breadcrumb.rb │ ├── breadcrumb_trail.rb │ ├── controller.rb │ ├── engine.rb │ └── version.rb └── spec ├── features └── breadcrumbs_spec.rb ├── lib └── croutons │ ├── breadcrumb_spec.rb │ └── breadcrumb_trail_spec.rb ├── spec_helper.rb └── support └── rails_app.rb /.github/workflows/dynamic-readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/croutons/HEAD/.github/workflows/dynamic-readme.yml -------------------------------------------------------------------------------- /.github/workflows/dynamic-security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/croutons/HEAD/.github/workflows/dynamic-security.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .bundle/ 2 | pkg/ 3 | spec/dummy_app 4 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.5.3 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/croutons/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/croutons/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/croutons/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/croutons/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/croutons/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/croutons/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/croutons/HEAD/Rakefile -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/croutons/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/views/breadcrumbs/_breadcrumbs.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/croutons/HEAD/app/views/breadcrumbs/_breadcrumbs.html.erb -------------------------------------------------------------------------------- /croutons.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/croutons/HEAD/croutons.gemspec -------------------------------------------------------------------------------- /lib/croutons.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/croutons/HEAD/lib/croutons.rb -------------------------------------------------------------------------------- /lib/croutons/breadcrumb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/croutons/HEAD/lib/croutons/breadcrumb.rb -------------------------------------------------------------------------------- /lib/croutons/breadcrumb_trail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/croutons/HEAD/lib/croutons/breadcrumb_trail.rb -------------------------------------------------------------------------------- /lib/croutons/controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/croutons/HEAD/lib/croutons/controller.rb -------------------------------------------------------------------------------- /lib/croutons/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/croutons/HEAD/lib/croutons/engine.rb -------------------------------------------------------------------------------- /lib/croutons/version.rb: -------------------------------------------------------------------------------- 1 | module Croutons 2 | VERSION = "0.0.2" 3 | end 4 | -------------------------------------------------------------------------------- /spec/features/breadcrumbs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/croutons/HEAD/spec/features/breadcrumbs_spec.rb -------------------------------------------------------------------------------- /spec/lib/croutons/breadcrumb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/croutons/HEAD/spec/lib/croutons/breadcrumb_spec.rb -------------------------------------------------------------------------------- /spec/lib/croutons/breadcrumb_trail_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/croutons/HEAD/spec/lib/croutons/breadcrumb_trail_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/croutons/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/rails_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/croutons/HEAD/spec/support/rails_app.rb --------------------------------------------------------------------------------