Skip to content

Commit

Permalink
Version bump to 0.8.0
Browse files Browse the repository at this point in the history
* Add Travis YAML
* Add test stub
* Add History
  • Loading branch information
Reda Lemeden committed Apr 13, 2013
1 parent ef63338 commit f2291ed
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
--color
--format progress
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
language: ruby
rvm:
- "1.9.3"
9 changes: 9 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
0.8.0 / 2013-04-13
==================

* New! Add liquid tag for slim to render as _include

0.7.0 / 2013-04-07
==================

* Initial release
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Jekyll-slim

[![Gem Version](https://badge.fury.io/rb/jekyll-slim.png)](http://badge.fury.io/rb/jekyll-slim)
[![Gem Version](https://badge.fury.io/rb/jekyll-slim.png)](http://badge.fury.io/rb/jekyll-slim) [![Dependency Status](https://gemnasium.com/kaishin/jekyll-slim.png)](https://gemnasium.com/kaishin/jekyll-slim) [![Code Climate](https://codeclimate.com/github/kaishin/jekyll-slim.png)](https://codeclimate.com/github/kaishin/jekyll-slim)

A gem that adds [slim-lang](http://slim-lang.com) support to [Jekyll](http://github.com/mojombo/jekyll). Works for for pages, includes and layouts.

Expand Down Expand Up @@ -29,24 +29,24 @@ In your Jekyll project's `_plugins` directory:

The gem will convert all the `.slim` files in your project's directory into HTML. That includes files in sub-directories, includes and layouts. Example:

```
```haml
# _layouts/default.slim
html
head
body
.content-wrapper
| {{ content }}
```
To include a partial, use the `slim` liquid tag instead of `include`:


```
```haml
# index.slim
---
layout: default
---
section.content
| {% include footer.slim %}
section.content Content goes here.
| {% slim footer.slim %}
```

Expand Down
1 change: 1 addition & 0 deletions jekyll-slim.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ Gem::Specification.new do |gem|

gem.add_development_dependency('rake')
gem.add_development_dependency('bundler')
gem.add_development_dependency('rspec')
end
2 changes: 1 addition & 1 deletion lib/jekyll-slim/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Jekyll
module Slim
VERSION = "0.7.0"
VERSION = "0.8.0"
end
end
17 changes: 17 additions & 0 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# This file was generated by the `rspec --init` command. Conventionally, all
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
# Require this file using `require "spec_helper"` to ensure that it is only
# loaded once.
#
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
RSpec.configure do |config|
config.treat_symbols_as_metadata_keys_with_true_values = true
config.run_all_when_everything_filtered = true
config.filter_run :focus

# Run specs in random order to surface order dependencies. If you find an
# order dependency and want to debug it, you can fix the order by providing
# the seed, which is printed after each run.
# --seed 1234
config.order = 'random'
end

0 comments on commit f2291ed

Please sign in to comment.