zapata 0.1.5 → 0.1.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5e660d0289124b63e44fe3a05bad16f9539be9c4
4
- data.tar.gz: 8189ec272e90e38fd2e2e39110e22053119f610d
3
+ metadata.gz: c3475c7d502d650c69c037d6562e5d1338bfb9ce
4
+ data.tar.gz: 0984b1da3314fa05a9121bc2968125434ed965fd
5
5
  SHA512:
6
- metadata.gz: 9195c7def908b238d6d262c29d065994dfecb443f6dc3ad9ae15db87487c5a5f2113f8b5d81126127bf629a1ecc69d9d499861623f5b98a4e64fc2ab04a32295
7
- data.tar.gz: b9464f31b4a43b8785b24762fc880352eb49e85d3a7b3bc41739b1d2fafc307ae890b4e6ecdd5b12b9f29d2b8008e74607e0effa05976ae74fe65fe3502980f2
6
+ metadata.gz: fac18c00c0f6b27eabe027d7fc4c54559e3d6534ee2d4f6c9d7a5ad1ec7167e1076ee8035420325e4951bcf0fcf33402572567b1453541526837a0c19432c880
7
+ data.tar.gz: 1b377f33bd276784085e940f86da246213eea2f52b0e33ea46f947de838887dd7edb7c2a6da22e9e3d872a8457a08320b988c81e19a5bce1fee5688b46bbac0f
data/README.md CHANGED
@@ -119,7 +119,7 @@ __To be more specific:__
119
119
  - Selects the most probable value by how many times it was repeated in code
120
120
  - Runs the RSpec and fills in the expected values of the test with those returned by RSpec
121
121
 
122
- For more things it can currently do check
122
+ For more things it can currently do check test files
123
123
  https://github.com/Nedomas/zapata/tree/master/spec
124
124
 
125
125
  ## Workflow with Zapata
@@ -134,7 +134,7 @@ Write more code and when you're happy with the result - lock it up again.
134
134
 
135
135
  ## Requirements
136
136
 
137
- - Ruby 2.0+
137
+ - Ruby 2.1+
138
138
  - Rails 3.0+
139
139
 
140
140
  Ruby 1.9.3 and older version support is in next release and can be checked out [here](https://github.com/Nedomas/zapata/issues/2).
@@ -203,11 +203,12 @@ bundle exec rspec --pattern "spec/*_spec.rb"
203
203
  I am well aware that this is featured in [Ruby Weekly 223](http://rubyweekly.com/issues/223).
204
204
  On that note I'd like to thank everybody who helped it shine through.
205
205
 
206
- Special thanks to my comrade @jpalumickas, with whom we share a vision of a better world.
207
- Also - thank you @edgibbs, for being the early contributor.
206
+ Special thanks to my comrade [@jpalumickas](https://github.com/jpalumickas), with whom we share a vision of a better world.
207
+ Also - thank you [@edgibbs](https://github.com/edgibbs), for being the early contributor.
208
+ [@morron](https://github.com/morron) - for caring.
208
209
 
209
210
  ## Copyright
210
- Copyright (c) 2014 Domas.
211
+ Copyright (c) 2014-2016 Justas, Andrew, Ed, Dmitry, Domas.
211
212
  See [LICENSE](LICENSE) for details.
212
213
 
213
214
  [rubygems]: https://rubygems.org/gems/zapata
@@ -1,3 +1,3 @@
1
1
  module Zapata
2
- VERSION = '0.1.5'
2
+ VERSION = '0.1.6'
3
3
  end
@@ -33,7 +33,7 @@ RSpec.configure do |config|
33
33
  # You can disable this behaviour by removing the line below, and instead
34
34
  # explicitly tag your specs with their type, e.g.:
35
35
  #
36
- # RSpec.describe UsersController, :type => :controller do
36
+ # RSpec.describe UsersController, type: :controller do
37
37
  # # ...
38
38
  # end
39
39
  #
@@ -19,9 +19,9 @@ Gem::Specification.new do |spec|
19
19
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
20
20
  spec.require_paths = ['lib']
21
21
 
22
- spec.add_runtime_dependency 'parser', '2.2.0.pre.8'
23
- spec.add_runtime_dependency 'unparser', '~> 0.1'
24
- spec.add_runtime_dependency 'andand', '~> 1.3'
22
+ spec.add_runtime_dependency 'parser', '~> 2.3.0.0'
23
+ spec.add_runtime_dependency 'unparser', '0.2.5'
24
+ spec.add_runtime_dependency 'andand', '~> 1.3.3'
25
25
  spec.add_runtime_dependency 'rails', '>= 3.0.0'
26
26
  spec.add_runtime_dependency 'slop', '~> 3.4'
27
27
  spec.add_runtime_dependency 'rspec-rails'
metadata CHANGED
@@ -1,57 +1,57 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zapata
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Domas Bitvinskas
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-05 00:00:00.000000000 Z
11
+ date: 2016-05-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: parser
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '='
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 2.2.0.pre.8
19
+ version: 2.3.0.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '='
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 2.2.0.pre.8
26
+ version: 2.3.0.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: unparser
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: '0.1'
33
+ version: 0.2.5
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: '0.1'
40
+ version: 0.2.5
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: andand
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: '1.3'
47
+ version: 1.3.3
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: '1.3'
54
+ version: 1.3.3
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rails
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -370,7 +370,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
370
370
  version: '0'
371
371
  requirements: []
372
372
  rubyforge_project:
373
- rubygems_version: 2.2.2
373
+ rubygems_version: 2.4.5.1
374
374
  signing_key:
375
375
  specification_version: 4
376
376
  summary: Automatic automated test writer