fnando-pez 0.0.5 → 0.0.6

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.
Files changed (5) hide show
  1. data/History.txt +5 -0
  2. data/Rakefile +1 -1
  3. data/lib/pez/base.rb +1 -1
  4. data/pez.gemspec +8 -8
  5. metadata +2 -2
data/History.txt CHANGED
@@ -22,3 +22,8 @@
22
22
 
23
23
  * 1 bug fix:
24
24
  * Symlink option couldn't get the plugin data
25
+
26
+ == 0.0.6 2008-10-02
27
+
28
+ * 1 bug fix:
29
+ * Couldn't symlink to relative paths
data/Rakefile CHANGED
@@ -5,7 +5,7 @@ PKG_FILES = %w(Rakefile pez.gemspec History.txt License.txt README.markdown TODO
5
5
 
6
6
  spec = Gem::Specification.new do |s|
7
7
  s.name = "pez"
8
- s.version = "0.0.5"
8
+ s.version = "0.0.6"
9
9
  s.summary = "Manage Ruby on Rails plugins from GIT and Subversion repositories in a simple way"
10
10
  s.authors = ["Nando Vieira"]
11
11
  s.email = ["fnando.vieira@gmail.com"]
data/lib/pez/base.rb CHANGED
@@ -52,7 +52,7 @@ module Pez
52
52
  end
53
53
 
54
54
  def self.destination
55
- config[Rails.env] || 'tmp/plugins'
55
+ File.expand_path(config[Rails.env] || 'tmp/plugins')
56
56
  end
57
57
 
58
58
  def self.plugins(name, options={})
data/pez.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
  # RUN : 'rake gem:update_gemspec'
3
3
 
4
4
  Gem::Specification.new do |s|
5
- s.date = "Sat Sep 06 09:53:54 -0300 2008"
6
- s.executables = ["pez"]
5
+ s.date = "Thu Oct 02 23:08:10 -0300 2008"
7
6
  s.authors = ["Nando Vieira"]
7
+ s.require_paths = ["lib"]
8
8
  s.required_rubygems_version = ">= 0"
9
- s.version = "0.0.5"
9
+ s.has_rdoc = false
10
10
  s.files = ["Rakefile",
11
11
  "pez.gemspec",
12
12
  "History.txt",
@@ -18,15 +18,15 @@ Gem::Specification.new do |s|
18
18
  "lib/pez",
19
19
  "lib/pez/base.rb",
20
20
  "lib/pez.rb"]
21
- s.has_rdoc = false
22
- s.requirements = ["You'll need GIT and Subversion installed"]
23
21
  s.email = ["fnando.vieira@gmail.com"]
24
- s.name = "pez"
25
- s.bindir = "bin"
22
+ s.version = "0.0.6"
26
23
  s.homepage = "http://github.com/fnando/pez"
24
+ s.requirements = ["You'll need GIT and Subversion installed"]
25
+ s.name = "pez"
27
26
  s.summary = "Manage Ruby on Rails plugins from GIT and Subversion repositories in a simple way"
27
+ s.executables = ["pez"]
28
28
  s.description = "A simpler plugin manager that checkouts/clones the repository and just do the updates right in"
29
29
  s.add_dependency "rubigen", ">= 0"
30
30
  s.add_dependency "main", ">= 0"
31
- s.require_paths = ["lib"]
31
+ s.bindir = "bin"
32
32
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fnando-pez
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nando Vieira
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-09-06 05:53:54 -07:00
12
+ date: 2008-10-02 19:08:10 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency