Only spec.summary is needed...
This commit is contained in:
parent
20110571ef
commit
12deccc513
|
@ -3,6 +3,11 @@ Feature: Writing themes
|
||||||
I want to be able to make a gemified theme
|
I want to be able to make a gemified theme
|
||||||
In order to share my awesome style skillz with other Jekyllites
|
In order to share my awesome style skillz with other Jekyllites
|
||||||
|
|
||||||
|
Scenario: Generating a new theme scaffold
|
||||||
|
When I run jekyll new-theme my-cool-theme
|
||||||
|
Then I should get a zero exit status
|
||||||
|
And the my-cool-theme directory should exist
|
||||||
|
|
||||||
Scenario: A theme with SCSS
|
Scenario: A theme with SCSS
|
||||||
Given I have a configuration file with "theme" set to "test-theme"
|
Given I have a configuration file with "theme" set to "test-theme"
|
||||||
And I have a css directory
|
And I have a css directory
|
||||||
|
|
|
@ -7,7 +7,6 @@ Gem::Specification.new do |spec|
|
||||||
spec.email = [<%= user_email.inspect %>]
|
spec.email = [<%= user_email.inspect %>]
|
||||||
|
|
||||||
spec.summary = %q{TODO: Write a short summary, because Rubygems requires one.}
|
spec.summary = %q{TODO: Write a short summary, because Rubygems requires one.}
|
||||||
spec.description = %q{TODO: Write a longer description or delete this line.}
|
|
||||||
spec.homepage = "TODO: Put your gem's website or public repo URL here."
|
spec.homepage = "TODO: Put your gem's website or public repo URL here."
|
||||||
spec.license = "MIT"
|
spec.license = "MIT"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue