r_spec 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
+ SHA1:
3
+ metadata.gz: 224b375a489540fef9cdc393dadfcbec43e44e3a
4
+ data.tar.gz: b2038494406219d2cc862d828ff38ab374370493
5
+ SHA512:
6
+ metadata.gz: 3da6f04fa0744c32b88751ae5fed39b1f08f4da842f97d62ce5f76e8b2f8fa408141eff9922b783800bdfb0481480c00a4d8d562defa5815c0114b11b938f9b6
7
+ data.tar.gz: 16302802270c0f634fabc46e019096d8f9438f404e9b112e7ee149ad853e9e29495eae6bf8bce22888931c1376bf4f149c5b9aceef11defb35a35b10eb33277b
checksums.yaml.gz.sig ADDED
@@ -0,0 +1 @@
1
+ �jݿ[;��퉖d���%(�^�ުp���`�NiU��ț|F����rrN6��5��+���қ�3�r'��*���o��$Ņ�0�N�d�N�>�:�D
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.ruby-version
3
+ /.yardoc
4
+ /Gemfile.lock
5
+ /_yardoc/
6
+ /coverage/
7
+ /doc/
8
+ /pkg/
9
+ /spec/reports/
10
+ /tmp/
11
+ *.gem
data/.travis.yml ADDED
@@ -0,0 +1,15 @@
1
+ language: ruby
2
+ sudo: false
3
+ cache: bundler
4
+ script: 'bundle exec rake test:coverage --trace'
5
+ before_install:
6
+ - gem install bundler
7
+ rvm:
8
+ - 1.9.3
9
+ - 2.0
10
+ - 2.1
11
+ - 2.2
12
+ - ruby-head
13
+ - jruby
14
+ - jruby-head
15
+ - rbx-2
data/.yardopts ADDED
@@ -0,0 +1 @@
1
+ - README.md
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Cyril Wack
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,105 @@
1
+ # RSpec
2
+
3
+ [![Build Status](https://travis-ci.org/cyril/r_spec.svg?branch=master)][travis]
4
+ [![Gem Version](https://badge.fury.io/rb/r_spec.svg)][gem]
5
+ [![Inline docs](http://inch-ci.org/github/cyril/r_spec.svg?branch=master)][inchpages]
6
+ [![Documentation](http://img.shields.io/:yard-docs-38c800.svg)][rubydoc]
7
+
8
+ > A small [Rspec](https://github.com/rspec/rspec) clone based on [Fix specing framework](https://github.com/fixrb/fix).
9
+
10
+ ## Contact
11
+
12
+ * Home page: https://github.com/cyril/r_spec
13
+ * Bugs/issues: https://github.com/cyril/r_spec/issues
14
+ * Support: https://stackoverflow.com/questions/tagged/r_spec
15
+
16
+ ## Rubies
17
+
18
+ * [MRI](https://www.ruby-lang.org/)
19
+ * [Rubinius](http://rubini.us/)
20
+ * [JRuby](http://jruby.org/)
21
+
22
+ ## Installation
23
+
24
+ __RSpec__ is cryptographically signed.
25
+
26
+ To be sure the gem you install hasn't been tampered with, add my public key (if you haven't already) as a trusted certificate:
27
+
28
+ $ gem cert --add <(curl -Ls https://raw.github.com/cyril/r_spec/master/certs/gem-cyril-public_cert.pem)
29
+ $ gem install r_spec -P HighSecurity
30
+
31
+ The `HighSecurity` trust profile will verify all gems. All of __RSpec__'s dependencies are signed.
32
+
33
+ Or add this line to your application's Gemfile:
34
+
35
+ ```ruby
36
+ gem 'r_spec'
37
+ ```
38
+
39
+ And then execute:
40
+
41
+ $ bundle
42
+
43
+ ## Usage
44
+
45
+ Given this `greeting_spec.rb` spec:
46
+
47
+ ```ruby
48
+ require 'r_spec'
49
+
50
+ greeting = 'Hello, world!'
51
+
52
+ RSpec.describe 'Test' do
53
+ context 'Alice' do
54
+ before { greeting.gsub!('world', 'Alice') }
55
+ it { expect(greeting).to eql 'Hello, Alice!' }
56
+ end
57
+
58
+ context 'Bob' do
59
+ before { greeting.gsub!('world', 'Bob') }
60
+ it { expect(greeting).to eql 'Hello, Bob!' }
61
+ end
62
+ end
63
+ ```
64
+
65
+ It can be tested in the console with the command:
66
+
67
+ $ ruby greeting_spec.rb
68
+ ..
69
+
70
+ Ran 2 tests in 0.010994 seconds
71
+ 100% compliant - 0 infos, 0 failures, 0 errors
72
+
73
+ ## Security
74
+
75
+ As a basic form of security __RSpec__ provides a set of SHA512 checksums for
76
+ every Gem release. These checksums can be found in the `checksum/` directory.
77
+ Although these checksums do not prevent malicious users from tampering with a
78
+ built Gem they can be used for basic integrity verification purposes.
79
+
80
+ The checksum of a file can be checked using the `sha512sum` command. For
81
+ example:
82
+
83
+ $ sha512sum pkg/r_spec-0.1.0.gem
84
+ e9e35e1953104e2d428b0f217e418db3c1baecd9e011b2545f9fcba4ff7e3bba674c6b928b3d8db842a139cd7cc9806d77ebdc7f710ece4f2aecb343703e2451 pkg/r_spec-0.1.0.gem
85
+
86
+ ## Versioning
87
+
88
+ __RSpec__ follows [Semantic Versioning 2.0](http://semver.org/).
89
+
90
+ ## Contributing
91
+
92
+ 1. [Fork it](https://github.com/cyril/r_spec/fork)
93
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
94
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
95
+ 4. Push to the branch (`git push origin my-new-feature`)
96
+ 5. Create a new Pull Request
97
+
98
+ ## License
99
+
100
+ See `LICENSE.md` file.
101
+
102
+ [gem]: https://rubygems.org/gems/r_spec
103
+ [travis]: https://travis-ci.org/cyril/r_spec
104
+ [inchpages]: http://inch-ci.org/github/cyril/r_spec/
105
+ [rubydoc]: http://rubydoc.info/gems/r_spec/frames
data/Rakefile ADDED
@@ -0,0 +1,21 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rake/testtask'
3
+ require 'rubocop/rake_task'
4
+
5
+ RuboCop::RakeTask.new
6
+
7
+ Rake::TestTask.new do |t|
8
+ t.verbose = true
9
+ t.warning = true
10
+ # t.pattern = File.join('test', '**', 'test_*.rb')
11
+ end
12
+
13
+ namespace :test do
14
+ task :coverage do
15
+ ENV['COVERAGE'] = 'true'
16
+ Rake::Task['test'].invoke
17
+ end
18
+ end
19
+
20
+ task(:doc_stats) { ruby '-S yard stats' }
21
+ task default: [:test, :doc_stats, :rubocop]
data/VERSION.semver ADDED
@@ -0,0 +1 @@
1
+ 0.1.0
data/bin/console ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'r_spec'
5
+
6
+ require 'irb'
7
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,5 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
@@ -0,0 +1,21 @@
1
+ -----BEGIN CERTIFICATE-----
2
+ MIIDdDCCAlygAwIBAgIBATANBgkqhkiG9w0BAQUFADBAMRAwDgYDVQQDDAdjb250
3
+ YWN0MRUwEwYKCZImiZPyLGQBGRYFY3lyaWwxFTATBgoJkiaJk/IsZAEZFgVlbWFp
4
+ bDAeFw0xNTA3MzExMjExMDZaFw0xNjA3MzAxMjExMDZaMEAxEDAOBgNVBAMMB2Nv
5
+ bnRhY3QxFTATBgoJkiaJk/IsZAEZFgVjeXJpbDEVMBMGCgmSJomT8ixkARkWBWVt
6
+ YWlsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6hUEYoxnn1mtoaiK
7
+ NiwjzVPqPgQCR9ZeYdWjLJ3UUG2h5Q6awJCnbaGr8LGGcKtveCDbOJRjtdKNuOTH
8
+ O2FLTkf46nrMGiF+6/j//qh8o0EQHBRKIVMYkxZxZe4Fcqtdf1bWNMZuXeyoDjdt
9
+ 4yiGfizbbTOu0gBf7Yrsv5DsL0a5CU/We7zxMfgGXCVb9PYkD+OWUMcTARYDKfYa
10
+ nN9ECI7CFm/yXcsof/eIQA5EmJNmQnhx8B+8L6jDqQeSUAUrBZnC9CdloKOoqmEL
11
+ weqM2g6LM932Ba74rEl4QlFRYDcs8kjr71UcvseHRCUkFr36j26OU8+gKelsTNdO
12
+ 7OZNKQIDAQABo3kwdzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQU
13
+ LSJTN9h29D6bqOhp+vyvhyM0AF4wHgYDVR0RBBcwFYETY29udGFjdEBjeXJpbC5l
14
+ bWFpbDAeBgNVHRIEFzAVgRNjb250YWN0QGN5cmlsLmVtYWlsMA0GCSqGSIb3DQEB
15
+ BQUAA4IBAQArqCC1rUyGJlF0DF9ZhUOgggyROvO0/WroSI5zWgzdB8EU7RJpsDIV
16
+ caGnpji7h0rQIGWQuJ6TL2fTFLfeGRFdIzRZwWC7TeXhcXngJHZxSjDBt2OpfM8A
17
+ P5eElSQS9iJCetBGGMyt354PfgZkg3URaC+JA6mdEisdtEdo64ElnMsLg9shCqye
18
+ JSR3BbejbyPVva0/MHKD+dR6RswlcM9KMiYOXQml7a/kH6huOHvVq9gj5xC2ih8W
19
+ dzJvWzQ1+dJU6WQv75E9ddSkaQrK3nhdgQVu+/wgvGSrsMvOGNz+LXaSDxQqZuwX
20
+ 0KNQFuIukfrdk8URwRnHoAnvx4U93iUw
21
+ -----END CERTIFICATE-----
data/lib/fix/before.rb ADDED
@@ -0,0 +1,16 @@
1
+ # Namespace for the Fix framework.
2
+ module Fix
3
+ # Override Fix's On class.
4
+ class On
5
+ # Useful to perform side-effects, e.g., add something in to a database.
6
+ #
7
+ # @note To declare an instance variable, use the `let` helper instead.
8
+ #
9
+ # @param block [Proc] The block to call.
10
+ #
11
+ # @return [#object_id] The given block.
12
+ def before(*, &block)
13
+ block.call
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,19 @@
1
+ # Namespace for the Fix framework.
2
+ module Fix
3
+ # Override Fix's On class.
4
+ class On
5
+ # @param another_front_object [BasicObject] The front object.
6
+ # @param specs [Proc] A set of specs.
7
+ #
8
+ # @return [Array] List of results.
9
+ def describe(another_front_object, *, &specs)
10
+ o = On.new(another_front_object,
11
+ results,
12
+ challenges,
13
+ helpers.dup,
14
+ configuration)
15
+
16
+ o.instance_eval(&specs)
17
+ end
18
+ end
19
+ end
data/lib/fix/it.rb ADDED
@@ -0,0 +1,9 @@
1
+ require_relative File.join '..', 'r_spec', 'it'
2
+
3
+ # Namespace for the Fix framework.
4
+ module Fix
5
+ # Override Fix's It class.
6
+ class It
7
+ include ::RSpec::It
8
+ end
9
+ end
data/lib/r_spec/it.rb ADDED
@@ -0,0 +1,23 @@
1
+ module RSpec
2
+ # Module to extend Fix's It class.
3
+ module It
4
+ private
5
+
6
+ # Override Ruby's method_missing in order to coerce matchers.
7
+ #
8
+ # @api private
9
+ #
10
+ # @raise [NoMethodError] If doesn't respond to the given method.
11
+ def method_missing(name, *args)
12
+ matcher = name.to_s.split('_').map(&:capitalize).join.to_sym
13
+
14
+ return unless Matchi.constants.include?(matcher)
15
+
16
+ if args.any?
17
+ { matcher => (args.length.equal?(1) ? args.first : args) }
18
+ else
19
+ matcher
20
+ end
21
+ end
22
+ end
23
+ end
data/lib/r_spec.rb ADDED
@@ -0,0 +1,32 @@
1
+ # Namespace for the RSpec framework.
2
+ #
3
+ # @api public
4
+ #
5
+ module RSpec
6
+ # Specs are built with this method.
7
+ #
8
+ # @example 42 must be equal to 42
9
+ # describe(42) do
10
+ # it { MUST Equal: 42 }
11
+ # end
12
+ #
13
+ # @param front_object [#object_id] The front object.
14
+ # @param options [Hash] Some options.
15
+ # @param specs [Proc] The set of specs.
16
+ #
17
+ # @raise [SystemExit] The result of the test.
18
+ def self.describe(front_object, options = {}, &specs)
19
+ t = ::Fix::Test.new(front_object, options, &specs)
20
+
21
+ print "#{t.report}" if options.fetch(:verbose, true)
22
+ exit t.pass?
23
+ end
24
+ end
25
+
26
+ require 'fix/expect'
27
+ require 'fix/its'
28
+ require 'matchi/rspec'
29
+
30
+ require_relative File.join 'fix', 'before'
31
+ require_relative File.join 'fix', 'it'
32
+ require_relative File.join 'fix', 'describe'
data/pkg_checksum ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'digest/sha2'
4
+
5
+ gemname = 'r_spec'.to_sym
6
+ ARGV[0] = File.read('VERSION.semver').chomp if ARGV[0].nil?
7
+ built_gem_path = "pkg/#{gemname}-#{ARGV[0]}.gem"
8
+ checksum = Digest::SHA512.new.hexdigest(File.read(built_gem_path))
9
+ checksum_path = "checksum/#{gemname}-#{ARGV[0]}.gem.sha512"
10
+
11
+ File.open(checksum_path, 'w') { |f| f.write("#{checksum}\n") }
data/r_spec.gemspec ADDED
@@ -0,0 +1,31 @@
1
+ Gem::Specification.new do |spec|
2
+ spec.name = 'r_spec'
3
+ spec.version = File.read('VERSION.semver').chomp
4
+ spec.authors = ['Cyril Wack']
5
+ spec.email = ['contact@cyril.email']
6
+
7
+ spec.summary = 'Rspec clone with Fix.'
8
+ spec.description = 'A small Rspec clone based on Fix specing framework.'
9
+ spec.homepage = 'https://github.com/cyril/r_spec'
10
+ spec.license = 'MIT'
11
+
12
+ spec.files =
13
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^test/}) }
14
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
15
+ spec.require_paths = ['lib']
16
+
17
+ spec.add_dependency 'fix-expect', '~> 0.2'
18
+ spec.add_dependency 'fix-its', '~> 0.3'
19
+ spec.add_dependency 'matchi-rspec', '~> 0.0'
20
+
21
+ spec.add_development_dependency 'bundler', '~> 1.10'
22
+ spec.add_development_dependency 'rake', '~> 10.4'
23
+ spec.add_development_dependency 'yard', '~> 0.8'
24
+ spec.add_development_dependency 'simplecov', '~> 0.10'
25
+ spec.add_development_dependency 'rubocop', '~> 0.34'
26
+ spec.add_development_dependency 'spectus', '~> 2.10'
27
+
28
+ spec.cert_chain = ['certs/gem-cyril-public_cert.pem']
29
+ private_key = File.expand_path('~/.ssh/gem-cyril-private_key.pem')
30
+ spec.signing_key = private_key if File.exist?(private_key)
31
+ end
data.tar.gz.sig ADDED
Binary file
metadata ADDED
@@ -0,0 +1,212 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: r_spec
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Cyril Wack
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIDdDCCAlygAwIBAgIBATANBgkqhkiG9w0BAQUFADBAMRAwDgYDVQQDDAdjb250
14
+ YWN0MRUwEwYKCZImiZPyLGQBGRYFY3lyaWwxFTATBgoJkiaJk/IsZAEZFgVlbWFp
15
+ bDAeFw0xNTA3MzExMjExMDZaFw0xNjA3MzAxMjExMDZaMEAxEDAOBgNVBAMMB2Nv
16
+ bnRhY3QxFTATBgoJkiaJk/IsZAEZFgVjeXJpbDEVMBMGCgmSJomT8ixkARkWBWVt
17
+ YWlsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6hUEYoxnn1mtoaiK
18
+ NiwjzVPqPgQCR9ZeYdWjLJ3UUG2h5Q6awJCnbaGr8LGGcKtveCDbOJRjtdKNuOTH
19
+ O2FLTkf46nrMGiF+6/j//qh8o0EQHBRKIVMYkxZxZe4Fcqtdf1bWNMZuXeyoDjdt
20
+ 4yiGfizbbTOu0gBf7Yrsv5DsL0a5CU/We7zxMfgGXCVb9PYkD+OWUMcTARYDKfYa
21
+ nN9ECI7CFm/yXcsof/eIQA5EmJNmQnhx8B+8L6jDqQeSUAUrBZnC9CdloKOoqmEL
22
+ weqM2g6LM932Ba74rEl4QlFRYDcs8kjr71UcvseHRCUkFr36j26OU8+gKelsTNdO
23
+ 7OZNKQIDAQABo3kwdzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQU
24
+ LSJTN9h29D6bqOhp+vyvhyM0AF4wHgYDVR0RBBcwFYETY29udGFjdEBjeXJpbC5l
25
+ bWFpbDAeBgNVHRIEFzAVgRNjb250YWN0QGN5cmlsLmVtYWlsMA0GCSqGSIb3DQEB
26
+ BQUAA4IBAQArqCC1rUyGJlF0DF9ZhUOgggyROvO0/WroSI5zWgzdB8EU7RJpsDIV
27
+ caGnpji7h0rQIGWQuJ6TL2fTFLfeGRFdIzRZwWC7TeXhcXngJHZxSjDBt2OpfM8A
28
+ P5eElSQS9iJCetBGGMyt354PfgZkg3URaC+JA6mdEisdtEdo64ElnMsLg9shCqye
29
+ JSR3BbejbyPVva0/MHKD+dR6RswlcM9KMiYOXQml7a/kH6huOHvVq9gj5xC2ih8W
30
+ dzJvWzQ1+dJU6WQv75E9ddSkaQrK3nhdgQVu+/wgvGSrsMvOGNz+LXaSDxQqZuwX
31
+ 0KNQFuIukfrdk8URwRnHoAnvx4U93iUw
32
+ -----END CERTIFICATE-----
33
+ date: 2015-10-24 00:00:00.000000000 Z
34
+ dependencies:
35
+ - !ruby/object:Gem::Dependency
36
+ name: fix-expect
37
+ requirement: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: '0.2'
42
+ type: :runtime
43
+ prerelease: false
44
+ version_requirements: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - "~>"
47
+ - !ruby/object:Gem::Version
48
+ version: '0.2'
49
+ - !ruby/object:Gem::Dependency
50
+ name: fix-its
51
+ requirement: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - "~>"
54
+ - !ruby/object:Gem::Version
55
+ version: '0.3'
56
+ type: :runtime
57
+ prerelease: false
58
+ version_requirements: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - "~>"
61
+ - !ruby/object:Gem::Version
62
+ version: '0.3'
63
+ - !ruby/object:Gem::Dependency
64
+ name: matchi-rspec
65
+ requirement: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: '0.0'
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - "~>"
75
+ - !ruby/object:Gem::Version
76
+ version: '0.0'
77
+ - !ruby/object:Gem::Dependency
78
+ name: bundler
79
+ requirement: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - "~>"
82
+ - !ruby/object:Gem::Version
83
+ version: '1.10'
84
+ type: :development
85
+ prerelease: false
86
+ version_requirements: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - "~>"
89
+ - !ruby/object:Gem::Version
90
+ version: '1.10'
91
+ - !ruby/object:Gem::Dependency
92
+ name: rake
93
+ requirement: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - "~>"
96
+ - !ruby/object:Gem::Version
97
+ version: '10.4'
98
+ type: :development
99
+ prerelease: false
100
+ version_requirements: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - "~>"
103
+ - !ruby/object:Gem::Version
104
+ version: '10.4'
105
+ - !ruby/object:Gem::Dependency
106
+ name: yard
107
+ requirement: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - "~>"
110
+ - !ruby/object:Gem::Version
111
+ version: '0.8'
112
+ type: :development
113
+ prerelease: false
114
+ version_requirements: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - "~>"
117
+ - !ruby/object:Gem::Version
118
+ version: '0.8'
119
+ - !ruby/object:Gem::Dependency
120
+ name: simplecov
121
+ requirement: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - "~>"
124
+ - !ruby/object:Gem::Version
125
+ version: '0.10'
126
+ type: :development
127
+ prerelease: false
128
+ version_requirements: !ruby/object:Gem::Requirement
129
+ requirements:
130
+ - - "~>"
131
+ - !ruby/object:Gem::Version
132
+ version: '0.10'
133
+ - !ruby/object:Gem::Dependency
134
+ name: rubocop
135
+ requirement: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - "~>"
138
+ - !ruby/object:Gem::Version
139
+ version: '0.34'
140
+ type: :development
141
+ prerelease: false
142
+ version_requirements: !ruby/object:Gem::Requirement
143
+ requirements:
144
+ - - "~>"
145
+ - !ruby/object:Gem::Version
146
+ version: '0.34'
147
+ - !ruby/object:Gem::Dependency
148
+ name: spectus
149
+ requirement: !ruby/object:Gem::Requirement
150
+ requirements:
151
+ - - "~>"
152
+ - !ruby/object:Gem::Version
153
+ version: '2.10'
154
+ type: :development
155
+ prerelease: false
156
+ version_requirements: !ruby/object:Gem::Requirement
157
+ requirements:
158
+ - - "~>"
159
+ - !ruby/object:Gem::Version
160
+ version: '2.10'
161
+ description: A small Rspec clone based on Fix specing framework.
162
+ email:
163
+ - contact@cyril.email
164
+ executables: []
165
+ extensions: []
166
+ extra_rdoc_files: []
167
+ files:
168
+ - ".gitignore"
169
+ - ".travis.yml"
170
+ - ".yardopts"
171
+ - CODE_OF_CONDUCT.md
172
+ - Gemfile
173
+ - LICENSE.md
174
+ - README.md
175
+ - Rakefile
176
+ - VERSION.semver
177
+ - bin/console
178
+ - bin/setup
179
+ - certs/gem-cyril-public_cert.pem
180
+ - lib/fix/before.rb
181
+ - lib/fix/describe.rb
182
+ - lib/fix/it.rb
183
+ - lib/r_spec.rb
184
+ - lib/r_spec/it.rb
185
+ - pkg_checksum
186
+ - r_spec.gemspec
187
+ homepage: https://github.com/cyril/r_spec
188
+ licenses:
189
+ - MIT
190
+ metadata: {}
191
+ post_install_message:
192
+ rdoc_options: []
193
+ require_paths:
194
+ - lib
195
+ required_ruby_version: !ruby/object:Gem::Requirement
196
+ requirements:
197
+ - - ">="
198
+ - !ruby/object:Gem::Version
199
+ version: '0'
200
+ required_rubygems_version: !ruby/object:Gem::Requirement
201
+ requirements:
202
+ - - ">="
203
+ - !ruby/object:Gem::Version
204
+ version: '0'
205
+ requirements: []
206
+ rubyforge_project:
207
+ rubygems_version: 2.4.5.1
208
+ signing_key:
209
+ specification_version: 4
210
+ summary: Rspec clone with Fix.
211
+ test_files: []
212
+ has_rdoc:
metadata.gz.sig ADDED
Binary file