svn-command 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/ProjectInfo.rb +54 -0
  2. metadata +13 -3
@@ -0,0 +1,54 @@
1
+ require 'rubygems'
2
+ require 'facets/more/filelist' if !defined?(FileList)
3
+
4
+ module Project
5
+ PrettyName = "Enhanced Subversion Command"
6
+ Name = "svn-command"
7
+ RubyForgeName = "svn-command"
8
+ Version = "0.2.4"
9
+ Specification = Gem::Specification.new do |s|
10
+ s.name = Project::Name
11
+ s.summary = "A nifty wrapper command for Subversion's command-line svn client"
12
+ s.version = Project::Version
13
+ s.author = 'Tyler Rick'
14
+ s.description = <<-EOF
15
+ This is a wrapper command for Subversion's command-line svn client that adds a few new subcommands.
16
+ EOF
17
+ s.email = "rubyforge.org@tylerrick.com"
18
+ s.homepage = "http://#{Project::RubyForgeName}.rubyforge.org/"
19
+ s.rubyforge_project = Project::Name
20
+ s.platform = Gem::Platform::RUBY
21
+ s.add_dependency("termios")
22
+ s.add_dependency("colored")
23
+ s.add_dependency("escape")
24
+ s.add_dependency("facets")
25
+ s.add_dependency("extensions")
26
+ s.add_dependency("qualitysmith_extensions")
27
+ s.add_dependency("rscm")
28
+ s.post_install_message = <<-End
29
+ ---------------------------------------------------------------------------------------------------
30
+ Please run _svn_command_post_install to finalize the installation.
31
+ ---------------------------------------------------------------------------------------------------
32
+ End
33
+
34
+ # Documentation
35
+ s.has_rdoc = true
36
+ s.extra_rdoc_files = ['Readme']
37
+ s.rdoc_options << '--title' << Project::Name << '--main' << 'Readme' << '--line-numbers'
38
+
39
+ # Files
40
+ s.autorequire = "#{Project::Name}" # This will be loaded any time the gem is used.
41
+ s.files = FileList[
42
+ '{lib,test,examples}/**/*.rb',
43
+ 'bin/*',
44
+ 'ProjectInfo.rb',
45
+ 'Readme'
46
+ ].to_a
47
+ s.test_files = Dir.glob('test/*.rb')
48
+ s.require_path = "lib"
49
+ s.executables = ['command_completion_for_svn_command', '_svn_command_post_install']
50
+ #s.executables = "svn" # Doing this actually causes RubyGems to override the existing /usr/bin/svn during install. Not good!
51
+ end
52
+ end
53
+
54
+
metadata CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: svn-command
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.2.3
6
+ version: 0.2.4
7
7
  date: 2007-04-26 00:00:00 -07:00
8
8
  summary: A nifty wrapper command for Subversion's command-line svn client
9
9
  require_paths:
@@ -47,6 +47,7 @@ files:
47
47
  - bin/command_completion_for_svn_command
48
48
  - bin/svn
49
49
  - bin/_svn_command_post_install
50
+ - ProjectInfo.rb
50
51
  - Readme
51
52
  test_files:
52
53
  - test/test_helper.rb
@@ -83,9 +84,18 @@ dependencies:
83
84
  version_requirement:
84
85
  version_requirements: !ruby/object:Gem::Version::Requirement
85
86
  requirements:
86
- - - ">="
87
+ - - ">"
88
+ - !ruby/object:Gem::Version
89
+ version: 0.0.0
90
+ version:
91
+ - !ruby/object:Gem::Dependency
92
+ name: escape
93
+ version_requirement:
94
+ version_requirements: !ruby/object:Gem::Version::Requirement
95
+ requirements:
96
+ - - ">"
87
97
  - !ruby/object:Gem::Version
88
- version: 1.0.0
98
+ version: 0.0.0
89
99
  version:
90
100
  - !ruby/object:Gem::Dependency
91
101
  name: facets