├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ ├── dynamic-readme.yml │ └── dynamic-security.yml ├── .gitignore ├── .rspec ├── Appraisals ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── SECURITY.md ├── bin ├── bundle └── setup ├── flutie.gemspec ├── gemfiles ├── rails_6.1.gemfile ├── rails_7.0.gemfile ├── rails_7.1.gemfile ├── rails_7.2.gemfile ├── rails_8.0.gemfile └── rails_main.gemfile ├── lib ├── flutie.rb └── flutie │ ├── body_class.rb │ ├── body_class_helper.rb │ ├── page_title.rb │ ├── page_title_helper.rb │ ├── page_title_presenter.rb │ ├── railtie.rb │ └── version.rb └── spec ├── fake_app.rb ├── helpers ├── body_class_helper_spec.rb └── page_title_helper_spec.rb ├── rails_helper.rb └── spec_helper.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/dynamic-readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/.github/workflows/dynamic-readme.yml -------------------------------------------------------------------------------- /.github/workflows/dynamic-security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/.github/workflows/dynamic-security.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /Appraisals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/Appraisals -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/Rakefile -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/bin/setup -------------------------------------------------------------------------------- /flutie.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/flutie.gemspec -------------------------------------------------------------------------------- /gemfiles/rails_6.1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/gemfiles/rails_6.1.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_7.0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/gemfiles/rails_7.0.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_7.1.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/gemfiles/rails_7.1.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_7.2.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/gemfiles/rails_7.2.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_8.0.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/gemfiles/rails_8.0.gemfile -------------------------------------------------------------------------------- /gemfiles/rails_main.gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/gemfiles/rails_main.gemfile -------------------------------------------------------------------------------- /lib/flutie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/lib/flutie.rb -------------------------------------------------------------------------------- /lib/flutie/body_class.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/lib/flutie/body_class.rb -------------------------------------------------------------------------------- /lib/flutie/body_class_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/lib/flutie/body_class_helper.rb -------------------------------------------------------------------------------- /lib/flutie/page_title.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/lib/flutie/page_title.rb -------------------------------------------------------------------------------- /lib/flutie/page_title_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/lib/flutie/page_title_helper.rb -------------------------------------------------------------------------------- /lib/flutie/page_title_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/lib/flutie/page_title_presenter.rb -------------------------------------------------------------------------------- /lib/flutie/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/lib/flutie/railtie.rb -------------------------------------------------------------------------------- /lib/flutie/version.rb: -------------------------------------------------------------------------------- 1 | module Flutie 2 | VERSION = '2.2.0'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /spec/fake_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/spec/fake_app.rb -------------------------------------------------------------------------------- /spec/helpers/body_class_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/spec/helpers/body_class_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/page_title_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/spec/helpers/page_title_helper_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thoughtbot/flutie/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------