cabbage-ex / gherkin

A Gherkin file parser written in Elixir. Extracted from https://github.com/meadsteve/white-bread.
11 stars 9 forks source link

Warnings on compile #6

Open mgwidmann opened 6 years ago

mgwidmann commented 6 years ago

Fix these:

==> gherkin
Compiling 8 files (.ex)
warning: String.rstrip/1 is deprecated, use String.trim_trailing/1
  lib/gherkin/parser/helpers/feature.ex:22

warning: String.strip/1 is deprecated, use String.trim/1
  lib/gherkin/parser/helpers/feature.ex:26

warning: String.strip/1 is deprecated, use String.trim/1
  lib/gherkin/parser/helpers/tables.ex:49

warning: String.lstrip/1 is deprecated, use String.trim_leading/1
  lib/gherkin/parser.ex:31

warning: String.lstrip/1 is deprecated, use String.trim_leading/1
  lib/gherkin/parser.ex:37

warning: String.lstrip/1 is deprecated, use String.trim_leading/1
  lib/gherkin/parser.ex:45

warning: String.strip/1 is deprecated, use String.trim/1
  lib/gherkin/parser/generic_line.ex:102

Generated gherkin app
secondspass commented 6 years ago

I can give this a go!

secondspass commented 6 years ago

Looks like you've already fixed it though