forked from wvanbergen/sql_tree
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsql_tree.gemspec
More file actions
27 lines (22 loc) · 2.29 KB
/
sql_tree.gemspec
File metadata and controls
27 lines (22 loc) · 2.29 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
Gem::Specification.new do |s|
s.name = 'sql_tree'
# Do not modify the version and date values by hand, because this will
# automatically by them gem release script.
s.version = "0.1.1"
s.date = "2009-10-17"
s.summary = "A pure Ruby library to represent SQL queries with a syntax tree for inspection and modification."
s.description = <<-EOS
The library can parse an SQL query (a string) to represent the query using
a syntax tree, and it can generate an SQL query from a syntax tree. The
syntax tree ca be used to inspect to query, or to modify it.
EOS
s.authors = 'Willem van Bergen'
s.email = '[email protected]'
s.homepage = 'http://wiki.github.com/wvanbergen/sql_tree'
s.rdoc_options << '--title' << s.name << '--main' << 'README.rdoc' << '--line-numbers' << '--inline-source'
s.extra_rdoc_files = ['README.rdoc']
# Do not modify the files and test_files values by hand, because this will
# automatically by them gem release script.
s.files = %w(spec/spec_helper.rb lib/sql_tree/tokenizer.rb lib/sql_tree/node/join.rb lib/sql_tree/node/set_query.rb sql_tree.gemspec spec/unit/set_query_spec.rb spec/unit/select_query_spec.rb spec/lib/matchers.rb lib/sql_tree/parser.rb lib/sql_tree/node/commit_statement.rb .gitignore lib/sql_tree/node/source.rb LICENSE spec/unit/expression_node_spec.rb spec/unit/delete_query_spec.rb Gemfile spec/unit/leaf_node_spec.rb lib/sql_tree/token.rb Rakefile spec/unit/update_query_spec.rb spec/unit/tokenizer_spec.rb spec/integration/api_spec.rb lib/sql_tree/node/select_query.rb lib/sql_tree/node/begin_statement.rb lib/sql_tree/node.rb README.rdoc lib/sql_tree/node/table_reference.rb lib/sql_tree/node/insert_query.rb tasks/github-gem.rake spec/integration/parse_and_generate_spec.rb lib/sql_tree/node/expression.rb spec/unit/insert_query_spec.rb lib/sql_tree/node/select_declaration.rb lib/sql_tree.rb lib/sql_tree/node/update_query.rb lib/sql_tree/node/ordering.rb lib/sql_tree/node/delete_query.rb)
s.test_files = %w(spec/unit/set_query_spec.rb spec/unit/select_query_spec.rb spec/unit/expression_node_spec.rb spec/unit/delete_query_spec.rb spec/unit/leaf_node_spec.rb spec/unit/update_query_spec.rb spec/unit/tokenizer_spec.rb spec/integration/api_spec.rb spec/integration/parse_and_generate_spec.rb spec/unit/insert_query_spec.rb)
end