Skip to content

Commit

Permalink
Make timeline_fu into a gem
Browse files Browse the repository at this point in the history
  • Loading branch information
webmat committed Feb 19, 2009
1 parent 9e55ed7 commit 25b0c6f
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pkg
16 changes: 15 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,25 @@ Rake::TestTask.new(:test) do |t|
t.verbose = true
end

begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "timeline_fu"
s.summary = %Q{Easily build timelines, much like GitHub's news feed}
s.email = "james@giraffesoft.ca"
s.homepage = "http://github.com/giraffesoft/timeline_fu"
s.description = "Easily build timelines, much like GitHub's news feed"
s.authors = ["James Golick", "Mathieu Martin", "Francois Beausoleil"]
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

desc 'Generate documentation for the timeline_fu plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'TimelineFu'
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('README')
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
4 changes: 4 additions & 0 deletions VERSION.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
:major: 0
:minor: 1
:patch: 0
29 changes: 29 additions & 0 deletions timeline_fu.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{timeline_fu}
s.version = "0.1.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["James Golick", "Mathieu Martin", "Francois Beausoleil"]
s.date = %q{2009-02-19}
s.description = %q{Easily build timelines, much like GitHub's news feed}
s.email = %q{james@giraffesoft.ca}
s.files = ["README.rdoc", "VERSION.yml", "generators/timeline_fu", "generators/timeline_fu/templates", "generators/timeline_fu/templates/migration.rb", "generators/timeline_fu/templates/model.rb", "generators/timeline_fu/timeline_event_generator.rb", "generators/timeline_fu/USAGE", "lib/timeline_fu", "lib/timeline_fu/fires.rb", "lib/timeline_fu.rb", "test/fires_test.rb", "test/test_helper.rb"]
s.has_rdoc = true
s.homepage = %q{http://github.com/giraffesoft/timeline_fu}
s.rdoc_options = ["--inline-source", "--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.1}
s.summary = %q{Easily build timelines, much like GitHub's news feed}

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
else
end
else
end
end

0 comments on commit 25b0c6f

Please sign in to comment.