mini_sql 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +8 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +61 -0
- data/Guardfile +5 -0
- data/LICENSE.txt +21 -0
- data/README.md +54 -0
- data/Rakefile +10 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/mini_sql.rb +7 -0
- data/lib/mini_sql/builder.rb +0 -0
- data/lib/mini_sql/coders.rb +9 -0
- data/lib/mini_sql/connection.rb +70 -0
- data/lib/mini_sql/deserializer_cache.rb +54 -0
- data/lib/mini_sql/version.rb +3 -0
- data/mini_sql.gemspec +31 -0
- metadata +146 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 2d984e77f8a88e9996f5d014bc4543de0872717cc916f511f3a6fb02c043b2e5
|
4
|
+
data.tar.gz: 827f2319fef84d2ab143336cc24b004c4644e4d8f38bd070b7a3f5795a791cc1
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 1ae8290a5f6aa4831fc8392813f54a6b2d122bafe6ab285e20604794a8fc15ad39fe2fd98d86767a46486d45ef6bb522038b190b081a99dd7344953e692445a6
|
7
|
+
data.tar.gz: ef68d1d15da7b7f1ed17e831fcc5fd49c9c109112b481c3489e75097d1ad9d670929c5689e5849211b9cbcdefd19573cd65d47aca8c17b3b58d3a86a53a6ecf4
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at sam.saffron@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,61 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
mini_sql (0.1.0)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
coderay (1.1.2)
|
10
|
+
ffi (1.9.25)
|
11
|
+
formatador (0.2.5)
|
12
|
+
guard (2.14.2)
|
13
|
+
formatador (>= 0.2.4)
|
14
|
+
listen (>= 2.7, < 4.0)
|
15
|
+
lumberjack (>= 1.0.12, < 2.0)
|
16
|
+
nenv (~> 0.1)
|
17
|
+
notiffany (~> 0.0)
|
18
|
+
pry (>= 0.9.12)
|
19
|
+
shellany (~> 0.0)
|
20
|
+
thor (>= 0.18.1)
|
21
|
+
guard-compat (1.2.1)
|
22
|
+
guard-minitest (2.4.6)
|
23
|
+
guard-compat (~> 1.2)
|
24
|
+
minitest (>= 3.0)
|
25
|
+
listen (3.1.5)
|
26
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
27
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
28
|
+
ruby_dep (~> 1.2)
|
29
|
+
lumberjack (1.0.13)
|
30
|
+
method_source (0.9.0)
|
31
|
+
minitest (5.11.3)
|
32
|
+
nenv (0.3.0)
|
33
|
+
notiffany (0.1.1)
|
34
|
+
nenv (~> 0.1)
|
35
|
+
shellany (~> 0.0)
|
36
|
+
pg (1.0.0)
|
37
|
+
pry (0.11.3)
|
38
|
+
coderay (~> 1.1.0)
|
39
|
+
method_source (~> 0.9.0)
|
40
|
+
rake (10.5.0)
|
41
|
+
rb-fsevent (0.10.3)
|
42
|
+
rb-inotify (0.9.10)
|
43
|
+
ffi (>= 0.5.0, < 2)
|
44
|
+
ruby_dep (1.5.0)
|
45
|
+
shellany (0.0.1)
|
46
|
+
thor (0.20.0)
|
47
|
+
|
48
|
+
PLATFORMS
|
49
|
+
ruby
|
50
|
+
|
51
|
+
DEPENDENCIES
|
52
|
+
bundler (~> 1.16)
|
53
|
+
guard (~> 2.14)
|
54
|
+
guard-minitest (~> 2.4)
|
55
|
+
mini_sql!
|
56
|
+
minitest (~> 5.0)
|
57
|
+
pg (~> 1.0.0)
|
58
|
+
rake (~> 10.0)
|
59
|
+
|
60
|
+
BUNDLED WITH
|
61
|
+
1.16.2
|
data/Guardfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2018 TODO: Write your name
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
# MiniSql
|
2
|
+
|
3
|
+
## Installation
|
4
|
+
|
5
|
+
Add this line to your application's Gemfile:
|
6
|
+
|
7
|
+
```ruby
|
8
|
+
gem 'mini_sql'
|
9
|
+
```
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install mini_sql
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
MiniSql is a very simple, safe and fast SQL executor and mapper for PG.
|
22
|
+
|
23
|
+
```ruby
|
24
|
+
pg_conn = PG.connect(db_name: 'my_db')
|
25
|
+
conn = MiniSql::Connection.new(pg_conn)
|
26
|
+
|
27
|
+
puts conn.exec('update table set column = 1 where id in (1,2)')
|
28
|
+
# returns 2 if 2 rows changed
|
29
|
+
|
30
|
+
conn.query("select 1 id, 'bob' name") do |user|
|
31
|
+
puts user.name # bob
|
32
|
+
puts user.id # 1
|
33
|
+
end
|
34
|
+
|
35
|
+
puts conn.query_single('select 1 union select 2')
|
36
|
+
# [1,2]
|
37
|
+
|
38
|
+
```
|
39
|
+
|
40
|
+
## Development
|
41
|
+
|
42
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
43
|
+
|
44
|
+
## Contributing
|
45
|
+
|
46
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/SamSaffron/mini_sql. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
47
|
+
|
48
|
+
## License
|
49
|
+
|
50
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
51
|
+
|
52
|
+
## Code of Conduct
|
53
|
+
|
54
|
+
Everyone interacting in the MiniSql project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/SamSaffron/mini_sql/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "mini_sql"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/lib/mini_sql.rb
ADDED
File without changes
|
@@ -0,0 +1,70 @@
|
|
1
|
+
module MiniSql
|
2
|
+
class Connection
|
3
|
+
|
4
|
+
def self.default_deserializer_cache
|
5
|
+
@deserializer_cache ||= DeserializerCache.new
|
6
|
+
end
|
7
|
+
|
8
|
+
def self.type_map(conn)
|
9
|
+
@type_map ||=
|
10
|
+
begin
|
11
|
+
map = PG::BasicTypeMapForResults.new(conn)
|
12
|
+
map.add_coder(MiniSql::Coders::NumericCoder.new(name: "numeric", oid: 1700, format: 0))
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
def initialize(conn, deserializer_cache = nil, type_map = nil)
|
17
|
+
# TODO adapter to support other databases
|
18
|
+
@conn = conn
|
19
|
+
@deserializer_cache = deserializer_cache || Connection.default_deserializer_cache
|
20
|
+
@type_map = type_map || Connection.type_map(conn)
|
21
|
+
end
|
22
|
+
|
23
|
+
def query_single(sql, params=nil)
|
24
|
+
result = run(sql, params)
|
25
|
+
result.type_map = @type_map
|
26
|
+
result.column_values(0)
|
27
|
+
ensure
|
28
|
+
result.clear if result
|
29
|
+
end
|
30
|
+
|
31
|
+
def query(sql, params=nil)
|
32
|
+
result = run(sql, params)
|
33
|
+
result.type_map = @type_map
|
34
|
+
@deserializer_cache.materialize(result)
|
35
|
+
ensure
|
36
|
+
result.clear if result
|
37
|
+
end
|
38
|
+
|
39
|
+
def exec(sql, params=nil)
|
40
|
+
result = run(sql, params)
|
41
|
+
result.cmd_tuples
|
42
|
+
ensure
|
43
|
+
result.clear if result
|
44
|
+
end
|
45
|
+
|
46
|
+
private
|
47
|
+
|
48
|
+
def run(sql, params)
|
49
|
+
if params
|
50
|
+
@conn.async_exec(*process_params(sql, params))
|
51
|
+
else
|
52
|
+
@conn.async_exec(sql)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
def process_params(sql, params)
|
57
|
+
sql = sql.dup
|
58
|
+
param_array = []
|
59
|
+
|
60
|
+
params.each do |k, v|
|
61
|
+
sql.gsub!(":#{k.to_s}", "$#{param_array.length + 1}")
|
62
|
+
param_array << v
|
63
|
+
end
|
64
|
+
|
65
|
+
[sql, param_array]
|
66
|
+
|
67
|
+
end
|
68
|
+
|
69
|
+
end
|
70
|
+
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
module MiniSql
|
2
|
+
class DeserializerCache
|
3
|
+
|
4
|
+
DEFAULT_MAX_SIZE = 500
|
5
|
+
|
6
|
+
def initialize(max_size = nil)
|
7
|
+
@cache = {}
|
8
|
+
@max_size = max_size || DEFAULT_MAX_SIZE
|
9
|
+
end
|
10
|
+
|
11
|
+
def materialize(result)
|
12
|
+
|
13
|
+
return [] if result.ntuples == 0
|
14
|
+
|
15
|
+
key = result.fields
|
16
|
+
|
17
|
+
# trivial fast LRU implementation
|
18
|
+
materializer = @cache.delete(key)
|
19
|
+
if materializer
|
20
|
+
@cache[key] = materializer
|
21
|
+
else
|
22
|
+
materializer = @cache[key] = new_row_matrializer(result)
|
23
|
+
@cache.shift if @cache.length > @max_size
|
24
|
+
end
|
25
|
+
|
26
|
+
i = 0
|
27
|
+
r = []
|
28
|
+
# quicker loop
|
29
|
+
while i < result.ntuples
|
30
|
+
r << materializer.materialize(result, i)
|
31
|
+
i += 1
|
32
|
+
end
|
33
|
+
r
|
34
|
+
end
|
35
|
+
|
36
|
+
private
|
37
|
+
|
38
|
+
def new_row_matrializer(result)
|
39
|
+
fields = result.fields
|
40
|
+
|
41
|
+
Class.new do
|
42
|
+
attr_accessor(*fields)
|
43
|
+
|
44
|
+
instance_eval <<~RUBY
|
45
|
+
def materialize(pg_result, index)
|
46
|
+
r = self.new
|
47
|
+
#{col=-1; fields.map{|f| "r.#{f} = pg_result.getvalue(index, #{col+=1})"}.join('\n')}
|
48
|
+
r
|
49
|
+
end
|
50
|
+
RUBY
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
data/mini_sql.gemspec
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
lib = File.expand_path("../lib", __FILE__)
|
4
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
5
|
+
require "mini_sql/version"
|
6
|
+
|
7
|
+
Gem::Specification.new do |spec|
|
8
|
+
spec.name = "mini_sql"
|
9
|
+
spec.version = MiniSql::VERSION
|
10
|
+
spec.authors = ["Sam Saffron"]
|
11
|
+
spec.email = ["sam.saffron@gmail.com"]
|
12
|
+
|
13
|
+
spec.summary = %q{A fast, safe, simple direct SQL executor}
|
14
|
+
spec.description = %q{A fast, safe, simple direct SQL executor for PG}
|
15
|
+
spec.homepage = "https://discourse.org"
|
16
|
+
spec.license = "MIT"
|
17
|
+
|
18
|
+
# Specify which files should be added to the gem when it is released.
|
19
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
20
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
21
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
22
|
+
end
|
23
|
+
spec.require_paths = ["lib"]
|
24
|
+
|
25
|
+
spec.add_development_dependency "bundler", "~> 1.16"
|
26
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
27
|
+
spec.add_development_dependency "minitest", "~> 5.0"
|
28
|
+
spec.add_development_dependency "pg", "~> 1.0.0"
|
29
|
+
spec.add_development_dependency "guard", "~> 2.14"
|
30
|
+
spec.add_development_dependency "guard-minitest", "~> 2.4"
|
31
|
+
end
|
metadata
ADDED
@@ -0,0 +1,146 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mini_sql
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Sam Saffron
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-06-15 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.16'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.16'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: minitest
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '5.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '5.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: pg
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 1.0.0
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 1.0.0
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: guard
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '2.14'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '2.14'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: guard-minitest
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '2.4'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '2.4'
|
97
|
+
description: A fast, safe, simple direct SQL executor for PG
|
98
|
+
email:
|
99
|
+
- sam.saffron@gmail.com
|
100
|
+
executables: []
|
101
|
+
extensions: []
|
102
|
+
extra_rdoc_files: []
|
103
|
+
files:
|
104
|
+
- ".gitignore"
|
105
|
+
- ".travis.yml"
|
106
|
+
- CODE_OF_CONDUCT.md
|
107
|
+
- Gemfile
|
108
|
+
- Gemfile.lock
|
109
|
+
- Guardfile
|
110
|
+
- LICENSE.txt
|
111
|
+
- README.md
|
112
|
+
- Rakefile
|
113
|
+
- bin/console
|
114
|
+
- bin/setup
|
115
|
+
- lib/mini_sql.rb
|
116
|
+
- lib/mini_sql/builder.rb
|
117
|
+
- lib/mini_sql/coders.rb
|
118
|
+
- lib/mini_sql/connection.rb
|
119
|
+
- lib/mini_sql/deserializer_cache.rb
|
120
|
+
- lib/mini_sql/version.rb
|
121
|
+
- mini_sql.gemspec
|
122
|
+
homepage: https://discourse.org
|
123
|
+
licenses:
|
124
|
+
- MIT
|
125
|
+
metadata: {}
|
126
|
+
post_install_message:
|
127
|
+
rdoc_options: []
|
128
|
+
require_paths:
|
129
|
+
- lib
|
130
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
131
|
+
requirements:
|
132
|
+
- - ">="
|
133
|
+
- !ruby/object:Gem::Version
|
134
|
+
version: '0'
|
135
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
136
|
+
requirements:
|
137
|
+
- - ">="
|
138
|
+
- !ruby/object:Gem::Version
|
139
|
+
version: '0'
|
140
|
+
requirements: []
|
141
|
+
rubyforge_project:
|
142
|
+
rubygems_version: 2.7.6
|
143
|
+
signing_key:
|
144
|
+
specification_version: 4
|
145
|
+
summary: A fast, safe, simple direct SQL executor
|
146
|
+
test_files: []
|