Skip to content

Commit

Permalink
Use jeweler to create gemspec.
Browse files Browse the repository at this point in the history
+ Version to 0.0.0
+ Added VERSION.
+ Jeweler-produced gemspec.
+ Jeweler taks in Rakefile.
  • Loading branch information
jgm committed Jul 20, 2009
1 parent 194c0a5 commit 9707cb1
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 23 deletions.
23 changes: 19 additions & 4 deletions Rakefile
@@ -1,11 +1,26 @@
# -*- ruby -*-

require 'rubygems'
require 'hoe'

Hoe.spec 'ecstatic' do
developer('John MacFarlane', 'jgm@berkeley.edu')
# self.rubyforge_name = 'ecstaticx' # if different than 'ecstatic'
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "ecstatic"
gemspec.summary = "Framework for maintaining a static website from templates and data in YAML files."
gemspec.email = "jgm@berkeley.edu"
gemspec.homepage = "http://github.com/jgm/cloudlib"
gemspec.description = "Ecstatic is a framework for maintaining a static website from templates and data in YAML files."
gemspec.authors = ["John MacFarlane"]
gemspec.has_rdoc = true
gemspec.authors = ["John MacFarlane"]
gemspec.test_files = []
gemspec.add_dependency("activesupport", [">= 1.1"])
gemspec.add_dependency("rpeg-markdown", [">= 0.2"])
gemspec.add_dependency("tenjin", [">= 0.6.1"])
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end


# vim: syntax=ruby
1 change: 1 addition & 0 deletions VERSION
@@ -0,0 +1 @@
0.0.0
78 changes: 59 additions & 19 deletions ecstatic.gemspec
@@ -1,22 +1,62 @@
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = "ecstatic"
s.version = "0.1"
s.date = "2009-07-19"
s.summary = "Framework for maintaining a static website from templates and data in YAML files."
s.email = "jgm@berkeley.edu"
s.homepage = "http://github.com/jgm/cloudlib"
s.description = "Ecstatic is a framework for maintaining a static website from templates and data in YAML files."
s.has_rdoc = true
s.authors = ["John MacFarlane"]
s.bindir = "bin"
s.name = %q{ecstatic}
s.version = "0.0.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["John MacFarlane"]
s.date = %q{2009-07-20}
s.default_executable = %q{ecstatic}
s.description = %q{Ecstatic is a framework for maintaining a static website from templates and data in YAML files.}
s.email = %q{jgm@berkeley.edu}
s.executables = ["ecstatic"]
s.default_executable = "ecstatic"
s.files = File.open("Manifest.txt").readlines.map {|x| x.chomp}
s.test_files = []
s.rdoc_options = ["--main", "README", "--inline-source"]
s.extra_rdoc_files = ["README"]
s.add_dependency("activesupport", [">= 1.1"])
s.add_dependency("rpeg-markdown", [">= 0.2"])
s.add_dependency("tenjin", [">= 0.6.1"])
end
s.extra_rdoc_files = [
"ChangeLog",
"README"
]
s.files = [
"ChangeLog",
"README",
"Rakefile",
"VERSION",
"bin/ecstatic",
"ecstatic.gemspec",
"lib/ecstatic.rb",
"samplesite/README",
"samplesite/Rakefile",
"samplesite/events.rbhtml",
"samplesite/events.yaml",
"samplesite/files/Ukulele.jpg",
"samplesite/files/css/print.css",
"samplesite/files/css/screen.css",
"samplesite/models/models.rb",
"samplesite/siteindex.yaml",
"samplesite/standard.rbhtml"
]
s.has_rdoc = true
s.homepage = %q{http://github.com/jgm/cloudlib}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.1}
s.summary = %q{Framework for maintaining a static website from templates and data in YAML files.}

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<activesupport>, [">= 1.1"])
s.add_runtime_dependency(%q<rpeg-markdown>, [">= 0.2"])
s.add_runtime_dependency(%q<tenjin>, [">= 0.6.1"])
else
s.add_dependency(%q<activesupport>, [">= 1.1"])
s.add_dependency(%q<rpeg-markdown>, [">= 0.2"])
s.add_dependency(%q<tenjin>, [">= 0.6.1"])
end
else
s.add_dependency(%q<activesupport>, [">= 1.1"])
s.add_dependency(%q<rpeg-markdown>, [">= 0.2"])
s.add_dependency(%q<tenjin>, [">= 0.6.1"])
end
end

0 comments on commit 9707cb1

Please sign in to comment.