-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #95 from 18F/release-v2.2.0
v2.2.0 Release
- Loading branch information
Showing
2 changed files
with
31 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
# coding: utf-8 | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "uswds-jekyll" | ||
spec.version = "2.1.0" | ||
spec.authors = ["Shawn Allen"] | ||
spec.email = ["shawn.allen@gsa.gov"] | ||
Gem::Specification.new do |s| | ||
s.name = 'uswds-jekyll' | ||
s.version = '2.2.0' | ||
s.authors = ['Shawn Allen', 'Brian Hurst', 'Scott Weber'] | ||
s.email = ['brian.hurst@gsa.gov', '[email protected]'] | ||
|
||
spec.summary = %q{A Jekyll theme for the U.S. Web Design Standards} | ||
spec.homepage = "https://standards.usa.gov/" | ||
spec.license = "CC0-1.0" | ||
s.summary = "A Jekyll theme for the U.S. Web Design Standards." | ||
s.homepage = "https://standards.usa.gov/" | ||
s.license = "CC0-1.0" | ||
|
||
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(assets|_layouts|_includes|_sass|LICENSE|README)}i) } | ||
s.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(assets|_layouts|_includes|_sass|LICENSE|README)}i) } | ||
|
||
spec.add_runtime_dependency "jekyll", "~> 3.4" | ||
s.add_runtime_dependency "jekyll", "~> 3.4" | ||
|
||
spec.add_development_dependency "bundler" | ||
spec.add_development_dependency "rake" | ||
s.add_development_dependency "bundler" | ||
s.add_development_dependency "rake" | ||
end |