public
Description: A simple tool to manage Ruby on Rails plugins from GIT and Subversion SCM
Homepage: http://github.com/fnando/pez
Clone URL: git://github.com/fnando/pez.git
Click here to lend your support to: pez and make a donation at www.pledgie.com !
commit  2044720413d9dcf066aee0a9251ab6561172aaba
tree    0b804f28a1cfd81421ae5abbd0c01dfa8958e199
parent  3f8f551766535ec9c45ee3ba97b8845387947101
pez / pez.gemspec
100644 64 lines (56 sloc) 2.159 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Generated by jeweler
# DO NOT EDIT THIS FILE
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{pez}
  s.version = "0.1.0"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Nando Vieira"]
  s.date = %q{2009-10-29}
  s.default_executable = %q{pez}
  s.description = %q{Pez is a simple tool to manage plugins from Git and Subversion repositories in
a easy way. Instead of adding plugins to the project repository, Pez
checkouts/clones the specified version to a temporary directory and
creates a symlink to the Ruby on Rails plugin directory.
 
When Pez is asked to update the plugins, it runs the correct command in that
directory, based on the repository type (Git or Subversion), which in turn is
applied to the project through the symlink.
 
Pez allows different environments to update plugins from a different directory.
So, when you deploy your Ruby on Rails application, you won't have to
checkout/update all plugins again, unless you explicit say so.
 
Pez is based on Braid (which I never had it working) but way simpler.
}
  s.email = %q{fnando.vieira@gmail.com}
  s.executables = ["pez"]
  s.extra_rdoc_files = [
    "README.markdown"
  ]
  s.files = [
    "History.txt",
     "README.markdown",
     "Rakefile",
     "VERSION",
     "bin/pez",
     "lib/pez.rb",
     "lib/pez/base.rb",
     "pez.gemspec",
     "templates/pez.yml"
  ]
  s.homepage = %q{http://github.com/fnando/pez}
  s.rdoc_options = ["--charset=UTF-8"]
  s.require_paths = ["lib"]
  s.rubygems_version = %q{1.3.5}
  s.summary = %q{Manage Ruby on Rails plugins from GIT and Subversion repositories in a simple way}
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 3
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
      s.add_runtime_dependency(%q<main>, [">= 0"])
    else
      s.add_dependency(%q<main>, [">= 0"])
    end
  else
    s.add_dependency(%q<main>, [">= 0"])
  end
end