├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── app └── helpers │ └── title │ └── title_helper.rb ├── lib ├── title.rb └── title │ ├── engine.rb │ └── version.rb ├── spec └── helpers │ └── title_helper_spec.rb └── title.gemspec /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebhearth/title/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebhearth/title/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebhearth/title/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebhearth/title/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebhearth/title/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebhearth/title/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebhearth/title/HEAD/Rakefile -------------------------------------------------------------------------------- /app/helpers/title/title_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebhearth/title/HEAD/app/helpers/title/title_helper.rb -------------------------------------------------------------------------------- /lib/title.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebhearth/title/HEAD/lib/title.rb -------------------------------------------------------------------------------- /lib/title/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebhearth/title/HEAD/lib/title/engine.rb -------------------------------------------------------------------------------- /lib/title/version.rb: -------------------------------------------------------------------------------- 1 | module Title 2 | VERSION = '0.1.0' 3 | end 4 | -------------------------------------------------------------------------------- /spec/helpers/title_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebhearth/title/HEAD/spec/helpers/title_helper_spec.rb -------------------------------------------------------------------------------- /title.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calebhearth/title/HEAD/title.gemspec --------------------------------------------------------------------------------