public
Fork of sam/do
Description: DataObjects
Homepage: http://rubyforge.org/projects/dorb
Clone URL: git://github.com/somebee/do.git
Removed temp files

* Updated .gitignore to not allow those files to be added again
* Updated rake clean to not delete the lib directory
dkubb (author)
Sun Apr 27 22:20:34 -0700 2008
commit  d3e2ade8e9aff1d73e3b0c8643e9221ca4d9e692
tree    dd9c516234fac846e34b297bc16a0140a9dc0c15
parent  8682fbeeb68857589bb9dcf730322105b1d33122
...
7
8
9
10
11
 
 
 
...
7
8
9
 
10
11
12
13
0
@@ -7,4 +7,6 @@ pkg/*
0
 *.bundle
0
 Makefile
0
 **/*.db
0
-nbproject
0
\ No newline at end of file
0
+nbproject
0
+*.*~
0
+*.*#
...
8
9
10
11
 
12
13
14
...
22
23
24
25
 
26
27
28
 
29
30
31
...
8
9
10
 
11
12
13
14
...
22
23
24
 
25
26
27
 
28
29
30
31
0
@@ -8,7 +8,7 @@ require Pathname(__FILE__).dirname.expand_path.parent + 'ext_helper'
0
 # House-keeping
0
 CLEAN.include '**/*.o', '**/*.so', '**/*.bundle', '**/*.a',
0
   '**/*.log', '{ext,lib}/*.{bundle,so,obj,pdb,lib,def,exp}',
0
- 'ext/Makefile', 'lib'
0
+ 'ext/Makefile'
0
 
0
 spec = Gem::Specification.new do |s|
0
   s.name = 'do_mysql'
0
@@ -22,10 +22,10 @@ spec = Gem::Specification.new do |s|
0
   s.email = 'bauer.mail@gmail.com'
0
   s.homepage = 'http://rubyforge.org/projects/dorb'
0
   s.rubyforge_project = 'dorb'
0
- s.add_dependency('data_objects', '>= 0.9.0')
0
+ s.add_dependency('data_objects', "= #{s.version}")
0
   s.require_path = 'lib'
0
   s.extensions = %w[ ext/extconf.rb ]
0
- s.files = FileList['lib/**/*.rb', 'ext/*.rb', 'ext/*.c', 'spec/**/*.rb', 'Rakefile', *s.extra_rdoc_files ]
0
+ s.files = FileList[ '{ext,lib,spec}/**/*.{c,rb}', 'Rakefile', *s.extra_rdoc_files ]
0
 end
0
 
0
 Rake::GemPackageTask.new(spec) do |pkg|
...
8
9
10
11
 
12
13
14
...
22
23
24
25
 
26
27
28
 
29
30
31
...
8
9
10
 
11
12
13
14
...
22
23
24
 
25
26
27
 
28
29
30
31
0
@@ -8,7 +8,7 @@ require Pathname(__FILE__).dirname.expand_path.parent + 'ext_helper'
0
 # House-keeping
0
 CLEAN.include '**/*.o', '**/*.so', '**/*.bundle', '**/*.a',
0
   '**/*.log', '{ext,lib}/*.{bundle,so,obj,pdb,lib,def,exp}',
0
- 'ext/Makefile', 'lib'
0
+ 'ext/Makefile'
0
 
0
 spec = Gem::Specification.new do |s|
0
   s.name = 'do_postgres'
0
@@ -22,10 +22,10 @@ spec = Gem::Specification.new do |s|
0
   s.email = 'wycats@gmail.com'
0
   s.homepage = 'http://rubyforge.org/projects/dorb'
0
   s.rubyforge_project = 'dorb'
0
- s.add_dependency('data_objects', '>= 0.9.0')
0
+ s.add_dependency('data_objects', "= #{s.version}")
0
   s.require_path = 'lib'
0
   s.extensions = %w[ ext/extconf.rb ]
0
- s.files = FileList['lib/**/*.rb', 'ext/*.rb', 'ext/*.c', 'ext/*.h', 'spec/**/*.rb', 'Rakefile', *s.extra_rdoc_files ]
0
+ s.files = FileList[ '{ext,lib,spec}/**/*.{c,h,rb}', 'Rakefile', *s.extra_rdoc_files ]
0
 end
0
 
0
 Rake::GemPackageTask.new(spec) do |pkg|
...
8
9
10
11
 
12
13
14
...
22
23
24
25
 
26
27
28
 
29
30
31
...
8
9
10
 
11
12
13
14
...
22
23
24
 
25
26
27
 
28
29
30
31
0
@@ -8,7 +8,7 @@ require Pathname(__FILE__).dirname.expand_path.parent + 'ext_helper'
0
 # House-keeping
0
 CLEAN.include '**/*.o', '**/*.so', '**/*.bundle', '**/*.a',
0
   '**/*.log', '{ext,lib}/*.{bundle,so,obj,pdb,lib,def,exp}',
0
- 'ext/Makefile', 'lib', '**/*.db'
0
+ 'ext/Makefile', '**/*.db'
0
 
0
 spec = Gem::Specification.new do |s|
0
   s.name = 'do_sqlite3'
0
@@ -22,10 +22,10 @@ spec = Gem::Specification.new do |s|
0
   s.email = 'wycats@gmail.com'
0
   s.homepage = 'http://rubyforge.org/projects/dorb'
0
   s.rubyforge_project = 'dorb'
0
- s.add_dependency('data_objects', '>= 0.9.0')
0
+ s.add_dependency('data_objects', "= #{s.version}")
0
   s.require_path = 'lib'
0
   s.extensions = %w[ ext/extconf.rb ]
0
- s.files = FileList['lib/**/*.rb', 'ext/*.rb', 'ext/*.c', 'spec/**/*.rb', 'Rakefile', *s.extra_rdoc_files ]
0
+ s.files = FileList[ '{ext,lib,spec}/**/*.{c,rb}', 'Rakefile', *s.extra_rdoc_files ]
0
 end
0
 
0
 Rake::GemPackageTask.new(spec) do |pkg|

Comments

    No one has commented yet.