0
votes
2answers
23 views

Ruby gets method throws an exception when arguments are passed from the console

I have experienced some ODD behavior from the code below: require 'CSV' $DEBUG = ARGV.empty? ? false : ARGV[0] #Global debug flag. class PhoneBook #class code here etc etc end ...
0
votes
1answer
30 views

$stdin.gets is not working when execute ruby script via pipeline

Here comes a sample ruby code: r = gets puts r if the script is executed standalone from console, it work fine. But if i ran it via pipeline: echo 'testtest' | ruby test.rb gets seem is ...
-1
votes
0answers
22 views

Browser based CLI [closed]

i have a germ of an idea forming and i wanted to check it out here with the community to see what might be involved. I'm looking for some way to connect a web browser to the command line. Ok if ...
3
votes
0answers
45 views

Windows command line args getting to Ruby program only if explicitly invoked as “ruby” [duplicate]

I have a Windows 7 machine, and I'm calling a Ruby script from it. If I do this: ruby Test.rb blah Then ARGV[0] is "blah", as expected. But if I do this: Test.rb blah Then ARGV[0] is empty. ...
0
votes
1answer
31 views

Install ruby gem globally from github repository

I want to install a ruby gem globally (sudo gem install capybara-webkit) but I want it to be installed from the master in its github repository. I know this can be done using bundler but I want to do ...
0
votes
0answers
36 views

Ror: name error when attempting to run server

C:\Users\Development\code\omrails>rails s => Booting WEBrick => Rails 3.2.13 application starting in development on (localhost:3000 - removed for posting question) => Call with -d to ...
0
votes
0answers
56 views

Rails Application, Create email using API

I am building a Ruby on Rails application which is used OpenSSL to create an email on another server(admin.hostedemail.com). Actually I can manage to control this mail server using OpenSSL command ...
0
votes
1answer
124 views

Run a Windows Batch File Through Wine Using Ruby on Rails in Linux

I'm developing a web application using Ruby on Rails and running it on a Linux (ubuntu) server. My backend processing is based on a Windows .bat file that calls a network of other .bat files based on ...
0
votes
1answer
60 views

Cannot get ruby optparse to output opts

I'm trying to learn how to use optparse to take in command line options however I am having a hard time getting it to function as it shows in the class documentation and any examples I can find ...
1
vote
1answer
26 views

Is there an IRB equivalent of .bash_profile/.bash_rc/.profile?

Is there a configuration file that is loaded every time an IRB session is started? For example I'd like to be able to require certain libraries and enable them for every session in IRB.
1
vote
1answer
27 views

