ocra icon indicating copy to clipboard operation
ocra copied to clipboard

One-Click Ruby Application Builder

Results 73 ocra issues
Sort by recently updated
recently updated
newest added

In other github issue discussions here Lars points out the time constraints, so I am not expecting this suggestion to be easily implemented. But I hope it may serve a...

➜ exe gem install ocra Fetching ocra-1.3.11.gem Successfully installed ocra-1.3.11 Parsing documentation for ocra-1.3.11 Installing ri documentation for ocra-1.3.11 Done installing documentation for ocra after 0 seconds 1 gem installed...

Hi larsch, and guys, I tried to compile a script today with Ruby 3.1 x64 and with 3.1 x86. Ocra shouts about not finding fiber.so. He says that can't find...

If you want Ocra to work under newer Ruby versions, I recommend my fork OCRAN. It's a drop-in replacement which solves multiple other problems as well. [OCRAN](https://github.com/largo/ocran) `gem install ocran`...

Hi, everyone, We have created OCRA derivative and plan to use and maintain it long-tern. https://github.com/tamatebako/aibika Ruby 2.7 - 3.2 as of today

Hi, I tried OCRA in Windows 10 (10.l0.19043 Build 19043) with Ruby 3.0.2 (including MSYS2 & MINGW Toolchains) The code in sample.rb is the following: ```ruby puts 'Hello, World!' ```...

I've got a script for reading and dumping serialized ruby files into text files, and I need to share this script with people who don't have ruby installed and would...

Executable generated with last gem Ocra 1.3.11 and Ruby 3.2.2 return following error C:/Users/x/AppData/Local/Temp/ocrFBB1.tmp/lib/ruby/site_ruby/3.2.0/rubygems.rb:1368:in `read': No such file or directory @ rb_sysopen - C:/Users/x/AppData/Local/Temp/ocrFBB1.tmp/lib/ruby/site_ruby/3.2.0/rubygems/core_ext/kernel_require.rb (Errno::ENOENT) from C:/Users/x/AppData/Local/Temp/ocrFBB1.tmp/lib/ruby/site_ruby/3.2.0/rubygems.rb:1368:in `' from :2:in...

The startup time of Ruby on Windows is slower than on Linux or OSX. Sometimes it may take up couple of seconds for the initial window to show. A nice...

feature

```rb require 'uri' require 'net/http' require 'net/https' url = 'https://google.com/post' uri = URI.parse url http = Net::HTTP.new uri.host, uri.port req = Net::HTTP::Post.new uri.path http.use_ssl = uri.scheme == 'https' r =...