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

RubyScript2Exe had a very useful feature, you can extract, modify and "compile" on location, even without ruby (http://www.erikveen.dds.nl/rubyscript2exe/index.html#3.4.3) It could be interesting to add this feature to ocra.

In Windows 7 with ruby version 1.9.2 and ocra version 1.3.0 (update: just updated gem to 1.3.1 and issue still occurs). I can add an icon using the --icon flag...

Here is my problem: I have a file "file.txt", contents: This is a test file. I have a test script "test.rb", contents: astr = ARGV[0] File.open(astr,"r").each { |line| puts line...

Currently i have 1.9.3 ruby version. But i am facing the below mentioned issue even in the 2.0.0 and 2.1.6. I have a very simple ruby script which open a...

Is the feature for this file to be stand alone without the library or gem worth the increase difficulty of maintainability?

The command I used was: ocra myapp.rbw lib/\* data/\* icons/\* scripts/\* --gem-minimal --no-enc Several "\* Loaded features" were listed, that last one being Win32API.rb. After that, the ruby interpreter crashed...

ruby 2.0.0p195 (2013-05-14) [i386-mingw32] ocra (1.3.1) Inno Setup 5 Build command: ocra "Daily Workshop Report.rb" --output "Daily Workshop Report.exe" --chdir-first --no-lzma --innosetup "DWR.iss" Somewhere between nokogiri-1.5.9-x86-mingw32 and nokogiri 1.6.0 the...

An ocra executable file is expanded to temporary folder at running. So really executed file is ruby.exe or rubyw.exe, not be exe file created by ocra. Therefore, *.exe.manifest file and...

feature

The ability to create an installer looks really great. However, it seems it is not possible to use this when creating a command line utility that should run from the...

I'm using groups in my Gemfile because some large gems are only needed during development. ``` ruby gem 'sinatra' gem 'sinatra-partial' gem 'sinatra-contrib', group: :development gem 'activesupport', require: false group...