Skip to content

Commit

Permalink
created 0.1.4 gem
Browse files Browse the repository at this point in the history
  • Loading branch information
gshutler committed Jun 9, 2010
1 parent ecd3076 commit 241ebc9
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 14 deletions.
27 changes: 15 additions & 12 deletions deris.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{deris}
s.version = "0.1.3"
s.version = "0.1.4"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Garry Shutler"]
s.date = %q{2010-06-08}
s.date = %q{2010-06-09}
s.description = %q{Simple documentation creation engine based on HAML}
s.email = %q{garry@robustsoftware.co.uk}
s.files = [
Expand All @@ -27,24 +27,27 @@ Gem::Specification.new do |s|
s.rubygems_version = %q{1.3.7}
s.summary = %q{Simple documentation creation engine based on HAML}
s.test_files = [
"tests/build_project.rb",
"tests/project_specs",
"tests/project_specs/nested_files.rb",
"tests/spec_helper.rb",
"tests/examples",
"tests/examples/file",
"tests/examples/file/initial.haml",
"tests/examples/file/nested.haml",
"tests/examples/file/initial.haml",
"tests/examples/project",
"tests/examples/project/_src",
"tests/examples/project/_src/content.haml",
"tests/examples/project/_src/layout.haml",
"tests/examples/project/_src/menu.haml",
"tests/examples/project/_src/layout.haml",
"tests/examples/project/_src/morrisons",
"tests/examples/project/_src/morrisons/subnav.haml",
"tests/examples/project/_src/morrisons/fish",
"tests/examples/project/_src/morrisons/fish/content.haml",
"tests/examples/project/_src/morrisons/bread",
"tests/examples/project/_src/morrisons/bread/content.haml",
"tests/examples/project/_src/morrisons/content.haml",
"tests/examples/project/_src/morrisons/subnav.haml",
"tests/examples/project/_src/subnav.haml",
"tests/project_specs",
"tests/project_specs/nested_files.rb"
"tests/examples/project/_src/content.haml",
"tests/spec_tasks.rake"
]

if s.respond_to? :specification_version then
Expand All @@ -53,14 +56,14 @@ Gem::Specification.new do |s|

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<haml>, [">= 2.2.0"])
s.add_runtime_dependency(%q<rspec>, [">= 1.3.0"])
s.add_development_dependency(%q<rspec>, [">= 2.0.0.beta.9"])
else
s.add_dependency(%q<haml>, [">= 2.2.0"])
s.add_dependency(%q<rspec>, [">= 1.3.0"])
s.add_dependency(%q<rspec>, [">= 2.0.0.beta.9"])
end
else
s.add_dependency(%q<haml>, [">= 2.2.0"])
s.add_dependency(%q<rspec>, [">= 1.3.0"])
s.add_dependency(%q<rspec>, [">= 2.0.0.beta.9"])
end
end

2 changes: 2 additions & 0 deletions lib/directory_writer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ def write(output)
sub_output_dir, sub_depth = sub_output(output)
Directory.new(dir, partials, sub_depth).write(sub_output_dir)
end

true # don't return anything the client could work with
end

def write_file(output)
Expand Down
Binary file added pkg/deris-0.1.4.gem
Binary file not shown.
4 changes: 2 additions & 2 deletions rakefile.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'jeweler'
Jeweler::Tasks.new do |gs|
gs.name = "deris"
gs.version = "0.1.3"
gs.version = "0.1.4"
gs.author = "Garry Shutler"
gs.email = "garry@robustsoftware.co.uk"

Expand All @@ -19,7 +19,7 @@
gs.require_path = "lib"

gs.add_dependency("haml", ">=2.2.0")
gs.add_dependency("rspec", ">=1.3.0")
gs.add_development_dependency("rspec", ">=2.0.0.beta.9")
end
end

Expand Down

0 comments on commit 241ebc9

Please sign in to comment.