cute_print 1.1.4 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/Gemfile +1 -17
- data/README.md +3 -3
- data/cute_print.gemspec +63 -77
- data/lib/cute_print/release.rb +13 -0
- metadata +98 -62
- data/.config/cucumber.yml +0 -1
- data/.rspec +0 -1
- data/.travis.yml +0 -6
- data/.yardopts +0 -7
- data/Gemfile.lock +0 -110
- data/VERSION +0 -1
- data/features/.nav +0 -10
- data/features/call_chain.feature +0 -96
- data/features/configuring/configure_output.feature +0 -21
- data/features/configuring/configure_position_format.feature +0 -39
- data/features/configuring/readme.md +0 -1
- data/features/configuring/reset_configuration.feature +0 -24
- data/features/inspect/core.feature +0 -18
- data/features/inspect/inspect.feature +0 -29
- data/features/inspect/inspect_with_location.feature +0 -54
- data/features/inspect/inspect_with_source.feature +0 -16
- data/features/inspect/readme.md +0 -1
- data/features/pretty_print/pretty_print.feature +0 -41
- data/features/pretty_print/pretty_print_with_location.feature +0 -73
- data/features/pretty_print/pretty_print_with_source.feature +0 -27
- data/features/readme.md +0 -1
- data/features/support/env.rb +0 -9
- data/features/support/helpers/example.rb +0 -52
- data/features/support/helpers/example_runner.rb +0 -24
- data/features/support/helpers/fork_example_runner.rb +0 -37
- data/features/support/helpers/lib_path.rb +0 -7
- data/features/support/helpers/shell_example_runner.rb +0 -26
- data/features/support/helpers/temp_dir.rb +0 -15
- data/features/support/step_definitions.rb +0 -49
- data/spec/cute_print_spec.rb +0 -54
- data/spec/format/inspect_spec.rb +0 -20
- data/spec/format/pretty_print_spec.rb +0 -36
- data/spec/inline_labeler_spec.rb +0 -39
- data/spec/irb_spec.rb +0 -25
- data/spec/labeler_spec.rb +0 -97
- data/spec/outline_labeler_spec.rb +0 -37
- data/spec/printer_spec.rb +0 -79
- data/spec/silence_warnings.rb +0 -24
- data/spec/spec_helper.rb +0 -21
- data/spec/support/captures_stderr.rb +0 -3
- data/tasks/cucumber.rake +0 -8
- data/tasks/default.rake +0 -1
- data/tasks/jeweler.rake +0 -39
- data/tasks/spec.rake +0 -5
- data/tasks/test.rake +0 -2
- data/tasks/yard.rake +0 -3
- data/test_support/captures_stderr.rb +0 -16
- data/test_support/captures_stdout.rb +0 -16
- data/test_support/thread_unsafe_string_io.rb +0 -13
data/tasks/spec.rake
DELETED
data/tasks/test.rake
DELETED
data/tasks/yard.rake
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
# Ruby may implement #puts with two calls to #print: One for the
|
2
|
-
# value, and one for the new-line. Do that, in order to flush
|
3
|
-
# out thread-safety bugs.
|
4
|
-
|
5
|
-
class ThreadUnsafeStringIO < StringIO
|
6
|
-
def puts(*args)
|
7
|
-
args.each do |arg|
|
8
|
-
print arg
|
9
|
-
Thread.pass
|
10
|
-
print "\n"
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|