├── .gitignore ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── jekyll-time-to-read.gemspec ├── lib └── jekyll-time-to-read.rb ├── script ├── bootstrap └── cibuild └── spec ├── dev └── .gitkeep ├── fixtures ├── _config.yml ├── _layouts │ ├── landing_page.html │ ├── time_to_read_i.html │ └── time_to_read_s.html ├── _posts │ ├── 1984-03-06-time-to-read-long-as-i.md │ ├── 1984-03-06-time-to-read-long-as-s.md │ ├── 1984-03-06-time-to-read-short-as-i.md │ ├── 1984-03-06-time-to-read-short-as-s.md │ └── 1984-03-06-time-to-read-very-long-as-s.md └── index.html ├── plugins └── time_to_read_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | _site/ 3 | Gemfile.lock 4 | spec/dev/null.txt 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-time-to-read/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-time-to-read/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-time-to-read/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-time-to-read/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-time-to-read/HEAD/Rakefile -------------------------------------------------------------------------------- /jekyll-time-to-read.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-time-to-read/HEAD/jekyll-time-to-read.gemspec -------------------------------------------------------------------------------- /lib/jekyll-time-to-read.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-time-to-read/HEAD/lib/jekyll-time-to-read.rb -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | bundle install 4 | -------------------------------------------------------------------------------- /script/cibuild: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | script/bootstrap > /dev/null 2>&1 4 | bundle exec rake spec 5 | -------------------------------------------------------------------------------- /spec/dev/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/_config.yml: -------------------------------------------------------------------------------- 1 | name: Your New Jekyll Site 2 | markdown: redcarpet 3 | -------------------------------------------------------------------------------- /spec/fixtures/_layouts/landing_page.html: -------------------------------------------------------------------------------- 1 |