webspicy 0.1.0.pre.rc4 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +20 -3
  3. data/lib/webspicy/version.rb +1 -1
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: db22eea722029a231a0b460ab4984c5c0b4fb04a
4
- data.tar.gz: d4138fb451e46da2c76bb49009ec64a31f32f15a
3
+ metadata.gz: d404dff3afb455b57fea64ddf9b9b7ab90efe6a3
4
+ data.tar.gz: 7b101990a2060a96f3281e2effd2cf38839c562b
5
5
  SHA512:
6
- metadata.gz: b464b7b066f6d8d07033261e16e579d3609e339b189328561eb58fe2d741ee110d878bfda870def3c7210723cca6d2b5fd1b53c57cd2140422cb2604ec7059f7
7
- data.tar.gz: b529dea8cfe6b724b02b16fb414b675403e9def355795b6a5b904508626a66b924955e77b817db72c0d25928394f38f437c6f4d8d32486485c2545c454a09c62
6
+ metadata.gz: 5d6032e474a7d2379a93efbb0193530df7ade3bb1ac55752195bcddbbcc56b52823e7619fa5a371028d61bf8e758b3f40186efea79e71edc13310a01c5e7dc93
7
+ data.tar.gz: 44e5f5191c37f58d8c3623a91bab72b1b77a2f379497b77f964242e4ac37bc987220f9d01e4a305bd4e2694ac0e18885159a2a71cec9412ee32c073f060a49a3
data/README.md CHANGED
@@ -1,7 +1,24 @@
1
1
  # Webspicy
2
2
 
3
- A description, specification and test framework for black box web services seen as software operations.
3
+ A description, specification and test framework for web services seen as black
4
+ box software operations.
4
5
 
5
- ## Work in progress
6
+ ## Features
6
7
 
7
- Please refer to the examples for now. More documentation coming soon.
8
+ * Declarative description of RESTful web-services + their tests
9
+
10
+ * Framework/language agnostic: Webspicy is written in Ruby, but can be used to
11
+ test web services in any language / framework.
12
+
13
+ * Black box testing: Webspicy focuses on web services seen as blackboxes. It has
14
+ no knowledge of the implementation, and focuses on HTTP and input/output data
15
+ instead. Investing in such testing makes those tests stables and your API better.
16
+
17
+ * Extra goodness for Rubyists: being written in ruby, Webspicy also supports
18
+ testing Rack applications directly (through rack/test)
19
+
20
+ ## Getting started
21
+
22
+ Please have a look at the example first. It contains a simple Sinatra application
23
+ with GET and POST restful services tested with the framework. The Rakefile contains
24
+ the necessary tasks to run those tests.
@@ -1,6 +1,6 @@
1
1
  module Webspicy
2
2
  module Version
3
- TINY = "0-rc4"
3
+ TINY = 0
4
4
  MINOR = 1
5
5
  MAJOR = 0
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: webspicy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.pre.rc4
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bernard Lambeau
@@ -168,9 +168,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
168
168
  version: '0'
169
169
  required_rubygems_version: !ruby/object:Gem::Requirement
170
170
  requirements:
171
- - - ">"
171
+ - - ">="
172
172
  - !ruby/object:Gem::Version
173
- version: 1.3.1
173
+ version: '0'
174
174
  requirements: []
175
175
  rubyforge_project:
176
176
  rubygems_version: 2.6.11