rspec-translation 1.0.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 771fb32db52f07132696fb9af05d8567f251f17b7fad7b0432b68bb079458f4a
4
+ data.tar.gz: 076e0f2cb165ac62ed0b76eecff875aeb973459204d2782443461ea6f6c1fcf9
5
+ SHA512:
6
+ metadata.gz: 99ea128e6f431b5b968e9f436f9d07d0ee518c670f4c98ae9d8fc2c62eb3c7e39e7af54c6f790859570a82f7c270026b10bc6d179c25b95c78238060874accd1
7
+ data.tar.gz: a29c5e3a75a26e73ed0248d68b18722693fa1422f3b9bbdd61ddad193145c383598a73e5b9a50843c99a80ea2c43294b434491a168f7787a23a6821254007ee7
@@ -0,0 +1,70 @@
1
+ # Ruby CircleCI 2.0 configuration file
2
+ #
3
+ # Check https://circleci.com/docs/2.0/language-ruby/ for more details
4
+ #
5
+ version: 2
6
+
7
+ workflows:
8
+ version: 2
9
+ test-deploy:
10
+ jobs:
11
+ - build
12
+ - deploy:
13
+ filters:
14
+ tags:
15
+ only: /.*/
16
+ branches:
17
+ ignore: /.*/
18
+ jobs:
19
+ build:
20
+ docker:
21
+ - image: circleci/ruby:2.5.5
22
+
23
+ working_directory: ~/repo
24
+
25
+ steps:
26
+ - checkout
27
+
28
+ - run:
29
+ name: Configure Bundler
30
+ command: |
31
+ export BUNDLER_VERSION=2.0.2 >> $BASH_ENV
32
+ source $BASH_ENV
33
+ gem install bundler
34
+
35
+ - run:
36
+ name: install dependencies
37
+ command: |
38
+ bundle install --jobs=4 --retry=3 --path vendor/bundle
39
+
40
+ - run:
41
+ name: Install Code Climate Test Reporter
42
+ command: |
43
+ curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
44
+ chmod +x ./cc-test-reporter
45
+
46
+ # run tests!
47
+ - run:
48
+ name: run tests
49
+ command: |
50
+ mkdir -p test-results/rspec test-artifacts
51
+ ./cc-test-reporter before-build
52
+ bundle exec rspec
53
+ ./cc-test-reporter after-build --coverage-input-type simplecov --exit-code $?
54
+ deploy:
55
+ docker:
56
+ - image: circleci/ruby:2.5.5
57
+
58
+ working_directory: ~/repo
59
+
60
+ steps:
61
+ - checkout
62
+ - run:
63
+ name: Setup Rubygem Credentials
64
+ command: bash .circleci/setup-rubygems.sh
65
+
66
+ - run:
67
+ name: Publish to Rubygems
68
+ command: |
69
+ gem build rspec-translation.gemspec
70
+ gem push "rspec-translation-$(git describe --tags).gem"
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env bash
2
+
3
+ mkdir -p ~/.gem
4
+ CREDS=~/.gem/credentials
5
+
6
+ if [ ! -v RUBYGEMS_API_KEY ]; then
7
+ echo "Error: The ENV variable RUBYGEMS_API_KEY is required"
8
+ exit 1
9
+ fi
10
+
11
+ if [ -f $CREDS ]; then
12
+ echo "Error: Existing credentials '$CREDS' will not be overwritten"
13
+ exit 1
14
+ else
15
+ echo -e "---\r\n:rubygems_api_key: $RUBYGEMS_API_KEY" > $CREDS
16
+ chmod 0600 $CREDS
17
+ fi
data/.gitignore ADDED
@@ -0,0 +1,26 @@
1
+ README.html
2
+ *.orig
3
+ .*.swp
4
+ .*.swo
5
+ *.tmp
6
+ *.patch
7
+ *.kpf
8
+ *~
9
+ .DS_Store
10
+ Thumbs.db
11
+ Gemfile.lock
12
+ Gemfile.local
13
+ Guardfile.local
14
+ *.log
15
+
16
+ /.bundle/
17
+ /.yardoc
18
+ /_yardoc/
19
+ /coverage/
20
+ /doc/
21
+ /pkg/
22
+ /spec/reports/
23
+ /tmp/
24
+
25
+ # rspec failure tracking
26
+ .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,6 @@
1
+ require: rubocop-rspec
2
+
3
+ AllCops:
4
+ Exclude:
5
+ - 'bin/**/*'
6
+
data/.travis.yml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ sudo: false
3
+ language: ruby
4
+ cache: bundler
5
+ rvm:
6
+ - 2.5.1
7
+ before_install: gem install bundler -v 2.0.2
@@ -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 TODO: Write your email address. 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 ADDED
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ # Specify your gem's dependencies in rspec-translation.gemspec
6
+ gemspec
data/Guardfile ADDED
@@ -0,0 +1,35 @@
1
+ # frozen_string_literal: true
2
+
3
+ guard :rubocop do
4
+ watch(%r{.+\.rb$/})
5
+ watch('rspec-translation.gemspec')
6
+ watch(%r{^lib/(.+)\.rb$})
7
+ watch(%r{(?:.+/)?\.rubocop(?:_todo)?\.yml$/}) { |m| File.dirname(m[0]) }
8
+ end
9
+
10
+ # Note: The cmd option is now required due to the increasing number of ways
11
+ # rspec may be run, below are examples of the most common uses.
12
+ # * bundler: 'bundle exec rspec'
13
+ # * bundler binstubs: 'bin/rspec'
14
+ # * spring: 'bin/rspec' (This will use spring if running and you have
15
+ # installed the spring binstubs per the docs)
16
+ # * zeus: 'zeus rspec' (requires the server to be started separately)
17
+ # * 'just' rspec: 'rspec'
18
+
19
+ guard :rspec, cmd: 'bundle exec rspec' do
20
+ require 'guard/rspec/dsl'
21
+ dsl = Guard::RSpec::Dsl.new(self)
22
+
23
+ # Feel free to open issues for suggestions and improvements
24
+
25
+ # RSpec files
26
+ rspec = dsl.rspec
27
+ watch(rspec.spec_helper) { rspec.spec_dir }
28
+ watch(rspec.spec_support) { rspec.spec_dir }
29
+ watch(rspec.spec_files)
30
+
31
+ # Ruby files
32
+ ruby = dsl.ruby
33
+ dsl.watch_spec_files_for(ruby.lib_files)
34
+ watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
35
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 TODO: Write your name
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.
data/README.md ADDED
@@ -0,0 +1,74 @@
1
+ # Rspec::Translation
2
+
3
+ [![Maintainability](https://api.codeclimate.com/v1/badges/6349f2944ae10b03e9fa/maintainability)](https://codeclimate.com/github/gerrypower/rspec-translation/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/6349f2944ae10b03e9fa/test_coverage)](https://codeclimate.com/github/gerrypower/rspec-translation/test_coverage) [![CircleCI](https://circleci.com/gh/gerrypower/rspec-translation.svg?style=svg)](https://circleci.com/gh/gerrypower/rspec-translation)
4
+
5
+
6
+
7
+ Rspec::Translation is a [rspec](https://github.com/rspec/rspec) plugin that allows TDD of your translation process on ruby objects. It requires the [i18n](https://github.com/ruby-i18n/i18n) gem.
8
+
9
+ ## Installation
10
+
11
+ Add this line to your application's Gemfile:
12
+
13
+ ```ruby
14
+ gem 'rspec-translation'
15
+ ```
16
+
17
+ And then execute:
18
+
19
+ $ bundle
20
+
21
+ Or install it yourself as:
22
+
23
+ $ gem install rspec-translation
24
+
25
+ ## Usage
26
+
27
+ ```ruby
28
+ describe Commerce::CardErrorMsg, type: :model do
29
+ subject(:sut) { described_class.new(view_context, error) }
30
+
31
+ describe 'message' do
32
+ subject { sut['message'] }
33
+
34
+ it { should have_a_translation }
35
+ it { should translate_with('commerce.card_error.message', message: error_message, code: code) }
36
+ end
37
+
38
+ describe 'action' do
39
+ subject { sut['action'] }
40
+
41
+ it { should have_a_translation }
42
+ it { should translate_with('commerce.card_error.action') }
43
+ end
44
+ end
45
+ ```
46
+
47
+
48
+
49
+ ## Contributing
50
+
51
+ Bug reports and pull requests are welcome on GitHub at https://github.com/gerrypower/rspec-translation. 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.
52
+
53
+ ## License
54
+
55
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
56
+
57
+ ## Code of Conduct
58
+
59
+ Everyone interacting in the Rspec::Translation project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/rspec-translation/blob/master/CODE_OF_CONDUCT.md).
60
+
61
+ ## Versioning
62
+
63
+ This library aims to adhere to [Semantic Versioning 2.0.0](http://semver.org/). Violations of this scheme should be reported as
64
+ bugs. Specifically, if a minor or patch version is released that breaks backward compatibility, that
65
+ version should be immediately yanked and/or a new version should be immediately released that restores
66
+ compatibility. Breaking changes to the public API will only be introduced with new major versions. As a
67
+ result of this policy, once this gem reaches a 1.0 release, you can (and should) specify a dependency on
68
+ this gem using the [Pessimistic Version Constraint](http://docs.rubygems.org/read/chapter/16#page74) with
69
+ two digits of precision. For example:
70
+
71
+ ```ruby
72
+ spec.add_dependency 'rspec-translation', '~> 1.0'
73
+ ```
74
+
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/gem_tasks'
4
+ require 'rspec/core/rake_task'
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ task default: :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "rspec/translation"
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,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'rspec/expectations'
4
+ require 'i18n'
5
+
6
+ RSpec::Matchers.define :have_a_translation do
7
+ match do |translated_string|
8
+ !translated_string.to_s.empty? &&
9
+ !translated_string.start_with?('translation missing')
10
+ end
11
+ description do
12
+ 'have a translation'
13
+ end
14
+ failure_message do
15
+ 'missing or blank translation key'
16
+ end
17
+ end
18
+
19
+ RSpec::Matchers.define :translate_with do |*args|
20
+ match do |actual|
21
+ actual == I18n.translate(*args)
22
+ end
23
+ failure_message do
24
+ "expected translation: '#{actual}' but got '#{I18n.t(*args)}'\n"
25
+ end
26
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Rspec
4
+ module Translation
5
+ VERSION = '1.0.0'
6
+ end
7
+ end
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'translation/matchers'
@@ -0,0 +1,39 @@
1
+ # frozen_string_literal: true
2
+
3
+ lib = File.expand_path('lib', __dir__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+ require 'rspec/translation/version'
6
+
7
+ Gem::Specification.new do |spec|
8
+ spec.name = 'rspec-translation'
9
+ spec.version = Rspec::Translation::VERSION
10
+ spec.authors = ['Gerry Power']
11
+ spec.email = ['gerry@thepowerhouse.com']
12
+
13
+ spec.summary = 'A rack based web hook processing framework.'
14
+ spec.homepage = 'https://github.com/gerrypower/rspec-translation'
15
+ spec.license = 'MIT'
16
+
17
+ spec.metadata['homepage_uri'] = spec.homepage
18
+ spec.metadata['source_code_uri'] = spec.homepage
19
+ spec.metadata['changelog_uri'] = 'https://github.com/gerrypower/rspec-translation/CHANGELOG.md'
20
+
21
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
22
+ `git ls-files -z`.split("\x0").reject do |f|
23
+ f.match(%r{^(test|spec|features)/})
24
+ end
25
+ end
26
+ spec.require_paths = ['lib']
27
+
28
+ spec.add_dependency 'i18n', '~> 1.0'
29
+ spec.add_dependency 'rspec', '~> 3.0'
30
+
31
+ spec.add_development_dependency 'bundler', '~> 2.0'
32
+ spec.add_development_dependency 'guard', '~> 2.0'
33
+ spec.add_development_dependency 'guard-rspec', '~> 4.0'
34
+ spec.add_development_dependency 'guard-rubocop', '~> 1.0'
35
+ spec.add_development_dependency 'rake', '~> 10.0'
36
+ spec.add_development_dependency 'rubocop', '0.73.0'
37
+ spec.add_development_dependency 'rubocop-rspec', '~> 1.34'
38
+ spec.add_development_dependency 'simplecov', '0.17.0'
39
+ end
metadata ADDED
@@ -0,0 +1,204 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rspec-translation
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Gerry Power
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-08-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: i18n
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '3.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '3.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: guard
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '2.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '2.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: guard-rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '4.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '4.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: guard-rubocop
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '1.0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rake
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '10.0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '10.0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: rubocop
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - '='
116
+ - !ruby/object:Gem::Version
117
+ version: 0.73.0
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - '='
123
+ - !ruby/object:Gem::Version
124
+ version: 0.73.0
125
+ - !ruby/object:Gem::Dependency
126
+ name: rubocop-rspec
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '1.34'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '1.34'
139
+ - !ruby/object:Gem::Dependency
140
+ name: simplecov
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - '='
144
+ - !ruby/object:Gem::Version
145
+ version: 0.17.0
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - '='
151
+ - !ruby/object:Gem::Version
152
+ version: 0.17.0
153
+ description:
154
+ email:
155
+ - gerry@thepowerhouse.com
156
+ executables: []
157
+ extensions: []
158
+ extra_rdoc_files: []
159
+ files:
160
+ - ".circleci/config.yml"
161
+ - ".circleci/setup-rubygems.sh"
162
+ - ".gitignore"
163
+ - ".rspec"
164
+ - ".rubocop.yml"
165
+ - ".travis.yml"
166
+ - CODE_OF_CONDUCT.md
167
+ - Gemfile
168
+ - Guardfile
169
+ - LICENSE.txt
170
+ - README.md
171
+ - Rakefile
172
+ - bin/console
173
+ - bin/setup
174
+ - lib/rspec/translation.rb
175
+ - lib/rspec/translation/matchers.rb
176
+ - lib/rspec/translation/version.rb
177
+ - rspec-translation.gemspec
178
+ homepage: https://github.com/gerrypower/rspec-translation
179
+ licenses:
180
+ - MIT
181
+ metadata:
182
+ homepage_uri: https://github.com/gerrypower/rspec-translation
183
+ source_code_uri: https://github.com/gerrypower/rspec-translation
184
+ changelog_uri: https://github.com/gerrypower/rspec-translation/CHANGELOG.md
185
+ post_install_message:
186
+ rdoc_options: []
187
+ require_paths:
188
+ - lib
189
+ required_ruby_version: !ruby/object:Gem::Requirement
190
+ requirements:
191
+ - - ">="
192
+ - !ruby/object:Gem::Version
193
+ version: '0'
194
+ required_rubygems_version: !ruby/object:Gem::Requirement
195
+ requirements:
196
+ - - ">="
197
+ - !ruby/object:Gem::Version
198
+ version: '0'
199
+ requirements: []
200
+ rubygems_version: 3.0.3
201
+ signing_key:
202
+ specification_version: 4
203
+ summary: A rack based web hook processing framework.
204
+ test_files: []