sql 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (7) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +37 -0
  3. data/LICENSE +20 -0
  4. data/README.md +9 -0
  5. data/lib/sql.rb +0 -0
  6. data/sql.gemspec +15 -0
  7. metadata +50 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: d380778a6274d04849b358692c96034910ef1eab
4
+ data.tar.gz: 85e68048c62a4be30bf0575b2e65fc25d1a43505
5
+ SHA512:
6
+ metadata.gz: a0782f4e2162c1d40e30f99358cc6389c6c00d64002b13666b63052e3849368518d6c9117af98298a95ee62010f7231b8048d362118a1a33aeca5ba91cc2989f
7
+ data.tar.gz: 7702c753cd24f6f36c72b98ae9ecd75fdbbdfaf71fcf3e5726b01029458e31ca9f94ddc3955cf892e4081b9b85e30c2b61d92ed042a18f84306cd3516b41eef6
@@ -0,0 +1,37 @@
1
+ ## MAC OS
2
+ .DS_Store
3
+
4
+ ## TEXTMATE
5
+ *.tmproj
6
+ tmtags
7
+
8
+ ## EMACS
9
+ *~
10
+ \#*
11
+ .\#*
12
+
13
+ ## VIM
14
+ *.swp
15
+
16
+ ## Rubinius
17
+ *.rbc
18
+ .rbx
19
+
20
+ ## PROJECT::GENERAL
21
+ *.gem
22
+ coverage
23
+ profiling
24
+ turbulence
25
+ rdoc
26
+ pkg
27
+ tmp
28
+ doc
29
+ log
30
+ .yardoc
31
+ measurements
32
+
33
+ ## BUNDLER
34
+ .bundle
35
+ Gemfile.lock
36
+
37
+ ## PROJECT::SPECIFIC
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2013 Dan Kubb
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,9 @@
1
+ sql
2
+ =====
3
+
4
+ SQL Parser and Generator
5
+
6
+ Copyright
7
+ ---------
8
+
9
+ Copyright © 2013 Dan Kubb. See LICENSE for details.
File without changes
@@ -0,0 +1,15 @@
1
+ # encoding: utf-8
2
+
3
+ Gem::Specification.new do |gem|
4
+ gem.name = 'sql'
5
+ gem.version = '0.0.1'
6
+ gem.authors = ['Dan Kubb']
7
+ gem.email = 'dan.kubb@gmail.com'
8
+ gem.description = 'SQL Parser and Generator'
9
+ gem.summary = gem.description
10
+ gem.homepage = 'https://github.com/dkubb/sql'
11
+
12
+ gem.require_paths = %w[lib]
13
+ gem.files = `git ls-files`.split($/)
14
+ gem.extra_rdoc_files = %w[LICENSE README.md]
15
+ end
metadata ADDED
@@ -0,0 +1,50 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sql
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Dan Kubb
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-03-15 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: SQL Parser and Generator
14
+ email: dan.kubb@gmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files:
18
+ - LICENSE
19
+ - README.md
20
+ files:
21
+ - .gitignore
22
+ - LICENSE
23
+ - README.md
24
+ - lib/sql.rb
25
+ - sql.gemspec
26
+ homepage: https://github.com/dkubb/sql
27
+ licenses: []
28
+ metadata: {}
29
+ post_install_message:
30
+ rdoc_options: []
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ required_rubygems_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - '>='
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ requirements: []
44
+ rubyforge_project:
45
+ rubygems_version: 2.0.0
46
+ signing_key:
47
+ specification_version: 4
48
+ summary: SQL Parser and Generator
49
+ test_files: []
50
+ has_rdoc: