-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- work with any pakyow versions (will be locked down after 1.0) - update gemspec to be consistent with new format - move version to code
- Loading branch information
Showing
10 changed files
with
41 additions
and
96 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# 1.0.0 / 2015-10-18 | ||
|
||
* Remove version requirement from Pakyow gems |
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 was deleted.
Oops, something went wrong.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module Pakyow | ||
module Slim | ||
VERSION = '1.0.0'.freeze | ||
end | ||
end |
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,28 +1,23 @@ | ||
GEM_NAME = 'pakyow-slim' | ||
require File.expand_path('../lib/version', __FILE__) | ||
|
||
version = File.read(File.join(File.expand_path("../VERSION", __FILE__))).strip | ||
presenter_path = File.exists?(GEM_NAME) ? GEM_NAME : '.' | ||
Gem::Specification.new do |spec| | ||
spec.name = 'pakyow-slim' | ||
spec.summary = 'Pakyow Slim' | ||
spec.description = 'Slim support for Pakyow views' | ||
spec.author = 'Dan McGuire' | ||
spec.email = '[email protected]' | ||
spec.homepage = 'http://pakyow.org' | ||
spec.version = Pakyow::Slim::VERSION | ||
spec.require_path = 'lib' | ||
spec.files = `git ls-files`.split("\n") | ||
spec.license = 'MIT' | ||
|
||
Gem::Specification.new do |s| | ||
s.name = 'pakyow-slim' | ||
s.version = version | ||
s.licenses = ['MIT'] | ||
s.summary = "Slim processor for Pakyow views." | ||
s.description = "A view processor that will convert files under view/ with the .slim extension into html." | ||
s.authors = ["Dan McGuire"] | ||
s.email = '[email protected]' | ||
s.homepage = 'http://slim-lang.com' | ||
s.files = Dir[ | ||
File.join(presenter_path, 'README'), | ||
File.join(presenter_path, 'MIT-LICENSE'), | ||
File.join(presenter_path, 'VERSION'), | ||
File.join(presenter_path, 'lib','*') | ||
] | ||
spec.add_dependency('pakyow-support', '~> 0') | ||
spec.add_dependency('pakyow-core', '~> 0') | ||
spec.add_dependency('pakyow-presenter', '~> 0') | ||
|
||
s.add_dependency('pakyow-core', '~> 0.9') | ||
s.add_dependency('pakyow-presenter', '~> 0.9') | ||
s.add_dependency('slim', '~> 3.0') | ||
spec.add_dependency('slim', '~> 3.0') | ||
|
||
s.add_development_dependency('rake', '~> 10.4') | ||
s.add_development_dependency('minitest', '~> 5.8') | ||
spec.add_development_dependency('rake', '~> 10.4') | ||
spec.add_development_dependency('minitest', '~> 5.8') | ||
end |
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 |
---|---|---|
|
@@ -10,3 +10,4 @@ Rake::TestTask.new("test") do |t| | |
t.verbose = false | ||
t.warning = false | ||
end | ||
|