inspec/lib
Dominik Richter 24451469ca api: method_missing doesnt resolve hashmaps
Since #its has its(pun) own way of handling calls with a dot-notation, the full call is never passed to the resource. For example:

```ruby
describe json('file') do
  its('a.b.c') { should eq 123 }
end
```

This is resolved to calling `json('file').a.b.c` and thus doesnt work as an intended `json('file').send('a.b.c'). For now use
regular its-behavior of calling `json('file').params ...  its(%w{a b c}) { should ... }`.

Its' behavior must be improved.
2015-10-27 16:35:43 +01:00
..
inspec lint 2015-10-27 03:07:38 +01:00
matchers generalize matcher 2015-10-25 21:33:36 +01:00
resources api: method_missing doesnt resolve hashmaps 2015-10-27 16:35:43 +01:00
utils restore parse_passwd_line to be public, thanks @chris-rock 2015-10-26 17:16:05 +01:00
inspec.rb rename vulcanosec -> inspec 2015-10-26 12:34:15 +01:00