visionmedia-mini 0.0.7 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/History.rdoc CHANGED
@@ -1,4 +1,8 @@
1
1
 
2
+ === 0.0.8 / 2009-03-09
3
+
4
+ * Fixed typo in #project_url helper
5
+
2
6
  === 0.0.7 / 2009-03-09
3
7
 
4
8
  * Added some sample helpers
data/Todo.rdoc CHANGED
@@ -1,6 +1,7 @@
1
1
 
2
2
  == Major:
3
3
 
4
+ * Add :build sub-command
4
5
  * ERB templates / allow templates to have a .rb file to gather input for the erb vars (gen gem?)
5
6
  * RDoc deployment (find a good default theme or make one)
6
7
  * Git branch without relation to others (document)
data/bin/mini CHANGED
@@ -6,7 +6,7 @@ require 'commander'
6
6
  require 'bind'
7
7
 
8
8
  program :name, 'mini'
9
- program :version, '0.0.7'
9
+ program :version, '0.0.8'
10
10
  program :description, 'Github project page framework'
11
11
 
12
12
  def current_branch
data/mini.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{mini}
5
- s.version = "0.0.7"
5
+ s.version = "0.0.8"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["TJ Holowaychuk"]
@@ -4,7 +4,7 @@ def title title, subheading
4
4
  end
5
5
 
6
6
  def project_url username, project
7
- "http://github.com/visionmedia/#{username}/#{project}"
7
+ "http://github.com/#{username}/#{project}"
8
8
  end
9
9
 
10
10
  PROJECT_URL = project_url('username', 'project')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: visionmedia-mini
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - TJ Holowaychuk