summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #224 from JEG2/issue_223v1.7.101-7-stableAbinoam P. Marques Jr2017-11-233-1/+6
|\ | | | | Add gemspec to Gemfile
| * Prepare for 1.7.10Abinoam P. Marques Jr2017-11-232-1/+4
| |
| * Add gemspec to GemfileAbinoam P. Marques Jr2017-11-231-0/+2
|/
* Version 1.7.9v1.7.9Abinoam P. Marques Jr2017-05-082-1/+4
|
* Merge pull request #210 from ivgiuliani/fix-frozen-stringsAbinoam P. Marques Jr2017-05-082-1/+11
|\ | | | | Do not attempt to change frozen strings
| * Do not attempt to change frozen stringsIvan Giuliani2017-05-082-1/+11
|/ | | | | | On Ruby 2.3+ string literals are frozen by default. This causes problems in `HighLine::Simulate` since it will try to `.slice!` a frozen string when the default `echo` has been changed.
* Merge pull request #170 from abinoam/fix_say_type_errorv1.7.8James Edward Gray II2015-10-094-3/+48
|\ | | | | Add tests for #168 #169 and fix another edge case
| * Simplify string concatenation on Paginator#page_printAbinoam Praxedes Marques Jr2015-10-091-1/+1
| |
| * Bump up version to 1.7.8Abinoam Praxedes Marques Jr2015-10-091-1/+1
| |
| * Update Changelog.md for 1.7.8Abinoam Praxedes Marques Jr2015-10-091-0/+3
| |
| * Fix String#lines returning an Enumerator on 1.9.3Abinoam Praxedes Marques Jr2015-10-091-1/+1
| |
| * Fix for erroneous pagination when same line count of HighLine#page_atAbinoam Praxedes Marques Jr2015-10-091-1/+1
| | | | | | | | | | Basically using scan to split the statement in lines was lefting an adicional last element that was an empty string. Using String#lines is the current way to do it properly.
| * Add test for non pagination when same line count of HighLine#page_atAbinoam Praxedes Marques Jr2015-10-091-0/+29
| |
| * Add test for #168 - raising when quiting pagingAbinoam Praxedes Marques Jr2015-10-091-0/+13
|/
* Merge pull request #169 from carbonin/fix_say_type_errorAbinoam P. Marques Jr.2015-10-091-1/+1
|\ | | | | Fixed issue where Array#split will return nil with only one element
| * Fixed issue where Array#split will return nil with only one elementNick Carboni2015-10-081-1/+1
|/ | | | Fixes #168
* Merge pull request #160 from abinoam/1-7-stablev1.7.7James Edward Gray II2015-09-223-2/+5
|\ | | | | Fix #159 - Make HighLine::Question to coerce its question argument into a String
| * Update Changlog.md and bump up version to 1.7.7Abinoam Praxedes Marques Jr2015-09-222-1/+4
| |
| * Fix #159 - Make HighLine::Question convert the 'question' argument to String ↵Abinoam Praxedes Marques Jr2015-09-221-1/+1
|/ | | | | | | first This makes possible to a calling code to pass both Symbols and Strings with the same result.
* Merge pull request #156 from abinoam/issue_155v1.7.6Abinoam P. Marques Jr.2015-09-173-2/+5
|\ | | | | Fix #155 - typo on var name
| * Update Changelog and bump up version to 1.7.6Abinoam Praxedes Marques Jr2015-09-172-1/+4
| |
| * Fix #155 - typo on var nameAbinoam Praxedes Marques Jr2015-09-171-1/+1
|/
* Update Changelog.md and bump up version to 1.7.5v1.7.5Abinoam Praxedes Marques Jr2015-09-142-1/+7
|
* Merge pull request #153 from mmmries/1-7-stableAbinoam P. Marques Jr.2015-09-141-2/+4
|\ | | | | support jruby9k for system extensions
| * support jruby9k for system extensionsMichael Ries2015-09-141-2/+4
|/
* Merge pull request #147 from abinoam/patch_for_55v1.7.4Abinoam P. Marques Jr.2015-07-162-1/+2
|\ | | | | Workaround on #55 for stty
| * Bump up version to 1.7.4Abinoam Praxedes Marques Jr2015-07-161-1/+1
| |
| * Workaround on #55 for sttyAbinoam Praxedes Marques Jr2015-07-161-0/+1
|/
* Merge pull request #143 from abinoam/issue_142v1.7.3Abinoam P. Marques Jr.2015-06-294-1/+29
|\ | | | | Add HighLine::Simulator test - Closes #142
| * Bump up version to 1.7.3 and update ChangelogAbinoam Praxedes Marques Jr2015-06-292-1/+4
| |
| * Add tests for HighLine::Simulator - Issue #142Abinoam Praxedes Marques Jr2015-06-291-0/+23
| | | | | | | | As suggested by @bparanj on https://github.com/JEG2/highline/issues/142
| * Add ruby 2.2.1 and 2.2.2 to travis matrixAbinoam Praxedes Marques Jr2015-06-291-0/+2
|/
* Merge pull request #139 from abinoam/issue_138v1.7.2James Edward Gray II2015-04-193-2/+7
|\ | | | | Issue #138
| * Update Changelog.md for 1.7.2Abinoam Praxedes Marques Jr2015-04-191-0/+5
| |
| * Update VERSION to 1.7.2Abinoam Praxedes Marques Jr2015-04-191-1/+1
| |
| * Reversed IO.console.winsize valuesFission Xuiptz2015-04-191-1/+1
|/ | | | IO.console.winsize returns [ rows, columns ], but terminal_size should return [ columns, rows ]
* Merge pull request #137 from KrauseFx/patch-1James Edward Gray II2015-04-181-0/+1
|\ | | | | Added current gem version to README
| * Added current gem version to READMEFelix Krause2015-04-181-0/+1
|/ | | This is very useful when verifying if I run the latest version. It fetches the version automatically from RubyGems.org
* Merge pull request #134 from abinoam/issue_129_fixv1.7.1James Edward Gray II2015-02-2412-13/+43
|\ | | | | Some fixes for Rubinius and dropping of 1.8 support
| * Bump up to version 1.7.1. Ready for release.Abinoam Praxedes Marques Jr2015-02-241-1/+1
| |
| * Make ruby >= 1.9.3 required at gemspec and update docsAbinoam Praxedes Marques Jr2015-02-243-0/+9
| |
| * Update Changelog for 1.7.1 releaseAbinoam Praxedes Marques Jr2015-02-241-0/+12
| |
| * Drop ruby 1.8 supportAbinoam Praxedes Marques Jr2015-02-242-3/+0
| |
| * Skip readline test on rubiniusAbinoam Praxedes Marques Jr2015-02-241-0/+8
| |
| * Use #to_s for question and menu string conversion. Rubinius compatible.Abinoam Praxedes Marques Jr2015-02-242-2/+2
| |
| * Normalize to Test::Unit assertionsAbinoam Praxedes Marques Jr2015-02-242-3/+3
| |
| * Issue #129 - Apply @elyscape suggestionAbinoam Praxedes Marques Jr2015-02-241-4/+8
|/
* Merge pull request #133 from abinoam/issue_129James Edward Gray II2015-02-246-9/+17
|\ | | | | Make some adjustments on tests so we clear messages on travis
| * Add 1.8.7 for the 'allow failure' travis ci listAbinoam Praxedes Marques Jr2015-02-241-0/+1
| |
| * Avoid using #skip. Lacking on some versionsAbinoam Praxedes Marques Jr2015-02-241-10/+8
| |