rambo_ruby 0.3.2 → 0.3.3

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: 824a37ee48ea508b6abf6d4e66786bae40a60a1f
4
- data.tar.gz: b4cd9ca97d9200afb6dcf02ff1b6ddcbb2751aff
3
+ metadata.gz: c2143c81f22d7a3f9960dc3837090b51ab7585be
4
+ data.tar.gz: 6a840d4100def12e51b86bbc7ef1760700602829
5
5
  SHA512:
6
- metadata.gz: dc01e1da8001853925bc072674e423f95858f3b7a391e4fdbc180b79b8e97da0fdd44a4028ae34cecc75a995f6c7b43ac304741682b75a4faecb5fa54781faf2
7
- data.tar.gz: 4aa4f7b9bc1a7684bbdcfb2aab9ec63e2b10b061541d0f16dd521b3bbfea1622c14d4f967ca6d123df7d316844bad92fc68db38a7adea7d437d740295a7b4bf8
6
+ metadata.gz: 6db7613814a00244c952440c0d83b5b17f9693f34a64817ba3d21ed4da8a7c1973c2379b1051766229805f5f3042e9e1f5361db9434740de7a96734fdaff3283
7
+ data.tar.gz: 0c1f0e99cfd4d008a6c5d3a282cfe79e1c52eda003406c85fa2d4fa432bee9cc4966bf999810d84a066ca7974817d43c0f2393b62ed06004ddf29954f56fd258
data/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  Rambo is a gem that generates API contract tests from API docs in [RAML](http://raml.org/). Rambo is being developed to test APIs complying with standard REST practices. Mileage may vary with other architectures, but I'm happy to consider pull requests.
6
6
 
7
- #### The current version of Rambo is 0.3.1. It is highly unstable and has a limited feature set. Use at your own risk and please file issue reports if they come up!
7
+ #### The current version of Rambo is 0.3.3. It is highly unstable and has a limited feature set. Use at your own risk and please file issue reports if they come up!
8
8
 
9
9
  ## Usage
10
10
  You can install Rambo using:
@@ -14,7 +14,7 @@ gem install rambo_ruby
14
14
  You can also add it to your project's Gemfile:
15
15
  ```ruby
16
16
  group :development, :test do
17
- gem 'rambo_ruby', '~> 0.3.1'
17
+ gem 'rambo_ruby', '~> 0.3.3'
18
18
  end
19
19
  ```
20
20
  There are three options for generating tests from Rambo: The command line tool, the rake task, and the Ruby API. In all cases, Rambo will look for a `.rambo.yml` file in the root directory of your project for configuration options. Options may also be passed in through the command line as arguments or the Ruby API as a hash. There is currently no option to pass arguments to the Rake task, but Rambo comes pre-loaded with sensible defaults, and the `.rambo.yml` file is always an option.
@@ -15,7 +15,7 @@ module Rambo
15
15
  generator.generate_matcher_dir!
16
16
  generator.generate_examples!
17
17
  generator.generate_spec_file!
18
- generator.generate_rambo_helper!(options)
18
+ generator.generate_rambo_helper!
19
19
  generator.generate_matchers!
20
20
  end
21
21
  end
data/lib/version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  module Rambo
2
2
  MAJOR = '0'
3
3
  MINOR = '3'
4
- PATCH = '2'
4
+ PATCH = '3'
5
5
 
6
6
  def self.version
7
7
  [Rambo::MAJOR, Rambo::MINOR, Rambo::PATCH].join('.')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rambo_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dana Scheider
@@ -287,7 +287,7 @@ rubyforge_project:
287
287
  rubygems_version: 2.5.1
288
288
  signing_key:
289
289
  specification_version: 4
290
- summary: rambo_ruby-0.3.2
290
+ summary: rambo_ruby-0.3.3
291
291
  test_files:
292
292
  - features/create_files.feature
293
293
  - features/error_modes.feature