pedz (Perry Smith)
- Login: pedz
- Email: pedz@easesoftware.com
- Registered on: 03/15/2009
- Last sign in: 10/18/2022
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 1 | 14 | 15 |
Activity
04/07/2022
-
03:49 PM Ruby Bug #18680: The documentation for File::Stat#ctime (for example) says: stat.ctime -> aTime
- Yea. The #atime method has "-> time" ... whatever is decided, the four methods: #atime, #ctime, #mtime, and #birthtime should all have the same doc.
04/05/2022
-
08:08 PM Ruby Bug #18680 (Closed): The documentation for File::Stat#ctime (for example) says: stat.ctime -> aTime
- I think it returns Time (not aTime). This is true for three of the four "time" methods.
I would not mind making a pull request if this would be helpful.
03/25/2022
-
02:02 AM Ruby Feature #18659 (Open): Create a Binding at the time of an exception and make it available to Rescue
- When an exception occurs, create a binding or I assume make a reference to the current binding and then add that to the Exception class via (e.g.) a #binding method. This would allow users to have a more global rescue code but would st...
11/24/2015
-
12:58 AM Ruby Bug #11733: Compile of ruby 2.2.3 fails on AIX 6.1 TL07 SP03
- Another set of errors (why I gave up on modifying fs.c were these:
compiling /usr/work/src/ruby-2.2.3/ext/-test-/file/fs.c
/usr/work/src/ruby-2.2.3/ext/-test-/file/fs.c: In function 'get_fsname':
/usr/work/src/ruby-2.2.3/ext/-test-/... -
12:54 AM Ruby Bug #11733 (Closed): Compile of ruby 2.2.3 fails on AIX 6.1 TL07 SP03
- The build on AIX fails in the ext/-test-/file directory with errors such as
compiling /usr/work/src/ruby-2.2.3/ext/-test-/file/fs.c
/usr/work/src/ruby-2.2.3/ext/-test-/file/fs.c: In function 'get_fsname':
/usr/work/src/ruby-2.2.3/ex...
09/10/2015
-
05:22 PM Ruby Bug #11519: "#{nil}" produces string as US-ASCII rather than current encoding
- Great! This is why I love the Ruby community.
Thank you!
09/09/2015
-
08:11 PM Ruby Bug #11519: "#{nil}" produces string as US-ASCII rather than current encoding
- Nobuyoshi Nakada wrote:
> What's and why wrong?
“#{bar}”.encoding != ‘UTF-8’ and “#{bar}#{foo}”.encoding != ‘UTF-8’ despite foo being UTF-8 and the encoding of the source file and hence the “ … “ string within the source file being U... -
04:38 PM Ruby Bug #11519 (Closed): "#{nil}" produces string as US-ASCII rather than current encoding
- ~~~ruby
#! /usr/bin/env ruby
# encoding: utf-8
puts "Ruby version: #{RUBY_VERSION}"
puts "__ENCODING__ = #{__ENCODING__}"
puts "hello".encoding
foo = "hello"
puts "#{foo}".encoding
puts "#{"hello"}".encoding
bar = nil
puts "#...
10/29/2014
-
03:15 AM Ruby Bug #10438: miniruby hangs on Mac 10.8.5 during build of ruby 2.1.4
- Adding --with-setjmp-type=_setjmp to configure fixed my problem. I can compile, install, and make check passes as well.
Please let me know if I can help someway in debugging this issue.
-
02:58 AM Ruby Bug #10438: miniruby hangs on Mac 10.8.5 during build of ruby 2.1.4
- --gcc= and --cc= options to configure result in an error.
I did export CC=.... before the configure and that took effect but that did not solve my issue.
On my host, /usr/bin/gcc is the same as /usr/bin/gcc-4.2. /usr/bin/clang pro...