Why does the shell output often use `mixed_characters' in its output?

I see backtick ( ` ) (also called a grave accent) characters mixed with apostrophe characters ( ' ) used together in all kinds of command-line output. Surely the reason/history behind why is ...
1
vote
1answer
92 views

scripting openssl to generate many certificates without manually entering password

I have created a certificate authority and need to generate and sign 50+ certificates. I wanted to script this process. I don't want to have to manually enter a password 100+ times! Here is the ...
1
vote
1answer
131 views

From RubyMine to Mac command-line app?

I'm a fairly accomplished developer, and know enough Ruby to shoot my foot from several polymorphic directions. Honestly, I have no interest in Rails and want to work with Ruby strictly as a Mac ...
0
votes
1answer
51 views

Ruby 1.9.3, Rails 3.2.12, OSX Lion - bootstrapping Rails for command-line scripts slow

Bootstrapping Rails in command-line scripts takes a long time (2.5+ seconds), for example: timer = Time.now ENV["RAILS_ENV"] ||= "development" require File.expand_path('../../config/application', ...
0
votes
1answer
74 views

Ruby command line program that saves and updates users/preferences

I'm building an application that takes in stdin to save a user and their preferences. Should I write the stdin to a text file and save the user input there? commandline.rb class CommandLine def ...
0
votes
0answers
31 views

Ruby OptionParser: process all not specified options

I am trying to a custom processor of all options not specified in OptionParser. But parse raises exception when first unknown option is found. Is it possible to get all unprocessed parameters and ...
1
vote
1answer
81 views

Deleting multiple lines of terminal output using ruby

I would like to be able to output two lines to the terminal and then delete both of them. I know you can do one by doing something like print "\b"*whatever but I would like to do something more ...
0
votes
2answers
64 views

Ruby on Rails - Can I call a Controller:Method from a batch routine in windows?

I'm relatively new to RoR working on Windows. I built a simple app in Rails that sends email using ActionMailer. I'd like to add a task to my windows scheduler to run a batch routine that calls my ...
0
votes
2answers
47 views

Ruby 1.8 not showing on the command line

I have installed ruby1.8 on my Ubuntu machine from the command line. But the system shows ruby has not been installed. Here is the console ouptput: frank@my-version3:~/apps$ sudo apt-get install ...
1
vote
4answers
922 views

Error while installing Jekyll on Mac OSX 10.8.2

I am new to Ruby, and relatively new to the command line. I am trying to install Jekyll to build a static site, and am having some issues. I have Ruby v. 1.8.7 and Ruby Gems v. 1.8.25 installed, but I ...
0
votes
1answer
99 views

How to authenticate facebook command line app (Ruby)

I'm trying to build a simple ruby command line facebook client that will display all of the user's friends to the screen (fb_friends.rb) and I am using the fb_graph ruby gem: ...
2
votes
1answer
102 views

How do I determine shell execution context of a Ruby script?

Is there a way to programmatically determine if a Ruby script is being run from the Windows DOS shell, Linux bash shell etc.? I am trying to emit ANSI colour codes on any console that supports it. I ...
0
votes
2answers
65 views

What is the best way to pass data from one cli app to another

For example how to pass data from one cli application for example Ruby script to PHP script. I mean raw data, text, binary and etc.. Arguments falls out because of raw data using temp files also is ...
1
vote
1answer
52 views

Why doesn't the -n switch print each line? [closed]

I'm trying to pipe the output of a command like this: some_command | ruby -ne "puts $_ if some_condition($_)" However, all I see are empty lines. Where is each line being stored?
2
votes
3answers
84 views

Command line options

I am confused about Ruby command-line options. Both -C dir and -X dir remove directory, but how do they differ from each other? How does -x [dir] differ from -X dir? What does -I dir do (I know that ...
2
votes
1answer
185 views

How to provide config file for Ruby command line utility written in Ruby?

I have a command line utility written in Ruby using GLI framework. I would like to have configuration for my command line utility in my home directory, using Ruby itself as DSL to handle it (similar ...
1
vote
1answer
117 views

Ruby windows command prompt previous lines

Is it possible to edit content already written to the command prompt using Ruby? So for example, lets say I've written 10 lines to STDOUT, can I move the cursor to, say, lime five and overwrite just ...
4
votes
1answer
133 views

How to insert ruby command prompt to ruby mine?

Earlier, a question was asked about inserting a terminal directly into Ruby Mine on Windows. It was answered but only to a certain extent. I understand how to get cmd.exe to open in Ruby using ...
0
votes
1answer
93 views

Ruby - Window command line interface

UPDATE -- I tried exactly the same thing using Python and it works perfectly !! import os os.system('certutil.exe -v -getkey "614D628A00000000014C" C:/Users/kra/kevin') Could somebody shed some ...
0
votes
0answers
86 views

Ruby Signal.trap exit(-1)

I am trying to unit test a command line tool, that uses trollop. One of the calls it makes to trollop is Trollop::die "my message", which underneath calls exit(-1) Now, this makes my unit tests to ...
1
vote
1answer
263 views

Is there a reference/cheat sheet for Rails generate command? [closed]

was curious if there was some kind of reference or cheat sheet for the Rails generate command? Something that lists out all the possible generators (model, controller, migration, etc.) as well as ...
0
votes
1answer
137 views

How can I configure optparse to accept both parameter options as a command?

I'm using Ruby's optparse library to parse the options for my command line app but I can't figure out how to also accept a command. It would be something like this: commit -f -d init init would be ...
0
votes
3answers
88 views

Cannot reinstall ruby framework in the right configuration

The other day I just randomly delete the whole ruby framework now I want to reinstall it. It is strange that I can not find /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby file ...
2
votes
1answer
72 views

Ruby libraries for command-prompt-based applications

I'm looking to create a Ruby application with a command-prompt-based interface. By "command-prompt-interface," I mean something similar to irb, but note that I do not mean actually executing Ruby ...
0
votes
2answers
74 views

Ruby OptionParser: How do I get the PATH? if the command is just “command path/to/some/file”?

I want create a command that has the following structure command path/to/some/file How do I enable this without entering the option -p or --path? #!/usr/bin/env ruby require 'optparse' options = ...
4
votes
4answers
352 views

How do you prompt for a sudo password using Ruby?

Often I find myself needing to write scripts that have to execute some portions as a normal user and other portions as a super user. I am aware of one similar question on SO where the answer was to ...
1
vote
2answers
973 views

Running rails runner with some parameters

/usr/local/bin/ruby script/runner --environment=production app/jobs/my_job.rb -t my_arg This command is my problem. my_job.rb is my script, and that handles command line arguments, in this case ...
3
votes
1answer
179 views

How do I use the GLI 2.0 ruby gem to accept ARGF data?

I've created my own gem using the GLI 2.0 gem for all the nice command line structure. It's working fine, but I'd also like to support data piped in. my_prog new some_file # this is ok already ...
0
votes
1answer
255 views

Whenever I try to issue the 'rails s' command in Aptana Studios it comes up with an error message

When I issue the command $ rails s in Aptana Studio's inbuilt command line, it comes up with this error and I don't know how it can be fixed the for the project can be found at ...
0
votes
1answer
331 views

Error message when trying to run the command: bundle install --without production

When I try to run the bundle install --without production command on Ubuntu 12.04, I get an error message like this: Could not find gem 'pg0.12.2 (>= 0) ruby' in the gems available on this ...
0
votes
2answers
627 views

Getting Redis up an running with ruby

I have installed Redis via gems, but am having a problem getting it started. Following James Edward Gary II steps http://blog.grayproductions.net/articles/setting_up_the_redis_server/ I have: $ ...
3
votes
1answer
122 views

ruby command line LoadError

When I try to include a library on the command line, I receive LoadError messages $ ruby -v ruby 1.8.7 (2012-06-29 patchlevel 370) $ gem list | grep coderay_bash coderay_bash (1.0.2) $ ruby ...
3
votes
3answers
207 views

Ruby 1.9.3 @OSX Lion and Cron

I installed Ruby 1.9.3p125 via this guide (up to point #5): LINK Now I have this problem: my script works wonderfully from my command line, but if I execute it from Cron it seems to use a default ...
1
vote
2answers
72 views

Handling data storage in a Ruby commandline application

I've decided to write a little program in Ruby to handle my humble financial tracking needs. It's basically a ledger, a program to track income and expenses and do various kinds of data aggregation. ...
1
vote
1answer
128 views

RVM forgets gemsets when closing terminal on OSX Lion

I have a similar problem to the one listed here: RVM and OSX Lion - RVM 'forgets' gemsets on system restart My RVM forgets the gemsets when I simply close the terminal. I've done rvm use ...
3
votes
1answer
205 views

Running ruby gem sprockets from command line

I am finding very little documentation on running sprockets from the command line. Does anyone know how to setup the .sprocketsrc file? Examples would be great especially on how to configure the ...
1
vote
1answer
43 views

Treat files on disk as option in command line

I want to make a command-line utility in ruby that when run, list the files in the current directory and shows it as an option list. 1 - somefile.txt 2 - somefile.pdf 3- somefile.whatever So i can ...
0
votes
1answer
138 views

Ruby: register output from a shell command

I have a shell command, that I run from ruby: cat_command = "cat 0.mpg 7.mpg 15.mpg 8.mpg 1.mpg > intermed.mpg" %x[cd #{my_dir} && #{cat_command}] It returns cat: 8.mpg: No such ...
0
votes
3answers
171 views

sandbox testing environments exist for TDD'ing command line application

I'm writing a command line command but want to TDD it. I'll be creating and deleting files and was wondering if there's a sandbox testing gem or something like that. I'm using ruby and rspec.
2
votes
4answers
663 views

How can I pass a variable to a system() call in ruby?

Let's say I have a bunch of text in a variable, some_var, that could be pretty much anything. some_var = "Hello, I'm a \"fancy\" variable | with a pipe, double- and single-quotes (terminated and ...

1 2 3 4