rspec_sql_counter 0.1.0 → 0.1.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.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/Gemfile.lock +1 -1
- data/README.md +6 -6
- data/lib/{rspec_sql_matcher → rspec_sql_counter}/matcher.rb +1 -1
- data/lib/{rspec_sql_matcher → rspec_sql_counter}/sql_fetcher.rb +1 -1
- data/lib/rspec_sql_counter/version.rb +5 -0
- data/lib/rspec_sql_counter.rb +8 -0
- data/rspec_sql_counter-0.1.0.gem +0 -0
- data/rspec_sql_matcher.gemspec +5 -5
- data/sig/{rspec_sql_matcher.rbs → rspec_sql_counter.rbs} +1 -1
- metadata +11 -10
- data/lib/rspec_sql_matcher/version.rb +0 -5
- data/lib/rspec_sql_matcher.rb +0 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b6853bf07edf4008bb54822b317939e9e9649911d4f29f80101a9fa34c95ca65
|
|
4
|
+
data.tar.gz: 22205386bc3c3a0abab1c2bbfd563b64c76909156d56734f5e99caae4df48770
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ecb2f29518b4eb7dd8d04797a30c04e1660d47d759de89d25cafb6180da0c92ea69071330e3540e5dca82551e92cb9fe4b1954d8caaeb9a9e8eeb4328677f809
|
|
7
|
+
data.tar.gz: 8f4b2f17cca346e36f421e6ef9b1158c3cc7078f0094f9561ce9157a60f54a987ab082b6fff4ae332d314c2527b3c035695d21880283cd48e1cd7583ff05ad2e
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# RSpec SQL
|
|
1
|
+
# RSpec SQL Counter
|
|
2
2
|
|
|
3
|
-
Welcome to
|
|
3
|
+
Welcome to rspec_sql_counter gem!
|
|
4
4
|
|
|
5
5
|
It helps you to test SQL queries, that are called in code blocks.
|
|
6
6
|
|
|
@@ -9,7 +9,7 @@ It helps you to test SQL queries, that are called in code blocks.
|
|
|
9
9
|
Add this line to your application's Gemfile:
|
|
10
10
|
|
|
11
11
|
```ruby
|
|
12
|
-
gem '
|
|
12
|
+
gem 'rspec_sql_counter'
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
And then execute:
|
|
@@ -18,7 +18,7 @@ And then execute:
|
|
|
18
18
|
|
|
19
19
|
Or install it yourself as:
|
|
20
20
|
|
|
21
|
-
gem install
|
|
21
|
+
gem install rspec_sql_counter
|
|
22
22
|
|
|
23
23
|
## Usage
|
|
24
24
|
|
|
@@ -54,7 +54,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
54
54
|
|
|
55
55
|
## Contributing
|
|
56
56
|
|
|
57
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/NastyaPatutina/
|
|
57
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/NastyaPatutina/rspec_sql_counter. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/NastyaPatutina/rspec_sql_counter/blob/main/CODE_OF_CONDUCT.md).
|
|
58
58
|
|
|
59
59
|
## License
|
|
60
60
|
|
|
@@ -62,4 +62,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
|
62
62
|
|
|
63
63
|
## Code of Conduct
|
|
64
64
|
|
|
65
|
-
Everyone interacting in the
|
|
65
|
+
Everyone interacting in the RspecSqlCounter project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/NastyaPatutina/rspec_sql_counter/blob/main/CODE_OF_CONDUCT.md).
|
|
Binary file
|
data/rspec_sql_matcher.gemspec
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require_relative 'lib/
|
|
3
|
+
require_relative 'lib/rspec_sql_counter/version'
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = 'rspec_sql_counter'
|
|
7
|
-
spec.version =
|
|
7
|
+
spec.version = RspecSqlCounter::VERSION
|
|
8
8
|
spec.authors = ['Nastya Patutina']
|
|
9
9
|
spec.email = ['npatutina@gmail.com']
|
|
10
10
|
|
|
11
11
|
spec.summary = 'RSpec matcher for SQL queries'
|
|
12
12
|
spec.description = 'RSpec matcher for SQL queries'
|
|
13
|
-
spec.homepage = 'https://github.com/NastyaPatutina/
|
|
13
|
+
spec.homepage = 'https://github.com/NastyaPatutina/rspec_sql_counter'
|
|
14
14
|
spec.required_ruby_version = '>= 2.6.0'
|
|
15
15
|
|
|
16
16
|
spec.metadata['homepage_uri'] = spec.homepage
|
|
17
|
-
spec.metadata['source_code_uri'] = 'https://github.com/NastyaPatutina/
|
|
18
|
-
spec.metadata['changelog_uri'] = 'https://github.com/NastyaPatutina/
|
|
17
|
+
spec.metadata['source_code_uri'] = 'https://github.com/NastyaPatutina/rspec_sql_counter'
|
|
18
|
+
spec.metadata['changelog_uri'] = 'https://github.com/NastyaPatutina/rspec_sql_counter'
|
|
19
19
|
|
|
20
20
|
# Specify which files should be added to the gem when it is released.
|
|
21
21
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rspec_sql_counter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nastya Patutina
|
|
@@ -95,18 +95,19 @@ files:
|
|
|
95
95
|
- LICENSE.txt
|
|
96
96
|
- README.md
|
|
97
97
|
- Rakefile
|
|
98
|
-
- lib/
|
|
99
|
-
- lib/
|
|
100
|
-
- lib/
|
|
101
|
-
- lib/
|
|
98
|
+
- lib/rspec_sql_counter.rb
|
|
99
|
+
- lib/rspec_sql_counter/matcher.rb
|
|
100
|
+
- lib/rspec_sql_counter/sql_fetcher.rb
|
|
101
|
+
- lib/rspec_sql_counter/version.rb
|
|
102
|
+
- rspec_sql_counter-0.1.0.gem
|
|
102
103
|
- rspec_sql_matcher.gemspec
|
|
103
|
-
- sig/
|
|
104
|
-
homepage: https://github.com/NastyaPatutina/
|
|
104
|
+
- sig/rspec_sql_counter.rbs
|
|
105
|
+
homepage: https://github.com/NastyaPatutina/rspec_sql_counter
|
|
105
106
|
licenses: []
|
|
106
107
|
metadata:
|
|
107
|
-
homepage_uri: https://github.com/NastyaPatutina/
|
|
108
|
-
source_code_uri: https://github.com/NastyaPatutina/
|
|
109
|
-
changelog_uri: https://github.com/NastyaPatutina/
|
|
108
|
+
homepage_uri: https://github.com/NastyaPatutina/rspec_sql_counter
|
|
109
|
+
source_code_uri: https://github.com/NastyaPatutina/rspec_sql_counter
|
|
110
|
+
changelog_uri: https://github.com/NastyaPatutina/rspec_sql_counter
|
|
110
111
|
rubygems_mfa_required: 'true'
|
|
111
112
|
post_install_message:
|
|
112
113
|
rdoc_options: []
|