├── .gitignore ├── .travis.yml ├── Gemfile ├── README.md ├── Rakefile ├── _site ├── Gemfile ├── README.md ├── Rakefile ├── jekyll-version-helper.gemspec ├── lib │ ├── configurer.rb │ ├── jekyll-version-helper.rb │ └── permalinker.rb └── spec │ ├── jekyll-version-helper │ └── configurer_spec.rb │ └── spec_helper.rb ├── jekyll-config-variables.gemspec ├── lib ├── configurer.rb └── jekyll-config-variables.rb ├── script ├── bootstrap └── cibuild └── spec ├── fixtures ├── _config.yml └── _source │ ├── folder │ ├── file1.md │ ├── file2.md │ ├── index.md │ └── search │ │ └── search.html │ ├── index.html │ ├── page1.md │ └── search.html ├── jekyll-config-variables └── configurer_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/Rakefile -------------------------------------------------------------------------------- /_site/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/_site/Gemfile -------------------------------------------------------------------------------- /_site/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_site/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/_site/Rakefile -------------------------------------------------------------------------------- /_site/jekyll-version-helper.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/_site/jekyll-version-helper.gemspec -------------------------------------------------------------------------------- /_site/lib/configurer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/_site/lib/configurer.rb -------------------------------------------------------------------------------- /_site/lib/jekyll-version-helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/_site/lib/jekyll-version-helper.rb -------------------------------------------------------------------------------- /_site/lib/permalinker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/_site/lib/permalinker.rb -------------------------------------------------------------------------------- /_site/spec/jekyll-version-helper/configurer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/_site/spec/jekyll-version-helper/configurer_spec.rb -------------------------------------------------------------------------------- /_site/spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/_site/spec/spec_helper.rb -------------------------------------------------------------------------------- /jekyll-config-variables.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/jekyll-config-variables.gemspec -------------------------------------------------------------------------------- /lib/configurer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/lib/configurer.rb -------------------------------------------------------------------------------- /lib/jekyll-config-variables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/lib/jekyll-config-variables.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/fixtures/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/spec/fixtures/_config.yml -------------------------------------------------------------------------------- /spec/fixtures/_source/folder/file1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/spec/fixtures/_source/folder/file1.md -------------------------------------------------------------------------------- /spec/fixtures/_source/folder/file2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/spec/fixtures/_source/folder/file2.md -------------------------------------------------------------------------------- /spec/fixtures/_source/folder/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/spec/fixtures/_source/folder/index.md -------------------------------------------------------------------------------- /spec/fixtures/_source/folder/search/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/spec/fixtures/_source/folder/search/search.html -------------------------------------------------------------------------------- /spec/fixtures/_source/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/spec/fixtures/_source/index.html -------------------------------------------------------------------------------- /spec/fixtures/_source/page1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/spec/fixtures/_source/page1.md -------------------------------------------------------------------------------- /spec/fixtures/_source/search.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/jekyll-config-variables/configurer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/spec/jekyll-config-variables/configurer_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtorikian/jekyll-config-variables/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------