nvar 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 49a1bf64e13ee7123255619b7e6d6c24d9093b01b1e93b7c69d1318f4076a182
4
+ data.tar.gz: c007313b2c059f2f728fff36ca413b43a9f1bfbf6733f72d4bf647426bf93db1
5
+ SHA512:
6
+ metadata.gz: 570b2e0bf08c060e4786d6f51c9a12255c9c005fc87dee908980a9530fb6e28e1ec689c2af5635b9fa4197ea2e19153fda6108010c03d04f9c21965cdc4d789b
7
+ data.tar.gz: 693a6194f20c4dbd736d377912b4657fa29f59a86cf52877096e065edcfdcc4efd82b79f30d5475338b4230b98678a3e374a853ab8087d30bb231ffaef602277
@@ -0,0 +1,14 @@
1
+ # [Choice] Ruby version (use -bullseye variants on local arm64/Apple Silicon): 3, 3.0, 2, 2.7, 2.6, 3-bullseye, 3.0-bullseye, 2-bullseye, 2.7-bullseye, 2.6-bullseye, 3-buster, 3.0-buster, 2-buster, 2.7-buster, 2.6-buster
2
+ ARG VARIANT=2-bullseye
3
+ FROM mcr.microsoft.com/vscode/devcontainers/ruby:0-${VARIANT}
4
+
5
+ # Install Rails
6
+ RUN gem install rails webdrivers
7
+
8
+ # Default value to allow debug server to serve content over GitHub Codespace's port forwarding service
9
+ # The value is a comma-separated list of allowed domains
10
+ ENV RAILS_DEVELOPMENT_HOSTS=".githubpreview.dev"
11
+
12
+ # [Choice] Node.js version: lts/*, 16, 14, 12, 10
13
+ ARG NODE_VERSION="lts/*"
14
+ RUN su vscode -c "source /usr/local/share/nvm/nvm.sh && nvm install ${NODE_VERSION} 2>&1"
@@ -0,0 +1,2 @@
1
+ CREATE USER vscode CREATEDB;
2
+ CREATE DATABASE vscode WITH OWNER vscode;
@@ -0,0 +1,53 @@
1
+ // For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
2
+ // https://github.com/microsoft/vscode-dev-containers/tree/v0.208.0/containers/ruby-rails-postgres
3
+ // Update the VARIANT arg in docker-compose.yml to pick a Ruby version
4
+ {
5
+ "name": "Ruby on Rails & Postgres",
6
+ "dockerComposeFile": "docker-compose.yml",
7
+ "service": "app",
8
+ "workspaceFolder": "/workspace",
9
+
10
+ // Set *default* container specific settings.json values on container create.
11
+ "settings": {
12
+ "sqltools.connections": [
13
+ {
14
+ "name": "Rails Development Database",
15
+ "driver": "PostgreSQL",
16
+ "previewLimit": 50,
17
+ "server": "localhost",
18
+ "port": 5432,
19
+
20
+ // update this to match config/database.yml
21
+ "database": "app_development",
22
+ "username": "vscode"
23
+ },
24
+ {
25
+ "name": "Rails Test Database",
26
+ "driver": "PostgreSQL",
27
+ "previewLimit": 50,
28
+ "server": "localhost",
29
+ "port": 5432,
30
+
31
+ // update this to match config/database.yml
32
+ "database": "app_test",
33
+ "username": "vscode"
34
+ }
35
+ ]
36
+ },
37
+
38
+ // Add the IDs of extensions you want installed when the container is created.
39
+ "extensions": [
40
+ "rebornix.Ruby",
41
+ "mtxr.sqltools",
42
+ "mtxr.sqltools-driver-pg"
43
+ ],
44
+
45
+ // Use 'forwardPorts' to make a list of ports inside the container available locally.
46
+ // "forwardPorts": [3000, 5432],
47
+
48
+ // Use 'postCreateCommand' to run commands after the container is created.
49
+ "postCreateCommand": "script/create-sample-app",
50
+
51
+ // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
52
+ "remoteUser": "vscode"
53
+ }
@@ -0,0 +1,44 @@
1
+ version: '3'
2
+
3
+ services:
4
+ app:
5
+ build:
6
+ context: ..
7
+ dockerfile: .devcontainer/Dockerfile
8
+ args:
9
+ # Update 'VARIANT' to pick a version of Ruby: 3, 3.0, 2, 2.7, 2.6
10
+ # Append -bullseye or -buster to pin to an OS version.
11
+ # Use -bullseye variants on local arm64/Apple Silicon.
12
+ VARIANT: "3"
13
+ # Optional Node.js version to install
14
+ NODE_VERSION: "lts/*"
15
+
16
+ volumes:
17
+ - ..:/workspace:cached
18
+
19
+ # Overrides default command so things don't shut down after the process ends.
20
+ command: sleep infinity
21
+
22
+ # Runs app on the same network as the database container, allows "forwardPorts" in devcontainer.json function.
23
+ network_mode: service:db
24
+ # Uncomment the next line to use a non-root user for all processes.
25
+ # user: vscode
26
+
27
+ # Use "forwardPorts" in **devcontainer.json** to forward an app port locally.
28
+ # (Adding the "ports" property to this file will not forward from a Codespace.)
29
+
30
+ db:
31
+ image: postgres:latest
32
+ restart: unless-stopped
33
+ volumes:
34
+ - postgres-data:/var/lib/postgresql/data
35
+ - ./create-db-user.sql:/docker-entrypoint-initdb.d/create-db-user.sql
36
+ environment:
37
+ POSTGRES_USER: postgres
38
+ POSTGRES_DB: postgres
39
+ POSTGRES_PASSWORD: postgres
40
+ # Add "forwardPorts": ["5432"] to **devcontainer.json** to forward PostgreSQL locally.
41
+ # (Adding the "ports" property to this file will not forward from a Codespace.)
42
+
43
+ volumes:
44
+ postgres-data: null
@@ -0,0 +1,31 @@
1
+ name: 'Release'
2
+ on:
3
+ push:
4
+ tags:
5
+ - '*'
6
+
7
+ jobs:
8
+ release:
9
+ if: startsWith(github.ref, 'refs/tags/v')
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Build Changelog
13
+ id: github_release
14
+ uses: mikepenz/release-changelog-builder-action@v1
15
+ env:
16
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17
+ - name: Create Release
18
+ uses: actions/create-release@v1
19
+ with:
20
+ tag_name: ${{ github.ref }}
21
+ release_name: ${{ github.ref }}
22
+ body: ${{steps.github_release.outputs.changelog}}
23
+ env:
24
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25
+ - uses: actions/checkout@v1
26
+ - name: Release Gem
27
+ uses: cadwallion/publish-rubygems-action@master
28
+ env:
29
+ GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
30
+ RUBYGEMS_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
31
+ RELEASE_COMMAND: rake release
@@ -0,0 +1,32 @@
1
+ # This workflow uses actions that are not certified by GitHub.
2
+ # They are provided by a third-party and are governed by
3
+ # separate terms of service, privacy policy, and support
4
+ # documentation.
5
+ # This workflow will download a prebuilt Ruby version, install dependencies, and run linters
6
+ name: Rails - Install dependencies and run linters
7
+
8
+ on:
9
+ push:
10
+ branches: [ main ]
11
+ pull_request:
12
+ branches: [ main ]
13
+ jobs:
14
+ run-lint:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout code
18
+ uses: actions/checkout@v2
19
+
20
+ - name: Setup Ruby and install gems
21
+ uses: ruby/setup-ruby@v1
22
+ with:
23
+ bundler-cache: true
24
+ - name: Run security checks
25
+ run: |
26
+ bin/bundler-audit --update
27
+ - name: Run linters
28
+ run: |
29
+ # bin/rubocop
30
+ - name: Run tests
31
+ run: |
32
+ bin/rspec
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,9 @@
1
+ inherit_from: .rubocop_todo.yml
2
+ Metrics/BlockLength:
3
+ Exclude:
4
+ - 'spec/**/*'
5
+ - 'nvar.gemspec'
6
+ AllCops:
7
+ NewCops: enable
8
+ Exclude:
9
+ - 'bin/**/*'
data/.rubocop_todo.yml ADDED
@@ -0,0 +1,11 @@
1
+ # This configuration was generated by
2
+ # `rubocop --auto-gen-config`
3
+ # on 2021-12-17 12:28:03 UTC using RuboCop version 1.23.0.
4
+ # The point is for the user to remove these configuration records
5
+ # one by one as the offenses are removed from the code base.
6
+ # Note that changes in the inspected code, or installation of new
7
+ # versions of RuboCop, may require this file to be generated again.
8
+
9
+ # Offense count: 4
10
+ # Configuration parameters: CountComments, CountAsOne, ExcludedMethods, IgnoredMethods.
11
+ # IgnoredMethods: refine
data/.tool-versions ADDED
@@ -0,0 +1 @@
1
+ ruby 2.7.5
data/CHANGELOG.md ADDED
File without changes
@@ -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 si@mon.fish. 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 [https://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: https://contributor-covenant.org
74
+ [version]: https://contributor-covenant.org/version/1/4/
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,41 @@
1
+ ---
2
+ layout: default
3
+ title: Contributing
4
+ ---
5
+
6
+ # Contributing
7
+
8
+ _This project is intended to be a safe, welcoming space for collaboration. By participating in this project you agree to abide by the [Contributor Code of Conduct](CODE_OF_CONDUCT.md)._
9
+
10
+ Hi there! I'm thrilled that you'd like to contribute to this project. Your help is essential for keeping it great.
11
+
12
+ If you have any substantial changes that you would like to make, please [open a discussion](http://github.com/boardfish/nvar/discussions/new) first to discuss them with me. If you've encountered a bug, please [raise an issue](http://github.com/boardfish/nvar/issues/new) instead.
13
+
14
+ ## Reporting bugs
15
+
16
+ When opening an issue to describe a bug, it's helpful to provide steps to reproduce it, either with failing tests in a pull request, or by sharing a repository that demonstrates the issue. Follow the installation instructions in the README to get started. If the problem is specific to Rails, you may want to use `rails new --minimal` to make a barebones Rails app that replicates your failure.
17
+
18
+ Add as little code as possible that's necessary to reproduce the issue. If possible, use the original code that caused the issue in your application. Publish the repository and add a link to the bug report issue.
19
+
20
+ ## Submitting a pull request
21
+
22
+ 1. [Fork](https://github.com/boardfish/nvar/fork) and clone the repository.
23
+ 1. Configure and install the dependencies: `bundle`.
24
+ 1. Make sure the tests pass on your machine: `bundle exec rspec`.
25
+ 1. Create a new branch: `git checkout -b my-branch-name`.
26
+ 1. Add tests, then make the changes that will get those tests to pass.
27
+ 1. Add an entry to the top of `docs/CHANGELOG.md` for your changes, no matter how small they are. Every contribution makes `Nvar` just that little bit greater!
28
+ 1. Push to your fork and [submit a pull request](https://github.com/boardfish/nvar/compare).
29
+ 1. Pat yourself on the back and wait for your pull request to be reviewed and merged.
30
+
31
+ Here are a few things you can do that will increase the likelihood of your pull request being accepted:
32
+
33
+ - Write tests.
34
+ - Keep your change as focused as possible. If there are multiple changes you would like to make that aren't dependent upon each other, consider submitting them as separate pull requests.
35
+ - Write a [good commit message](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).
36
+
37
+ ## Releasing
38
+
39
+ If you are the current maintainer of this gem:
40
+
41
+ 1. Run `rake release`.
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ # Specify your gem's dependencies in nvar.gemspec
6
+ gemspec
7
+
8
+ gem 'rake', '~> 12.0'
9
+ gem 'rspec', '~> 3.0'
data/Gemfile.lock ADDED
@@ -0,0 +1,209 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ nvar (0.1.0)
5
+ activesupport (>= 5.0.0, < 8.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (6.1.4.4)
11
+ actionpack (= 6.1.4.4)
12
+ activesupport (= 6.1.4.4)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ actionmailbox (6.1.4.4)
16
+ actionpack (= 6.1.4.4)
17
+ activejob (= 6.1.4.4)
18
+ activerecord (= 6.1.4.4)
19
+ activestorage (= 6.1.4.4)
20
+ activesupport (= 6.1.4.4)
21
+ mail (>= 2.7.1)
22
+ actionmailer (6.1.4.4)
23
+ actionpack (= 6.1.4.4)
24
+ actionview (= 6.1.4.4)
25
+ activejob (= 6.1.4.4)
26
+ activesupport (= 6.1.4.4)
27
+ mail (~> 2.5, >= 2.5.4)
28
+ rails-dom-testing (~> 2.0)
29
+ actionpack (6.1.4.4)
30
+ actionview (= 6.1.4.4)
31
+ activesupport (= 6.1.4.4)
32
+ rack (~> 2.0, >= 2.0.9)
33
+ rack-test (>= 0.6.3)
34
+ rails-dom-testing (~> 2.0)
35
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
36
+ actiontext (6.1.4.4)
37
+ actionpack (= 6.1.4.4)
38
+ activerecord (= 6.1.4.4)
39
+ activestorage (= 6.1.4.4)
40
+ activesupport (= 6.1.4.4)
41
+ nokogiri (>= 1.8.5)
42
+ actionview (6.1.4.4)
43
+ activesupport (= 6.1.4.4)
44
+ builder (~> 3.1)
45
+ erubi (~> 1.4)
46
+ rails-dom-testing (~> 2.0)
47
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
48
+ activejob (6.1.4.4)
49
+ activesupport (= 6.1.4.4)
50
+ globalid (>= 0.3.6)
51
+ activemodel (6.1.4.4)
52
+ activesupport (= 6.1.4.4)
53
+ activerecord (6.1.4.4)
54
+ activemodel (= 6.1.4.4)
55
+ activesupport (= 6.1.4.4)
56
+ activestorage (6.1.4.4)
57
+ actionpack (= 6.1.4.4)
58
+ activejob (= 6.1.4.4)
59
+ activerecord (= 6.1.4.4)
60
+ activesupport (= 6.1.4.4)
61
+ marcel (~> 1.0.0)
62
+ mini_mime (>= 1.1.0)
63
+ activesupport (6.1.4.4)
64
+ concurrent-ruby (~> 1.0, >= 1.0.2)
65
+ i18n (>= 1.6, < 2)
66
+ minitest (>= 5.1)
67
+ tzinfo (~> 2.0)
68
+ zeitwerk (~> 2.3)
69
+ ast (2.4.2)
70
+ builder (3.2.4)
71
+ bundler-audit (0.9.0.1)
72
+ bundler (>= 1.2.0, < 3)
73
+ thor (~> 1.0)
74
+ byebug (11.1.3)
75
+ climate_control (1.0.1)
76
+ concurrent-ruby (1.1.9)
77
+ crass (1.0.6)
78
+ diff-lcs (1.4.4)
79
+ docile (1.4.0)
80
+ erubi (1.10.0)
81
+ globalid (1.0.0)
82
+ activesupport (>= 5.0)
83
+ i18n (1.8.11)
84
+ concurrent-ruby (~> 1.0)
85
+ loofah (2.13.0)
86
+ crass (~> 1.0.2)
87
+ nokogiri (>= 1.5.9)
88
+ mail (2.7.1)
89
+ mini_mime (>= 0.1.1)
90
+ marcel (1.0.2)
91
+ method_source (1.0.0)
92
+ mini_mime (1.1.2)
93
+ mini_portile2 (2.6.1)
94
+ minitest (5.15.0)
95
+ nio4r (2.5.8)
96
+ nokogiri (1.12.5)
97
+ mini_portile2 (~> 2.6.1)
98
+ racc (~> 1.4)
99
+ parallel (1.21.0)
100
+ parser (3.0.3.2)
101
+ ast (~> 2.4.1)
102
+ racc (1.6.0)
103
+ rack (2.2.3)
104
+ rack-test (1.1.0)
105
+ rack (>= 1.0, < 3)
106
+ rails (6.1.4.4)
107
+ actioncable (= 6.1.4.4)
108
+ actionmailbox (= 6.1.4.4)
109
+ actionmailer (= 6.1.4.4)
110
+ actionpack (= 6.1.4.4)
111
+ actiontext (= 6.1.4.4)
112
+ actionview (= 6.1.4.4)
113
+ activejob (= 6.1.4.4)
114
+ activemodel (= 6.1.4.4)
115
+ activerecord (= 6.1.4.4)
116
+ activestorage (= 6.1.4.4)
117
+ activesupport (= 6.1.4.4)
118
+ bundler (>= 1.15.0)
119
+ railties (= 6.1.4.4)
120
+ sprockets-rails (>= 2.0.0)
121
+ rails-dom-testing (2.0.3)
122
+ activesupport (>= 4.2.0)
123
+ nokogiri (>= 1.6)
124
+ rails-html-sanitizer (1.4.2)
125
+ loofah (~> 2.3)
126
+ railties (6.1.4.4)
127
+ actionpack (= 6.1.4.4)
128
+ activesupport (= 6.1.4.4)
129
+ method_source
130
+ rake (>= 0.13)
131
+ thor (~> 1.0)
132
+ rainbow (3.0.0)
133
+ rake (12.3.3)
134
+ regexp_parser (2.2.0)
135
+ rexml (3.2.5)
136
+ rspec (3.10.0)
137
+ rspec-core (~> 3.10.0)
138
+ rspec-expectations (~> 3.10.0)
139
+ rspec-mocks (~> 3.10.0)
140
+ rspec-core (3.10.1)
141
+ rspec-support (~> 3.10.0)
142
+ rspec-expectations (3.10.1)
143
+ diff-lcs (>= 1.2.0, < 2.0)
144
+ rspec-support (~> 3.10.0)
145
+ rspec-mocks (3.10.2)
146
+ diff-lcs (>= 1.2.0, < 2.0)
147
+ rspec-support (~> 3.10.0)
148
+ rspec-support (3.10.3)
149
+ rubocop (1.12.1)
150
+ parallel (~> 1.10)
151
+ parser (>= 3.0.0.0)
152
+ rainbow (>= 2.2.2, < 4.0)
153
+ regexp_parser (>= 1.8, < 3.0)
154
+ rexml
155
+ rubocop-ast (>= 1.2.0, < 2.0)
156
+ ruby-progressbar (~> 1.7)
157
+ unicode-display_width (>= 1.4.0, < 3.0)
158
+ rubocop-ast (1.15.0)
159
+ parser (>= 3.0.1.1)
160
+ rubocop-rake (0.6.0)
161
+ rubocop (~> 1.0)
162
+ rubocop-rspec (2.4.0)
163
+ rubocop (~> 1.0)
164
+ rubocop-ast (>= 1.1.0)
165
+ ruby-progressbar (1.11.0)
166
+ simplecov (0.21.2)
167
+ docile (~> 1.1)
168
+ simplecov-html (~> 0.11)
169
+ simplecov_json_formatter (~> 0.1)
170
+ simplecov-html (0.12.3)
171
+ simplecov_json_formatter (0.1.3)
172
+ sprockets (4.0.2)
173
+ concurrent-ruby (~> 1.0)
174
+ rack (> 1, < 3)
175
+ sprockets-rails (3.4.2)
176
+ actionpack (>= 5.2)
177
+ activesupport (>= 5.2)
178
+ sprockets (>= 3.0.0)
179
+ tempfile (0.1.2)
180
+ thor (1.1.0)
181
+ tzinfo (2.0.4)
182
+ concurrent-ruby (~> 1.0)
183
+ unicode-display_width (2.1.0)
184
+ vcr (6.0.0)
185
+ websocket-driver (0.7.5)
186
+ websocket-extensions (>= 0.1.0)
187
+ websocket-extensions (0.1.5)
188
+ zeitwerk (2.5.1)
189
+
190
+ PLATFORMS
191
+ ruby
192
+
193
+ DEPENDENCIES
194
+ bundler-audit
195
+ byebug
196
+ climate_control
197
+ nvar!
198
+ rails
199
+ rake (~> 12.0)
200
+ rspec (~> 3.0)
201
+ rubocop (~> 1.12.0)
202
+ rubocop-rake
203
+ rubocop-rspec
204
+ simplecov
205
+ tempfile
206
+ vcr
207
+
208
+ BUNDLED WITH
209
+ 2.1.4
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2021 Simon Fish
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.