backy_rb 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.drone.yml +13 -0
- data/.idea/.gitignore +8 -0
- data/.rspec +3 -0
- data/.rubocop.yml +23 -0
- data/CHANGELOG.md +5 -0
- data/Gemfile +16 -0
- data/Gemfile.lock +120 -0
- data/README.md +36 -0
- data/Rakefile +10 -0
- data/backy.gemspec +45 -0
- data/bucky.png +0 -0
- data/config/database.example.yml +15 -0
- data/dummy/psql/.gitattributes +7 -0
- data/dummy/psql/.gitignore +22 -0
- data/dummy/psql/.ruby-version +1 -0
- data/dummy/psql/Gemfile +34 -0
- data/dummy/psql/Gemfile.lock +207 -0
- data/dummy/psql/README.md +24 -0
- data/dummy/psql/Rakefile +6 -0
- data/dummy/psql/app/assets/config/manifest.js +2 -0
- data/dummy/psql/app/assets/images/.keep +0 -0
- data/dummy/psql/app/assets/stylesheets/application.css +15 -0
- data/dummy/psql/app/controllers/application_controller.rb +2 -0
- data/dummy/psql/app/controllers/concerns/.keep +0 -0
- data/dummy/psql/app/controllers/posts_controller.rb +59 -0
- data/dummy/psql/app/helpers/application_helper.rb +2 -0
- data/dummy/psql/app/helpers/posts_helper.rb +2 -0
- data/dummy/psql/app/models/application_record.rb +3 -0
- data/dummy/psql/app/models/concerns/.keep +0 -0
- data/dummy/psql/app/models/post.rb +2 -0
- data/dummy/psql/app/views/layouts/application.html.erb +15 -0
- data/dummy/psql/app/views/posts/_form.html.erb +27 -0
- data/dummy/psql/app/views/posts/_post.html.erb +12 -0
- data/dummy/psql/app/views/posts/edit.html.erb +10 -0
- data/dummy/psql/app/views/posts/index.html.erb +14 -0
- data/dummy/psql/app/views/posts/new.html.erb +9 -0
- data/dummy/psql/app/views/posts/show.html.erb +10 -0
- data/dummy/psql/bin/bundle +109 -0
- data/dummy/psql/bin/rails +4 -0
- data/dummy/psql/bin/rake +4 -0
- data/dummy/psql/bin/setup +33 -0
- data/dummy/psql/config/application.rb +43 -0
- data/dummy/psql/config/boot.rb +3 -0
- data/dummy/psql/config/credentials.yml.enc +1 -0
- data/dummy/psql/config/database.yml +87 -0
- data/dummy/psql/config/environment.rb +5 -0
- data/dummy/psql/config/environments/development.rb +62 -0
- data/dummy/psql/config/environments/production.rb +75 -0
- data/dummy/psql/config/environments/test.rb +50 -0
- data/dummy/psql/config/locales/en.yml +33 -0
- data/dummy/psql/config/master.key +1 -0
- data/dummy/psql/config/puma.rb +43 -0
- data/dummy/psql/config/routes.rb +7 -0
- data/dummy/psql/config.ru +6 -0
- data/dummy/psql/db/migrate/20230330203226_create_posts.rb +10 -0
- data/dummy/psql/db/schema.rb +23 -0
- data/dummy/psql/db/seeds.rb +8 -0
- data/dummy/psql/log/.keep +0 -0
- data/dummy/psql/public/404.html +67 -0
- data/dummy/psql/public/422.html +67 -0
- data/dummy/psql/public/500.html +66 -0
- data/dummy/psql/public/apple-touch-icon-precomposed.png +0 -0
- data/dummy/psql/public/apple-touch-icon.png +0 -0
- data/dummy/psql/public/favicon.ico +0 -0
- data/dummy/psql/public/robots.txt +1 -0
- data/dummy/psql/tmp/.keep +0 -0
- data/dummy/psql/tmp/pids/.keep +0 -0
- data/lib/backy/app_config.rb +11 -0
- data/lib/backy/cli.rb +0 -0
- data/lib/backy/configuration.rb +66 -0
- data/lib/backy/db.rb +29 -0
- data/lib/backy/list.rb +18 -0
- data/lib/backy/pg_dump.rb +39 -0
- data/lib/backy/pg_restore.rb +27 -0
- data/lib/backy/railtie.rb +19 -0
- data/lib/backy/s3.rb +27 -0
- data/lib/backy/s3_list.rb +31 -0
- data/lib/backy/s3_load.rb +41 -0
- data/lib/backy/s3_save.rb +33 -0
- data/lib/backy/version.rb +3 -0
- data/lib/backy.rb +30 -0
- data/lib/tasks/backy_tasks.rake +84 -0
- metadata +291 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 79bb6103213004ae32e66537026b14efb957a6de480b11cc9fe0614eec32ed81
|
4
|
+
data.tar.gz: ef8e5b3e93dfd4da6aead26891631118b6b000fd3ca50f035e5f5975d8033949
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: ce262c9c1f830f87a304f3ee2fcee5d34aa68d0180a1397f1bb1c768322f43adefebc1dbf99baab58b4e78a6e047b89838dec865c22eb41593fb448a3a2c1719
|
7
|
+
data.tar.gz: 3910848351967b47731abaabdab28251c5be76d63fe21b8e8c64066cf56dc40d3def935d3266f3a8d71de9901c965b2260c1241b688f80fbc36c56859c59b506
|
data/.drone.yml
ADDED
data/.idea/.gitignore
ADDED
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
require:
|
2
|
+
- standard
|
3
|
+
- rubocop-rspec
|
4
|
+
- rubocop-performance
|
5
|
+
|
6
|
+
inherit_gem:
|
7
|
+
standard: config/base.yml
|
8
|
+
|
9
|
+
AllCops:
|
10
|
+
TargetRubyVersion: 3.2
|
11
|
+
NewCops: enable
|
12
|
+
|
13
|
+
RSpec:
|
14
|
+
Enabled: true # enable rubocop-rspec cops
|
15
|
+
|
16
|
+
RSpec/ExampleLength:
|
17
|
+
Max: 30
|
18
|
+
|
19
|
+
RSpec/MultipleExpectations:
|
20
|
+
Max: 5
|
21
|
+
|
22
|
+
RSpec/MultipleMemoizedHelpers:
|
23
|
+
Max: 10
|
data/CHANGELOG.md
ADDED
data/Gemfile
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source "https://rubygems.org"
|
4
|
+
|
5
|
+
# Specify your gem's dependencies in backy.gemspec
|
6
|
+
gemspec
|
7
|
+
|
8
|
+
gem "rake", "~> 13.0"
|
9
|
+
|
10
|
+
gem "rspec", "~> 3.0"
|
11
|
+
|
12
|
+
gem "standard", "~> 1.3"
|
13
|
+
|
14
|
+
gem "aws-sdk-s3", "~> 1.117"
|
15
|
+
|
16
|
+
gem "pg"
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,120 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
backy_rb (0.1.3)
|
5
|
+
activerecord (>= 4.0)
|
6
|
+
activesupport (>= 4.0)
|
7
|
+
aws-sdk-s3 (>= 1.117)
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
activemodel (7.0.5)
|
13
|
+
activesupport (= 7.0.5)
|
14
|
+
activerecord (7.0.5)
|
15
|
+
activemodel (= 7.0.5)
|
16
|
+
activesupport (= 7.0.5)
|
17
|
+
activesupport (7.0.5)
|
18
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
19
|
+
i18n (>= 1.6, < 2)
|
20
|
+
minitest (>= 5.1)
|
21
|
+
tzinfo (~> 2.0)
|
22
|
+
ast (2.4.2)
|
23
|
+
aws-eventstream (1.2.0)
|
24
|
+
aws-partitions (1.734.0)
|
25
|
+
aws-sdk-core (3.171.0)
|
26
|
+
aws-eventstream (~> 1, >= 1.0.2)
|
27
|
+
aws-partitions (~> 1, >= 1.651.0)
|
28
|
+
aws-sigv4 (~> 1.5)
|
29
|
+
jmespath (~> 1, >= 1.6.1)
|
30
|
+
aws-sdk-kms (1.63.0)
|
31
|
+
aws-sdk-core (~> 3, >= 3.165.0)
|
32
|
+
aws-sigv4 (~> 1.1)
|
33
|
+
aws-sdk-s3 (1.119.2)
|
34
|
+
aws-sdk-core (~> 3, >= 3.165.0)
|
35
|
+
aws-sdk-kms (~> 1)
|
36
|
+
aws-sigv4 (~> 1.4)
|
37
|
+
aws-sigv4 (1.5.2)
|
38
|
+
aws-eventstream (~> 1, >= 1.0.2)
|
39
|
+
brakeman (5.4.1)
|
40
|
+
concurrent-ruby (1.2.2)
|
41
|
+
diff-lcs (1.5.0)
|
42
|
+
i18n (1.14.0)
|
43
|
+
concurrent-ruby (~> 1.0)
|
44
|
+
jmespath (1.6.2)
|
45
|
+
json (2.6.3)
|
46
|
+
language_server-protocol (3.17.0.3)
|
47
|
+
minitest (5.18.0)
|
48
|
+
parallel (1.22.1)
|
49
|
+
parser (3.2.1.1)
|
50
|
+
ast (~> 2.4.1)
|
51
|
+
pg (1.5.3)
|
52
|
+
rainbow (3.1.1)
|
53
|
+
rake (13.0.6)
|
54
|
+
regexp_parser (2.7.0)
|
55
|
+
rexml (3.2.5)
|
56
|
+
rspec (3.12.0)
|
57
|
+
rspec-core (~> 3.12.0)
|
58
|
+
rspec-expectations (~> 3.12.0)
|
59
|
+
rspec-mocks (~> 3.12.0)
|
60
|
+
rspec-core (3.12.1)
|
61
|
+
rspec-support (~> 3.12.0)
|
62
|
+
rspec-expectations (3.12.2)
|
63
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
64
|
+
rspec-support (~> 3.12.0)
|
65
|
+
rspec-mocks (3.12.4)
|
66
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
67
|
+
rspec-support (~> 3.12.0)
|
68
|
+
rspec-support (3.12.0)
|
69
|
+
rubocop (1.48.1)
|
70
|
+
json (~> 2.3)
|
71
|
+
parallel (~> 1.10)
|
72
|
+
parser (>= 3.2.0.0)
|
73
|
+
rainbow (>= 2.2.2, < 4.0)
|
74
|
+
regexp_parser (>= 1.8, < 3.0)
|
75
|
+
rexml (>= 3.2.5, < 4.0)
|
76
|
+
rubocop-ast (>= 1.26.0, < 2.0)
|
77
|
+
ruby-progressbar (~> 1.7)
|
78
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
79
|
+
rubocop-ast (1.28.0)
|
80
|
+
parser (>= 3.2.1.0)
|
81
|
+
rubocop-capybara (2.17.1)
|
82
|
+
rubocop (~> 1.41)
|
83
|
+
rubocop-performance (1.16.0)
|
84
|
+
rubocop (>= 1.7.0, < 2.0)
|
85
|
+
rubocop-ast (>= 0.4.0)
|
86
|
+
rubocop-rake (0.6.0)
|
87
|
+
rubocop (~> 1.0)
|
88
|
+
rubocop-rspec (2.19.0)
|
89
|
+
rubocop (~> 1.33)
|
90
|
+
rubocop-capybara (~> 2.17)
|
91
|
+
ruby-progressbar (1.13.0)
|
92
|
+
standard (1.25.3)
|
93
|
+
language_server-protocol (~> 3.17.0.2)
|
94
|
+
rubocop (~> 1.48.1)
|
95
|
+
rubocop-performance (~> 1.16.0)
|
96
|
+
timecop (0.9.6)
|
97
|
+
tzinfo (2.0.6)
|
98
|
+
concurrent-ruby (~> 1.0)
|
99
|
+
unicode-display_width (2.4.2)
|
100
|
+
|
101
|
+
PLATFORMS
|
102
|
+
arm64-darwin-22
|
103
|
+
x86_64-linux
|
104
|
+
|
105
|
+
DEPENDENCIES
|
106
|
+
aws-sdk-s3 (~> 1.117)
|
107
|
+
backy_rb!
|
108
|
+
brakeman (~> 5.4)
|
109
|
+
pg
|
110
|
+
rake (~> 13.0)
|
111
|
+
rspec (~> 3.0)
|
112
|
+
rubocop (~> 1.44)
|
113
|
+
rubocop-performance (~> 1.15)
|
114
|
+
rubocop-rake (~> 0.6.0)
|
115
|
+
rubocop-rspec (~> 2.18)
|
116
|
+
standard (~> 1.3)
|
117
|
+
timecop (~> 0.9.6)
|
118
|
+
|
119
|
+
BUNDLED WITH
|
120
|
+
2.4.8
|
data/README.md
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
# Backy
|
2
|
+
![bucky.png](bucky.png)
|
3
|
+
<small>Bucky the Backy Beaver</small>
|
4
|
+
|
5
|
+
Introducing "Backy" - the ultimate database backup gem for Ruby on Rails applications! Safeguard your valuable data with ease, speed, and reliability. Developed with the Rails community in mind, Backy provides a comprehensive solution for handling your database backups, ensuring your information is safe and sound.
|
6
|
+
|
7
|
+
## Installation Rails
|
8
|
+
|
9
|
+
Add gem to gemfile
|
10
|
+
|
11
|
+
gem 'backy'
|
12
|
+
|
13
|
+
Create initializer `config/initializers/backy.rb`
|
14
|
+
|
15
|
+
```ruby
|
16
|
+
Backy.configure do |config|
|
17
|
+
config.s3_access_key = ""
|
18
|
+
config.s3_secret = ""
|
19
|
+
config.s3_bucket = ""
|
20
|
+
config.s3_region = ""
|
21
|
+
end
|
22
|
+
```
|
23
|
+
|
24
|
+
## Usage
|
25
|
+
|
26
|
+
TODO
|
27
|
+
|
28
|
+
## Development
|
29
|
+
|
30
|
+
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.
|
31
|
+
|
32
|
+
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 the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
33
|
+
|
34
|
+
## Contributing
|
35
|
+
|
36
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/rubynor/backy.
|
data/Rakefile
ADDED
data/backy.gemspec
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "lib/backy/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "backy_rb"
|
7
|
+
spec.version = Backy::VERSION
|
8
|
+
spec.authors = ["Alexey Kharchenko", "Martin Ulleberg", "Pål André Sundt"]
|
9
|
+
spec.email = ["akharchenko@gmail.com", "martin.ulleberg@gmail.com", "pal@rubynor.com"]
|
10
|
+
|
11
|
+
spec.summary = "Backy is a powerful and user-friendly database backup gem designed specifically for Ruby on Rails applications. It streamlines the backup process, ensuring your data is safe, secure, and easily retrievable. With its versatile features and easy integration, Backy is the go-to solution for Rails developers looking to protect their valuable information."
|
12
|
+
spec.description = "Backy is a comprehensive database backup solution for Ruby on Rails applications, created to help developers manage and safeguard their data with ease. This robust gem offers a wide range of features"
|
13
|
+
spec.homepage = "https://rubynor.com"
|
14
|
+
spec.required_ruby_version = ">= 2.2.0"
|
15
|
+
|
16
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
17
|
+
spec.metadata["source_code_uri"] = "https://github.com/rubynor/backy"
|
18
|
+
spec.metadata["changelog_uri"] = "https://github.com/rubynor/backy/blob/main/CHANGELOG.md"
|
19
|
+
|
20
|
+
# Specify which files should be added to the gem when it is released.
|
21
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
22
|
+
spec.files = Dir.chdir(__dir__) do
|
23
|
+
`git ls-files -z`.split("\x0").reject do |f|
|
24
|
+
(File.expand_path(f) == __FILE__) || f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor])
|
25
|
+
end
|
26
|
+
end
|
27
|
+
spec.bindir = "exe"
|
28
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
29
|
+
spec.require_paths = ["lib"]
|
30
|
+
|
31
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
32
|
+
spec.add_development_dependency "rubocop", "~> 1.44"
|
33
|
+
spec.add_development_dependency "standard", "~> 1.24"
|
34
|
+
spec.add_development_dependency "brakeman", "~> 5.4"
|
35
|
+
spec.add_development_dependency "rubocop-rspec", "~> 2.18"
|
36
|
+
spec.add_development_dependency "rubocop-performance", "~> 1.15"
|
37
|
+
spec.add_development_dependency "rubocop-rake", "~> 0.6.0"
|
38
|
+
spec.add_development_dependency "timecop", "~> 0.9.6"
|
39
|
+
|
40
|
+
spec.add_dependency "activerecord", ">= 4.0"
|
41
|
+
spec.add_dependency "activesupport", ">= 4.0"
|
42
|
+
spec.add_dependency "aws-sdk-s3", ">= 1.117"
|
43
|
+
# For more information and examples about making a new gem, check out our
|
44
|
+
# guide at: https://bundler.io/guides/creating_gem.html
|
45
|
+
end
|
data/bucky.png
ADDED
Binary file
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
2
|
+
#
|
3
|
+
# If you find yourself ignoring temporary files generated by your text editor
|
4
|
+
# or operating system, you probably want to add a global ignore instead:
|
5
|
+
# git config --global core.excludesfile '~/.gitignore_global'
|
6
|
+
|
7
|
+
# Ignore bundler config.
|
8
|
+
/.bundle
|
9
|
+
|
10
|
+
# Ignore all logfiles and tempfiles.
|
11
|
+
/log/*
|
12
|
+
/tmp/*
|
13
|
+
!/log/.keep
|
14
|
+
!/tmp/.keep
|
15
|
+
|
16
|
+
# Ignore pidfiles, but keep the directory.
|
17
|
+
/tmp/pids/*
|
18
|
+
!/tmp/pids/
|
19
|
+
!/tmp/pids/.keep
|
20
|
+
|
21
|
+
|
22
|
+
/public/assets
|
@@ -0,0 +1 @@
|
|
1
|
+
ruby-3.2.0
|
data/dummy/psql/Gemfile
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
source "https://rubygems.org"
|
2
|
+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
3
|
+
|
4
|
+
ruby "3.2.0"
|
5
|
+
|
6
|
+
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
|
7
|
+
gem "rails", "~> 7.0.4", ">= 7.0.4.2"
|
8
|
+
|
9
|
+
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
|
10
|
+
gem "sprockets-rails"
|
11
|
+
|
12
|
+
# Use postgresql as the database for Active Record
|
13
|
+
gem "pg", "~> 1.1"
|
14
|
+
|
15
|
+
# Use the Puma web server [https://github.com/puma/puma]
|
16
|
+
gem "puma", "~> 5.0"
|
17
|
+
|
18
|
+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
19
|
+
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
|
20
|
+
|
21
|
+
# Backy <3
|
22
|
+
gem "backy", path: "../../"
|
23
|
+
|
24
|
+
group :development, :test do
|
25
|
+
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
|
26
|
+
gem "debug", platforms: %i[mri mingw x64_mingw]
|
27
|
+
end
|
28
|
+
|
29
|
+
group :development do
|
30
|
+
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
|
31
|
+
# gem "spring"
|
32
|
+
end
|
33
|
+
|
34
|
+
gem "faker", "~> 3.1"
|
@@ -0,0 +1,207 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../..
|
3
|
+
specs:
|
4
|
+
backy (0.1.3)
|
5
|
+
activerecord (>= 4.0)
|
6
|
+
activesupport (>= 4.0)
|
7
|
+
aws-sdk-s3 (>= 1.117)
|
8
|
+
|
9
|
+
GEM
|
10
|
+
remote: https://rubygems.org/
|
11
|
+
specs:
|
12
|
+
actioncable (7.0.4.3)
|
13
|
+
actionpack (= 7.0.4.3)
|
14
|
+
activesupport (= 7.0.4.3)
|
15
|
+
nio4r (~> 2.0)
|
16
|
+
websocket-driver (>= 0.6.1)
|
17
|
+
actionmailbox (7.0.4.3)
|
18
|
+
actionpack (= 7.0.4.3)
|
19
|
+
activejob (= 7.0.4.3)
|
20
|
+
activerecord (= 7.0.4.3)
|
21
|
+
activestorage (= 7.0.4.3)
|
22
|
+
activesupport (= 7.0.4.3)
|
23
|
+
mail (>= 2.7.1)
|
24
|
+
net-imap
|
25
|
+
net-pop
|
26
|
+
net-smtp
|
27
|
+
actionmailer (7.0.4.3)
|
28
|
+
actionpack (= 7.0.4.3)
|
29
|
+
actionview (= 7.0.4.3)
|
30
|
+
activejob (= 7.0.4.3)
|
31
|
+
activesupport (= 7.0.4.3)
|
32
|
+
mail (~> 2.5, >= 2.5.4)
|
33
|
+
net-imap
|
34
|
+
net-pop
|
35
|
+
net-smtp
|
36
|
+
rails-dom-testing (~> 2.0)
|
37
|
+
actionpack (7.0.4.3)
|
38
|
+
actionview (= 7.0.4.3)
|
39
|
+
activesupport (= 7.0.4.3)
|
40
|
+
rack (~> 2.0, >= 2.2.0)
|
41
|
+
rack-test (>= 0.6.3)
|
42
|
+
rails-dom-testing (~> 2.0)
|
43
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
44
|
+
actiontext (7.0.4.3)
|
45
|
+
actionpack (= 7.0.4.3)
|
46
|
+
activerecord (= 7.0.4.3)
|
47
|
+
activestorage (= 7.0.4.3)
|
48
|
+
activesupport (= 7.0.4.3)
|
49
|
+
globalid (>= 0.6.0)
|
50
|
+
nokogiri (>= 1.8.5)
|
51
|
+
actionview (7.0.4.3)
|
52
|
+
activesupport (= 7.0.4.3)
|
53
|
+
builder (~> 3.1)
|
54
|
+
erubi (~> 1.4)
|
55
|
+
rails-dom-testing (~> 2.0)
|
56
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
57
|
+
activejob (7.0.4.3)
|
58
|
+
activesupport (= 7.0.4.3)
|
59
|
+
globalid (>= 0.3.6)
|
60
|
+
activemodel (7.0.4.3)
|
61
|
+
activesupport (= 7.0.4.3)
|
62
|
+
activerecord (7.0.4.3)
|
63
|
+
activemodel (= 7.0.4.3)
|
64
|
+
activesupport (= 7.0.4.3)
|
65
|
+
activestorage (7.0.4.3)
|
66
|
+
actionpack (= 7.0.4.3)
|
67
|
+
activejob (= 7.0.4.3)
|
68
|
+
activerecord (= 7.0.4.3)
|
69
|
+
activesupport (= 7.0.4.3)
|
70
|
+
marcel (~> 1.0)
|
71
|
+
mini_mime (>= 1.1.0)
|
72
|
+
activesupport (7.0.4.3)
|
73
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
74
|
+
i18n (>= 1.6, < 2)
|
75
|
+
minitest (>= 5.1)
|
76
|
+
tzinfo (~> 2.0)
|
77
|
+
aws-eventstream (1.2.0)
|
78
|
+
aws-partitions (1.779.0)
|
79
|
+
aws-sdk-core (3.174.0)
|
80
|
+
aws-eventstream (~> 1, >= 1.0.2)
|
81
|
+
aws-partitions (~> 1, >= 1.651.0)
|
82
|
+
aws-sigv4 (~> 1.5)
|
83
|
+
jmespath (~> 1, >= 1.6.1)
|
84
|
+
aws-sdk-kms (1.66.0)
|
85
|
+
aws-sdk-core (~> 3, >= 3.174.0)
|
86
|
+
aws-sigv4 (~> 1.1)
|
87
|
+
aws-sdk-s3 (1.124.0)
|
88
|
+
aws-sdk-core (~> 3, >= 3.174.0)
|
89
|
+
aws-sdk-kms (~> 1)
|
90
|
+
aws-sigv4 (~> 1.4)
|
91
|
+
aws-sigv4 (1.5.2)
|
92
|
+
aws-eventstream (~> 1, >= 1.0.2)
|
93
|
+
builder (3.2.4)
|
94
|
+
concurrent-ruby (1.2.2)
|
95
|
+
crass (1.0.6)
|
96
|
+
date (3.3.3)
|
97
|
+
debug (1.7.2)
|
98
|
+
irb (>= 1.5.0)
|
99
|
+
reline (>= 0.3.1)
|
100
|
+
erubi (1.12.0)
|
101
|
+
faker (3.1.1)
|
102
|
+
i18n (>= 1.8.11, < 2)
|
103
|
+
globalid (1.1.0)
|
104
|
+
activesupport (>= 5.0)
|
105
|
+
i18n (1.12.0)
|
106
|
+
concurrent-ruby (~> 1.0)
|
107
|
+
io-console (0.6.0)
|
108
|
+
irb (1.6.3)
|
109
|
+
reline (>= 0.3.0)
|
110
|
+
jmespath (1.6.2)
|
111
|
+
loofah (2.19.1)
|
112
|
+
crass (~> 1.0.2)
|
113
|
+
nokogiri (>= 1.5.9)
|
114
|
+
mail (2.8.1)
|
115
|
+
mini_mime (>= 0.1.1)
|
116
|
+
net-imap
|
117
|
+
net-pop
|
118
|
+
net-smtp
|
119
|
+
marcel (1.0.2)
|
120
|
+
method_source (1.0.0)
|
121
|
+
mini_mime (1.1.2)
|
122
|
+
minitest (5.18.0)
|
123
|
+
net-imap (0.3.4)
|
124
|
+
date
|
125
|
+
net-protocol
|
126
|
+
net-pop (0.1.2)
|
127
|
+
net-protocol
|
128
|
+
net-protocol (0.2.1)
|
129
|
+
timeout
|
130
|
+
net-smtp (0.3.3)
|
131
|
+
net-protocol
|
132
|
+
nio4r (2.5.8)
|
133
|
+
nokogiri (1.14.2-arm64-darwin)
|
134
|
+
racc (~> 1.4)
|
135
|
+
nokogiri (1.14.2-x86_64-linux)
|
136
|
+
racc (~> 1.4)
|
137
|
+
pg (1.4.6)
|
138
|
+
puma (5.6.5)
|
139
|
+
nio4r (~> 2.0)
|
140
|
+
racc (1.6.2)
|
141
|
+
rack (2.2.6.4)
|
142
|
+
rack-test (2.1.0)
|
143
|
+
rack (>= 1.3)
|
144
|
+
rails (7.0.4.3)
|
145
|
+
actioncable (= 7.0.4.3)
|
146
|
+
actionmailbox (= 7.0.4.3)
|
147
|
+
actionmailer (= 7.0.4.3)
|
148
|
+
actionpack (= 7.0.4.3)
|
149
|
+
actiontext (= 7.0.4.3)
|
150
|
+
actionview (= 7.0.4.3)
|
151
|
+
activejob (= 7.0.4.3)
|
152
|
+
activemodel (= 7.0.4.3)
|
153
|
+
activerecord (= 7.0.4.3)
|
154
|
+
activestorage (= 7.0.4.3)
|
155
|
+
activesupport (= 7.0.4.3)
|
156
|
+
bundler (>= 1.15.0)
|
157
|
+
railties (= 7.0.4.3)
|
158
|
+
rails-dom-testing (2.0.3)
|
159
|
+
activesupport (>= 4.2.0)
|
160
|
+
nokogiri (>= 1.6)
|
161
|
+
rails-html-sanitizer (1.5.0)
|
162
|
+
loofah (~> 2.19, >= 2.19.1)
|
163
|
+
railties (7.0.4.3)
|
164
|
+
actionpack (= 7.0.4.3)
|
165
|
+
activesupport (= 7.0.4.3)
|
166
|
+
method_source
|
167
|
+
rake (>= 12.2)
|
168
|
+
thor (~> 1.0)
|
169
|
+
zeitwerk (~> 2.5)
|
170
|
+
rake (13.0.6)
|
171
|
+
reline (0.3.3)
|
172
|
+
io-console (~> 0.5)
|
173
|
+
sprockets (4.2.0)
|
174
|
+
concurrent-ruby (~> 1.0)
|
175
|
+
rack (>= 2.2.4, < 4)
|
176
|
+
sprockets-rails (3.4.2)
|
177
|
+
actionpack (>= 5.2)
|
178
|
+
activesupport (>= 5.2)
|
179
|
+
sprockets (>= 3.0.0)
|
180
|
+
thor (1.2.1)
|
181
|
+
timeout (0.3.2)
|
182
|
+
tzinfo (2.0.6)
|
183
|
+
concurrent-ruby (~> 1.0)
|
184
|
+
websocket-driver (0.7.5)
|
185
|
+
websocket-extensions (>= 0.1.0)
|
186
|
+
websocket-extensions (0.1.5)
|
187
|
+
zeitwerk (2.6.7)
|
188
|
+
|
189
|
+
PLATFORMS
|
190
|
+
arm64-darwin-22
|
191
|
+
x86_64-linux
|
192
|
+
|
193
|
+
DEPENDENCIES
|
194
|
+
backy!
|
195
|
+
debug
|
196
|
+
faker (~> 3.1)
|
197
|
+
pg (~> 1.1)
|
198
|
+
puma (~> 5.0)
|
199
|
+
rails (~> 7.0.4, >= 7.0.4.2)
|
200
|
+
sprockets-rails
|
201
|
+
tzinfo-data
|
202
|
+
|
203
|
+
RUBY VERSION
|
204
|
+
ruby 3.2.0p0
|
205
|
+
|
206
|
+
BUNDLED WITH
|
207
|
+
2.4.8
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# README
|
2
|
+
|
3
|
+
This README would normally document whatever steps are necessary to get the
|
4
|
+
application up and running.
|
5
|
+
|
6
|
+
Things you may want to cover:
|
7
|
+
|
8
|
+
* Ruby version
|
9
|
+
|
10
|
+
* System dependencies
|
11
|
+
|
12
|
+
* Configuration
|
13
|
+
|
14
|
+
* Database creation
|
15
|
+
|
16
|
+
* Database initialization
|
17
|
+
|
18
|
+
* How to run the test suite
|
19
|
+
|
20
|
+
* Services (job queues, cache servers, search engines, etc.)
|
21
|
+
|
22
|
+
* Deployment instructions
|
23
|
+
|
24
|
+
* ...
|
data/dummy/psql/Rakefile
ADDED
File without changes
|
@@ -0,0 +1,15 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
+
* listed below.
|
4
|
+
*
|
5
|
+
* Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
|
6
|
+
* vendor/assets/stylesheets directory can be referenced here using a relative path.
|
7
|
+
*
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
9
|
+
* compiled file so the styles you add here take precedence over styles defined in any other CSS
|
10
|
+
* files in this directory. Styles in this file should be added after the last require_* statement.
|
11
|
+
* It is generally better to create a new file per style scope.
|
12
|
+
*
|
13
|
+
*= require_tree .
|
14
|
+
*= require_self
|
15
|
+
*/
|
File without changes
|