visionmedia-mygem 0.0.4 → 0.0.5

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.5 / 2009-03-20
3
+
4
+ * Updated dates and conventions in template
5
+
2
6
  === 0.0.4 / 2009-03-13
3
7
 
4
8
  * Fixed some bugs (dont use this gem anyway im replacing it soon)
data/lib/mygem/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
 
2
2
  module MyGem
3
- VERSION = '0.0.4'
3
+ VERSION = '0.0.5'
4
4
  end
data/mygem.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{mygem}
5
- s.version = "0.0.4"
5
+ s.version = "0.0.5"
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"]
9
- s.date = %q{2009-03-13}
9
+ s.date = %q{2009-03-20}
10
10
  s.default_executable = %q{mygem}
11
11
  s.description = %q{Rubygem generation, done YOUR way.}
12
12
  s.email = %q{tj@vision-media.ca}
@@ -1,10 +1,11 @@
1
1
 
2
+ $:.unshift 'lib'
3
+ require 'GEM_NAME'
2
4
  require 'rubygems'
3
5
  require 'rake'
4
6
  require 'echoe'
5
- require './lib/GEM_NAME.rb'
6
7
 
7
- Echoe.new("GEM_NAME", GEM_CLASS::VERSION::STRING) do |p|
8
+ Echoe.new "GEM_NAME", GEM_CLASS::VERSION do |p|
8
9
  p.author = "GEM_AUTHOR"
9
10
  p.email = "GEM_EMAIL"
10
11
  p.summary = "GEM_DESCRIPTION"
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2008 GEM_AUTHOR
2
+ # Copyright (c) 2009 GEM_AUTHOR
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person obtaining
5
5
  # a copy of this software and associated documentation files (the
@@ -21,6 +21,4 @@
21
21
  # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
22
  #++
23
23
 
24
- $:.unshift File.dirname(__FILE__)
25
-
26
24
  require 'GEM_NAME/version'
@@ -1,7 +1,4 @@
1
1
 
2
2
  module GEM_CLASS
3
- module VERSION #:nodoc:
4
- MAJOR, MINOR, TINY = [0, 0, 1]
5
- STRING = [MAJOR, MINOR, TINY].join '.'
6
- end
3
+ VERSION = '0.0.1'
7
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: visionmedia-mygem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - TJ Holowaychuk
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-03-13 00:00:00 -07:00
12
+ date: 2009-03-20 00:00:00 -07:00
13
13
  default_executable: mygem
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency