rql_parser 0.0.1alpha → 0.0.1alpha1
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/CHANGELOG.md +0 -0
- data/README.md +3 -7
- data/lib/base_interaction.rb +2 -0
- data/lib/rql_parser/version.rb +1 -1
- data/rql_parser.gemspec +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0b24864e295be3bfd4a7e560c728e0c4106708248effa485386352d708be5a01
|
4
|
+
data.tar.gz: 539e5b6042a8b56c168bd0dc11d72a2a645cfdfb87b098277959341d35777e51
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 064a09130edf1256cc4c32fa60ac93487fd579d28c4765addf0df6e0027def31c559f245479f7bba0296f97aa384c63b4a51436bfe660a313491379ba4c2399b
|
7
|
+
data.tar.gz: bbb54d48da8512214747b2fbf402344313c929ad3e0eef4e3b715fc5845e7c77711471828170a0d2046f4dd597a171e5b99951f3a02edce7f2ecef8f9e24494e
|
data/CHANGELOG.md
ADDED
File without changes
|
data/README.md
CHANGED
@@ -1,9 +1,5 @@
|
|
1
1
|
# RqlParser
|
2
2
|
|
3
|
-
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/rql_parser`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
6
|
-
|
7
3
|
## Installation
|
8
4
|
|
9
5
|
Add this line to your application's Gemfile:
|
@@ -22,7 +18,7 @@ Or install it yourself as:
|
|
22
18
|
|
23
19
|
## Usage
|
24
20
|
|
25
|
-
TODO: Write usage instructions here
|
21
|
+
> TODO: Write usage instructions here
|
26
22
|
|
27
23
|
## Development
|
28
24
|
|
@@ -32,7 +28,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
32
28
|
|
33
29
|
## Contributing
|
34
30
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
31
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/deorigosa-work/rql_parser. 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.
|
36
32
|
|
37
33
|
## License
|
38
34
|
|
@@ -40,4 +36,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
40
36
|
|
41
37
|
## Code of Conduct
|
42
38
|
|
43
|
-
Everyone interacting in the RqlParser project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/
|
39
|
+
Everyone interacting in the RqlParser project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/deorigosa-work/rql_parser/blob/master/CODE_OF_CONDUCT.md).
|
data/lib/base_interaction.rb
CHANGED
data/lib/rql_parser/version.rb
CHANGED
data/rql_parser.gemspec
CHANGED
@@ -34,7 +34,7 @@ Gem::Specification.new do |spec|
|
|
34
34
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
35
35
|
spec.require_paths = ["lib"]
|
36
36
|
|
37
|
-
spec.add_dependency
|
37
|
+
spec.add_dependency "active_interaction", "~> 3.6.0"
|
38
38
|
spec.add_development_dependency "bundler", "~> 1.17"
|
39
39
|
spec.add_development_dependency "rake", "~> 10.0"
|
40
40
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rql_parser
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.1alpha1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aliaksei Kharkou
|
@@ -60,6 +60,7 @@ extensions: []
|
|
60
60
|
extra_rdoc_files: []
|
61
61
|
files:
|
62
62
|
- ".gitignore"
|
63
|
+
- CHANGELOG.md
|
63
64
|
- CODE_OF_CONDUCT.md
|
64
65
|
- Gemfile
|
65
66
|
- LICENSE.txt
|