├── README.mdown ├── Rakefile ├── VERSION ├── features ├── partial_split.feature ├── split.feature ├── step_definitions │ └── split_steps.rb └── support │ └── env.rb ├── full-name-splitter.gemspec ├── lib └── full-name-splitter.rb └── spec ├── lib └── full-name-splitter_spec.rb ├── spec.opts └── spec_helper.rb /README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pahanix/full-name-splitter/HEAD/README.mdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pahanix/full-name-splitter/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.1.2 2 | -------------------------------------------------------------------------------- /features/partial_split.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pahanix/full-name-splitter/HEAD/features/partial_split.feature -------------------------------------------------------------------------------- /features/split.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pahanix/full-name-splitter/HEAD/features/split.feature -------------------------------------------------------------------------------- /features/step_definitions/split_steps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pahanix/full-name-splitter/HEAD/features/step_definitions/split_steps.rb -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pahanix/full-name-splitter/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /full-name-splitter.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pahanix/full-name-splitter/HEAD/full-name-splitter.gemspec -------------------------------------------------------------------------------- /lib/full-name-splitter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pahanix/full-name-splitter/HEAD/lib/full-name-splitter.rb -------------------------------------------------------------------------------- /spec/lib/full-name-splitter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pahanix/full-name-splitter/HEAD/spec/lib/full-name-splitter_spec.rb -------------------------------------------------------------------------------- /spec/spec.opts: -------------------------------------------------------------------------------- 1 | --colour 2 | --format specdoc -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pahanix/full-name-splitter/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------