mass_insert 0.2.3 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +10 -20
- data/.travis.yml +25 -5
- data/Appraisals +11 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +0 -5
- data/LICENSE.txt +17 -18
- data/README.md +54 -24
- data/Rakefile +3 -3
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/gemfiles/.bundle/config +2 -0
- data/gemfiles/rails_5.2.gemfile +7 -0
- data/gemfiles/rails_5.2.gemfile.lock +157 -0
- data/gemfiles/rails_6.0.gemfile +7 -0
- data/gemfiles/rails_6.0.gemfile.lock +173 -0
- data/gemfiles/rails_6.1.gemfile +7 -0
- data/gemfiles/rails_6.1.gemfile.lock +176 -0
- data/lib/mass_insert/adapters/abstract_adapter.rb +11 -5
- data/lib/mass_insert/base.rb +2 -1
- data/lib/mass_insert/builder.rb +1 -2
- data/lib/mass_insert/version.rb +1 -1
- data/mass_insert.gemspec +19 -12
- metadata +67 -51
- data/.rspec +0 -1
- data/test/adapters/mysql2/example_test.rb +0 -29
- data/test/adapters/postgresql/example_test.rb +0 -3
- data/test/adapters/sqlite3/example_test.rb +0 -3
- data/test/database.yml.example +0 -20
- data/test/models/kind.rb +0 -2
- data/test/models/user.rb +0 -2
- data/test/schema.rb +0 -15
- data/test/support/adapters/mysql2.rb +0 -1
- data/test/support/adapters/postgresql.rb +0 -1
- data/test/support/adapters/sqlite3.rb +0 -1
- data/test/support/shared_examples.rb +0 -57
- data/test/test_helper.rb +0 -36
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: f65ad414fc126fa727b99d1db03ae9186b2e80ef4b388f934fdcbf2c38aa1216
|
4
|
+
data.tar.gz: 8626e06f1c40528398a497c998226e48a78c6bd6dc2d31120a7378b8caf04d7e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b0b628fa791a0bb9325a07be05730bb25f7422860a12c38e15488b22a98ea932a45e241c16c9aa633ea1e9361813950b5a4531817eba8c56d0b06f5f0636e6d
|
7
|
+
data.tar.gz: 4e41b61ad2a0e20289612623beb4e5d78e43dafb5e980dcb538f24eb998159b9ac7ffe390340dfc43f1a2c725ca4c9a24fbdfc6258e528c983e8ecf52ead127b
|
data/.gitignore
CHANGED
@@ -1,22 +1,12 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
_yardoc
|
9
|
-
coverage
|
10
|
-
doc/
|
11
|
-
log/
|
12
|
-
lib/bundler/man
|
13
|
-
pkg
|
14
|
-
rdoc
|
15
|
-
spec/reports
|
16
|
-
test/tmp
|
17
|
-
test/version_tmp
|
1
|
+
/.bundle/
|
2
|
+
/.yardoc
|
3
|
+
/_yardoc/
|
4
|
+
/coverage/
|
5
|
+
/doc/
|
6
|
+
/pkg/
|
7
|
+
/spec/reports/
|
18
8
|
test/database.yml
|
19
|
-
tmp
|
20
|
-
|
9
|
+
/tmp/
|
10
|
+
coverage
|
21
11
|
.ruby-version
|
22
|
-
.
|
12
|
+
Gemfile.lock
|
data/.travis.yml
CHANGED
@@ -1,10 +1,30 @@
|
|
1
|
+
sudo: false
|
2
|
+
cache: bundler
|
1
3
|
language: ruby
|
4
|
+
|
5
|
+
services:
|
6
|
+
- mysql
|
7
|
+
- postgresql
|
8
|
+
|
2
9
|
rvm:
|
3
|
-
- 2.
|
4
|
-
- 2.
|
5
|
-
-
|
10
|
+
- 2.6.6
|
11
|
+
- 2.7.2
|
12
|
+
- 3.0.0
|
6
13
|
|
7
14
|
before_script:
|
8
15
|
- cp test/database.yml.example test/database.yml
|
9
|
-
- mysql -e '
|
10
|
-
- psql -c '
|
16
|
+
- mysql -e 'create database mass_insert_test;'
|
17
|
+
- psql -c 'create database mass_insert_test;' -U postgres
|
18
|
+
|
19
|
+
before_install:
|
20
|
+
- gem install bundler -v 2.0.2
|
21
|
+
|
22
|
+
gemfile:
|
23
|
+
- gemfiles/rails_5.2.gemfile
|
24
|
+
- gemfiles/rails_6.0.gemfile
|
25
|
+
- gemfiles/rails_6.1.gemfile
|
26
|
+
|
27
|
+
matrix:
|
28
|
+
allow_failures:
|
29
|
+
- gemfile: gemfiles/rails_5.2.gemfile
|
30
|
+
rvm: 3.0.0
|
data/Appraisals
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 alejandrodevs@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
CHANGED
data/LICENSE.txt
CHANGED
@@ -1,22 +1,21 @@
|
|
1
|
-
|
1
|
+
The MIT License (MIT)
|
2
2
|
|
3
|
-
|
3
|
+
Copyright (c) 2019 Alejandro Gutiérrez
|
4
4
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
the following conditions:
|
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:
|
12
11
|
|
13
|
-
The above copyright notice and this permission notice shall be
|
14
|
-
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
15
14
|
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
OF
|
22
|
-
|
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
CHANGED
@@ -1,31 +1,29 @@
|
|
1
1
|
# MassInsert
|
2
|
-
[![Build Status](https://travis-ci.
|
3
|
-
|
4
|
-
This gem aims to provide an easy and faster way to do single database insertions in Rails.
|
5
|
-
Support Mysql, PostgreSQL and SQLite3 adapters. It depends on ActiveRecord.
|
2
|
+
[![Build Status](https://travis-ci.com/alejandrodevs/mass_insert.svg?branch=master)](https://travis-ci.org/alejandrodevs/mass_insert) [![Coverage Status](https://coveralls.io/repos/github/alejandrodevs/mass_insert/badge.svg?branch=master)](https://coveralls.io/github/alejandrodevs/mass_insert?branch=master)
|
6
3
|
|
4
|
+
This gem aims to provide an easy and faster way to do single database insertions in Rails. Support Mysql, PostgreSQL and SQLite3 adapters. It depends on ActiveRecord.
|
7
5
|
|
8
6
|
## Installation
|
7
|
+
|
9
8
|
Add this line to your application's Gemfile:
|
9
|
+
|
10
10
|
```ruby
|
11
11
|
gem 'mass_insert'
|
12
12
|
```
|
13
|
-
Run the bundle command to install it.
|
14
13
|
|
14
|
+
And then execute:
|
15
15
|
|
16
|
-
|
17
|
-
Faster. It's depending of the computer but these are some results...
|
18
|
-
* PostgreSQL - Saving 10,000 records in 0.49s
|
16
|
+
$ bundle
|
19
17
|
|
18
|
+
Or install it yourself as:
|
20
19
|
|
21
|
-
|
22
|
-
Since this is a single database insertion your model validations will be ignored,
|
23
|
-
then if you use this gem you need to be sure that information is OK to be persisted.
|
20
|
+
$ gem install mass_insert
|
24
21
|
|
22
|
+
## Usage
|
25
23
|
|
26
|
-
## Basic Usage
|
27
24
|
To use MassInsert gem you need to call `mass_insert` method from your ActiveRecord model
|
28
25
|
and pass it an array with the values that you want to persist into the database.
|
26
|
+
|
29
27
|
```ruby
|
30
28
|
values = [
|
31
29
|
{
|
@@ -43,19 +41,39 @@ values = [
|
|
43
41
|
User.mass_insert(values)
|
44
42
|
```
|
45
43
|
|
44
|
+
### Allow primary key
|
45
|
+
|
46
|
+
Sometimes you can need to insert records forcing primary keys.
|
47
|
+
Just pass the `primary_key` option with true. Example...
|
48
|
+
|
49
|
+
```ruby
|
50
|
+
values = [
|
51
|
+
{
|
52
|
+
id: 1000, # Force primary key.
|
53
|
+
name: 'Jay',
|
54
|
+
email: 'tremendous_gamer@gmail.com',
|
55
|
+
age: 15
|
56
|
+
}
|
57
|
+
]
|
58
|
+
|
59
|
+
User.mass_insert(values, primary_key: true)
|
60
|
+
```
|
46
61
|
|
47
62
|
### Insertion per batches
|
63
|
+
|
48
64
|
Due you can get a database timeout error you can specify that the insertion will be in batches.
|
49
65
|
Just pass the `per_batch` option with the records per batch. Example...
|
66
|
+
|
50
67
|
```ruby
|
51
68
|
User.mass_insert(values, per_batch: 1000)
|
52
69
|
```
|
53
70
|
|
54
|
-
|
55
71
|
### Handle unique index on MySQL
|
72
|
+
|
56
73
|
Sometimes we want to ignore errors when adding duplicated records. MySQL has
|
57
74
|
the ability to do that with `ON DUPLICATE KEY UPDATE`. By using the option
|
58
75
|
`handle_duplication` we will ignore the new values by doing:
|
76
|
+
|
59
77
|
```ruby
|
60
78
|
User.mass_insert(values, handle_duplication: true)
|
61
79
|
```
|
@@ -67,18 +85,30 @@ INSERT INTO table (a,b,c) VALUES (1,2,3)
|
|
67
85
|
|
68
86
|
[Read more about MySQL ON DUPLICATE KEY UPDATE...](http://dev.mysql.com/doc/refman/5.7/en/insert-on-duplicate.html)
|
69
87
|
|
88
|
+
## Advantages
|
70
89
|
|
71
|
-
|
72
|
-
|
73
|
-
for every database adapters. Then, run the following to test the gem against all adapters.
|
74
|
-
```
|
75
|
-
bundle exec rake test:all
|
76
|
-
```
|
90
|
+
Faster. It depends on the computer and the data but these are some results...
|
91
|
+
* PostgreSQL - Saving 10,000 records in 0.49s
|
77
92
|
|
93
|
+
## Attention
|
94
|
+
|
95
|
+
Since this is a single database insertion your model validations will be ignored,
|
96
|
+
then if you use this gem you need to be sure that information is OK to be persisted.
|
97
|
+
|
98
|
+
## Development
|
99
|
+
|
100
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
101
|
+
|
102
|
+
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).
|
78
103
|
|
79
104
|
## Contributing
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
105
|
+
|
106
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/alejandrodevs/mass_insert. 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.
|
107
|
+
|
108
|
+
## License
|
109
|
+
|
110
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
111
|
+
|
112
|
+
## Code of Conduct
|
113
|
+
|
114
|
+
Everyone interacting in the MassInsert project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/alejandrodevs/mass_insert/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
require 'bundler/gem_tasks'
|
2
2
|
require 'rake/testtask'
|
3
3
|
|
4
|
-
ADAPTERS = %w(mysql2 postgresql sqlite3)
|
4
|
+
ADAPTERS = %w(mysql2 postgresql sqlite3).freeze
|
5
5
|
|
6
6
|
ADAPTERS.each do |adapter|
|
7
7
|
namespace :test do
|
8
8
|
desc "Runs #{adapter} tests."
|
9
9
|
Rake::TestTask.new(adapter) do |t|
|
10
10
|
t.libs << 'test'
|
11
|
+
t.libs << 'lib'
|
11
12
|
t.test_files = FileList[
|
12
13
|
"test/support/adapters/#{adapter}.rb",
|
13
14
|
"test/adapters/#{adapter}/**/*_test.rb"]
|
@@ -24,5 +25,4 @@ namespace :test do
|
|
24
25
|
end
|
25
26
|
end
|
26
27
|
|
27
|
-
|
28
|
-
task default: 'test:postgresql'
|
28
|
+
task default: 'test:all'
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "mass_insert"
|
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
@@ -0,0 +1,157 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
mass_insert (1.0.0)
|
5
|
+
activerecord (>= 5.2)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
actioncable (5.2.5)
|
11
|
+
actionpack (= 5.2.5)
|
12
|
+
nio4r (~> 2.0)
|
13
|
+
websocket-driver (>= 0.6.1)
|
14
|
+
actionmailer (5.2.5)
|
15
|
+
actionpack (= 5.2.5)
|
16
|
+
actionview (= 5.2.5)
|
17
|
+
activejob (= 5.2.5)
|
18
|
+
mail (~> 2.5, >= 2.5.4)
|
19
|
+
rails-dom-testing (~> 2.0)
|
20
|
+
actionpack (5.2.5)
|
21
|
+
actionview (= 5.2.5)
|
22
|
+
activesupport (= 5.2.5)
|
23
|
+
rack (~> 2.0, >= 2.0.8)
|
24
|
+
rack-test (>= 0.6.3)
|
25
|
+
rails-dom-testing (~> 2.0)
|
26
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
27
|
+
actionview (5.2.5)
|
28
|
+
activesupport (= 5.2.5)
|
29
|
+
builder (~> 3.1)
|
30
|
+
erubi (~> 1.4)
|
31
|
+
rails-dom-testing (~> 2.0)
|
32
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
33
|
+
activejob (5.2.5)
|
34
|
+
activesupport (= 5.2.5)
|
35
|
+
globalid (>= 0.3.6)
|
36
|
+
activemodel (5.2.5)
|
37
|
+
activesupport (= 5.2.5)
|
38
|
+
activerecord (5.2.5)
|
39
|
+
activemodel (= 5.2.5)
|
40
|
+
activesupport (= 5.2.5)
|
41
|
+
arel (>= 9.0)
|
42
|
+
activestorage (5.2.5)
|
43
|
+
actionpack (= 5.2.5)
|
44
|
+
activerecord (= 5.2.5)
|
45
|
+
marcel (~> 1.0.0)
|
46
|
+
activesupport (5.2.5)
|
47
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
48
|
+
i18n (>= 0.7, < 2)
|
49
|
+
minitest (~> 5.1)
|
50
|
+
tzinfo (~> 1.1)
|
51
|
+
appraisal (2.4.0)
|
52
|
+
bundler
|
53
|
+
rake
|
54
|
+
thor (>= 0.14.0)
|
55
|
+
arel (9.0.0)
|
56
|
+
builder (3.2.4)
|
57
|
+
concurrent-ruby (1.1.8)
|
58
|
+
coveralls (0.8.23)
|
59
|
+
json (>= 1.8, < 3)
|
60
|
+
simplecov (~> 0.16.1)
|
61
|
+
term-ansicolor (~> 1.3)
|
62
|
+
thor (>= 0.19.4, < 2.0)
|
63
|
+
tins (~> 1.6)
|
64
|
+
crass (1.0.6)
|
65
|
+
docile (1.3.5)
|
66
|
+
erubi (1.10.0)
|
67
|
+
globalid (0.4.2)
|
68
|
+
activesupport (>= 4.2.0)
|
69
|
+
i18n (1.8.10)
|
70
|
+
concurrent-ruby (~> 1.0)
|
71
|
+
json (2.5.1)
|
72
|
+
loofah (2.9.0)
|
73
|
+
crass (~> 1.0.2)
|
74
|
+
nokogiri (>= 1.5.9)
|
75
|
+
mail (2.7.1)
|
76
|
+
mini_mime (>= 0.1.1)
|
77
|
+
marcel (1.0.1)
|
78
|
+
method_source (1.0.0)
|
79
|
+
mini_mime (1.1.0)
|
80
|
+
mini_portile2 (2.5.0)
|
81
|
+
minitest (5.14.4)
|
82
|
+
mysql2 (0.5.3)
|
83
|
+
nio4r (2.5.7)
|
84
|
+
nokogiri (1.11.2)
|
85
|
+
mini_portile2 (~> 2.5.0)
|
86
|
+
racc (~> 1.4)
|
87
|
+
pg (1.2.3)
|
88
|
+
racc (1.5.2)
|
89
|
+
rack (2.2.3)
|
90
|
+
rack-test (1.1.0)
|
91
|
+
rack (>= 1.0, < 3)
|
92
|
+
rails (5.2.5)
|
93
|
+
actioncable (= 5.2.5)
|
94
|
+
actionmailer (= 5.2.5)
|
95
|
+
actionpack (= 5.2.5)
|
96
|
+
actionview (= 5.2.5)
|
97
|
+
activejob (= 5.2.5)
|
98
|
+
activemodel (= 5.2.5)
|
99
|
+
activerecord (= 5.2.5)
|
100
|
+
activestorage (= 5.2.5)
|
101
|
+
activesupport (= 5.2.5)
|
102
|
+
bundler (>= 1.3.0)
|
103
|
+
railties (= 5.2.5)
|
104
|
+
sprockets-rails (>= 2.0.0)
|
105
|
+
rails-dom-testing (2.0.3)
|
106
|
+
activesupport (>= 4.2.0)
|
107
|
+
nokogiri (>= 1.6)
|
108
|
+
rails-html-sanitizer (1.3.0)
|
109
|
+
loofah (~> 2.3)
|
110
|
+
railties (5.2.5)
|
111
|
+
actionpack (= 5.2.5)
|
112
|
+
activesupport (= 5.2.5)
|
113
|
+
method_source
|
114
|
+
rake (>= 0.8.7)
|
115
|
+
thor (>= 0.19.0, < 2.0)
|
116
|
+
rake (13.0.3)
|
117
|
+
simplecov (0.16.1)
|
118
|
+
docile (~> 1.1)
|
119
|
+
json (>= 1.8, < 3)
|
120
|
+
simplecov-html (~> 0.10.0)
|
121
|
+
simplecov-html (0.10.2)
|
122
|
+
sprockets (4.0.2)
|
123
|
+
concurrent-ruby (~> 1.0)
|
124
|
+
rack (> 1, < 3)
|
125
|
+
sprockets-rails (3.2.2)
|
126
|
+
actionpack (>= 4.0)
|
127
|
+
activesupport (>= 4.0)
|
128
|
+
sprockets (>= 3.0.0)
|
129
|
+
sqlite3 (1.4.2)
|
130
|
+
sync (0.5.0)
|
131
|
+
term-ansicolor (1.7.1)
|
132
|
+
tins (~> 1.0)
|
133
|
+
thor (1.1.0)
|
134
|
+
thread_safe (0.3.6)
|
135
|
+
tins (1.28.0)
|
136
|
+
sync
|
137
|
+
tzinfo (1.2.9)
|
138
|
+
thread_safe (~> 0.1)
|
139
|
+
websocket-driver (0.7.3)
|
140
|
+
websocket-extensions (>= 0.1.0)
|
141
|
+
websocket-extensions (0.1.5)
|
142
|
+
|
143
|
+
PLATFORMS
|
144
|
+
ruby
|
145
|
+
|
146
|
+
DEPENDENCIES
|
147
|
+
appraisal (~> 2.4)
|
148
|
+
coveralls (~> 0.8)
|
149
|
+
mass_insert!
|
150
|
+
mysql2 (~> 0.5)
|
151
|
+
pg (~> 1.2)
|
152
|
+
rails (~> 5.2.0)
|
153
|
+
rake (~> 13.0)
|
154
|
+
sqlite3 (~> 1.4)
|
155
|
+
|
156
|
+
BUNDLED WITH
|
157
|
+
2.2.3
|