public
Fork of francois/piston
Description: Piston is a utility that eases vendor branch management. This repository is a complete reimplementation of Piston to provide different backends, depending on the repositories and working copies you pistonize from.
Homepage: http://piston.rubyforge.org/
Clone URL: git://github.com/tapajos/piston.git
Relaxed dependencies slightly: allow 2.8.0 to 2.8.999 for main (for 
example).
francois (author)
Mon Aug 25 06:52:21 -0700 2008
commit  6ebfe4ff4f4ae562d21b4827cd616bd51caf2446
tree    477fb66ab6ff83c78cb7ed31749a75a922cac17d
parent  0a533e7f483784f3a522aac884a53e1a8f144b01
...
59
60
61
 
 
 
62
63
64
65
66
 
 
 
 
67
68
69
...
59
60
61
62
63
64
65
 
 
 
 
66
67
68
69
70
71
72
0
@@ -59,11 +59,14 @@ hoe = Hoe.new(GEM_NAME, VERS) do |p|
0
   
0
   # == Optional
0
   p.changes = p.paragraphs_of("History.txt", 0..1).join("\n\n")
0
+
0
+ # Don't specify dependencies using the full version or else it won't be the effect that was intended.
0
+ # ~> 2.8.0 really means "depend on 2.8.0 to 2.8.0.9999", and not 2.8.0 to 2.8.9
0
   p.extra_deps = [
0
- ["main", "~> 2.8.0"],
0
- ["open4", "~> 0.9.6"],
0
- ["log4r", "~> 1.0.5"],
0
- ["activesupport", "~> 2.0.2"]
0
+ ["main", "~> 2.8"],
0
+ ["open4", "~> 0.9"],
0
+ ["log4r", "~> 1.0"],
0
+ ["activesupport", "~> 2.0"]
0
   ]
0
 
0
   #p.spec_extras = {} # A hash of extra values to set in the gemspec.

Comments

    No one has commented yet.