specifier 0.5.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ce389cfea3d7b6da8cbc114ec2667c0206e46673474591fc281e828af4971aae
4
- data.tar.gz: 58605667b4f6a4cdc1354c56582e9533f46fb6af2ee037ee12d8fd49346eaf3d
3
+ metadata.gz: 102383f44c0f3959d6eaa972b84393c02ed01025dc7e524e473b1f7bc33d9286
4
+ data.tar.gz: '09b4e2a67aee3d03f4efad9b75451f9890ab6dc3070af1f39a34e09204f63f47'
5
5
  SHA512:
6
- metadata.gz: 5ab399483fff009972c98e6aefb4b4cb8e083d22e37b29da3b4873f3cbb6bdaccd947017bc4efb1d2618b95940e5e4accbffa3960f88738f6c0f8225587aedeb
7
- data.tar.gz: 46d70f55fd6c0c0db94bd2c007db2f1e86111e206cc50d84c8c786a3153007c58e351580a8a84684c98255e88a2fadc4a927d6805c79478a40711883edf0b35f
6
+ metadata.gz: 66f89a6541171b2971347901a217b32d1b3057b986c9ff3e4731d33a69e387ffacdcf99507f718cb9cbdd8105ae4e27490530210374e152bdb72f88f986a3684
7
+ data.tar.gz: 9d28bef0feac674fe598be83416b49497dbddc32485b44bd3a527338af58d4163c87d81b49679c01adf28f589cc254378c459f0dd28edc2b842ef2f549c592a7
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2017 Kevin Sylvestre
3
+ Copyright (c) 2017 - 2018 Kevin Sylvestre
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -47,4 +47,4 @@ bundle exec specifier ./specs
47
47
 
48
48
  ## Copyright
49
49
 
50
- Copyright (c) 2016 - 2018 Kevin Sylvestre. See LICENSE for details.
50
+ Copyright (c) 2016 - 2018 [Kevin Sylvestre](https://ksylvest.com). See LICENSE for details.
File without changes
@@ -23,9 +23,9 @@ module Specifier
23
23
 
24
24
  def run(world)
25
25
  world.instance_eval(&@block)
26
- return Result.new(:pass)
26
+ Result.new(:pass)
27
27
  rescue StandardError => message
28
- return Result.new(:fail, message)
28
+ Result.new(:fail, message)
29
29
  end
30
30
 
31
31
  end
@@ -1,3 +1,3 @@
1
1
  module Specifier
2
- VERSION = '0.5.0'.freeze
2
+ VERSION = '1.0.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: specifier
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Sylvestre
8
8
  autorequire:
9
- bindir: bin
9
+ bindir: exe
10
10
  cert_chain: []
11
- date: 2018-03-04 00:00:00.000000000 Z
11
+ date: 2018-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: slop
@@ -133,7 +133,7 @@ files:
133
133
  - Gemfile
134
134
  - LICENSE
135
135
  - README.md
136
- - bin/specifier
136
+ - exe/specifier
137
137
  - lib/specifier.rb
138
138
  - lib/specifier/cli.rb
139
139
  - lib/specifier/colorizer.rb
@@ -174,7 +174,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
174
174
  version: '0'
175
175
  requirements: []
176
176
  rubyforge_project:
177
- rubygems_version: 2.7.3
177
+ rubygems_version: 2.7.6
178
178
  signing_key:
179
179
  specification_version: 4
180
180
  summary: A testing framework written for fun.