public
Description: RailsDB is a web application written in Ruby using the Ruby on Rails web framework. RailsDB provides a generic interface to popular databases such as MySQL, PostgreSQL, SQLite, and Oracle.
Homepage: http://railsdb.org/
Clone URL: git://github.com/gdonald/railsdb.git
Click here to lend your support to: railsdb and make a donation at www.pledgie.com !
Greg Donald (author)
Sun Jan 04 15:38:14 -0800 2009
railsdb / railsdb.gemspec
100644 30 lines (24 sloc) 1.085 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
Gem::Specification.new do |s|
 
  s.name = 'railsdb'
  s.version = '0.2'
  s.date = '2008-01-20'
  s.authors = [ 'Greg Donald' ]
  s.email = 'gdonald@gmail.com'
  s.homepage = 'http://railsdb.org/'
  s.summary = 'RailsDB provides a generic web interface to popular databases.'
  s.description = 'RailsDB is a web application written in Ruby using the Ruby on Rails web framework. RailsDB provides a generic interface to popular open source databases such as MySQL, PostgreSQL, and SQLite.'
  s.rubyforge_project = 'railsdb'
  s.has_rdoc = true
  s.rdoc_options = [ '--main', 'README.txt' ]
  s.extra_rdoc_files = [ 'README.txt' ]
 
  s.add_dependency( 'rails', [ '= 2.0.2' ] )
 
  files = Dir.glob( "#{ File.dirname( __FILE__ ) }/**/*" ).to_a.sort
  s.files = files.delete_if do |f|
    f.include?( '.gem' ) || \
    f.include?( '.log' ) || \
    f.include?( '.sqlite3' ) || \
    f.include?( 'doc' ) || \
    f.include?( 'gemspec' )
  end
  s.files.each { |f| puts f }
 
end