FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
sql_parser/sql_parser.gemspec at master · rohitn/sql_parser · GitHub
rohitn
/
sql_parser
Public
forked from
owenthereal/sql_parser
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
sql_parser
/
sql_parser.gemspec
Copy path
More file actions
More file actions
Latest commit
History
History
History
23 lines (19 loc) · 796 Bytes
Breadcrumbs
sql_parser
/
sql_parser.gemspec
Copy path
File metadata and controls
23 lines (19 loc) · 796 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$:
.
push
File
.
expand_path
(
"../lib"
,
__FILE__
)
require
"sql_parser/version"
Gem
::
Specification
.
new
do
|
s
|
s
.
name
=
"sql_parser"
s
.
version
=
SqlParser
::
VERSION
s
.
authors
=
[
"Jingwen Owen Ou"
]
s
.
email
=
[
"jingweno@gmail.com"
]
s
.
homepage
=
"https://github.com/jingweno/sql_parser"
s
.
summary
=
%q{A Ruby SQL parser based on Treetop.}
s
.
description
=
%q{A Ruby SQL parser based on Treetop.}
s
.
rubyforge_project
=
"."
s
.
files
=
`git ls-files`
.
split
(
"
\n
"
)
s
.
test_files
=
`git ls-files -- {test,spec,features}/*`
.
split
(
"
\n
"
)
s
.
executables
=
`git ls-files -- bin/*`
.
split
(
"
\n
"
)
.
map
{
|
f
|
File
.
basename
(
f
)
}
s
.
require_paths
=
[
"lib"
]
s
.
add_development_dependency
"rspec"
s
.
add_runtime_dependency
"treetop"
end
Back
|
FazBrowse Home
|
New Git URL