Search Results

Search found 4 results on 1 pages for 'sirupsen'.

Page 1/1 | 1 

  • Trouble reinstalling Gem after power failure

    - by Sirupsen
    Yesterday I tried to install Jeweler via Rubygems, however somewhere in the middle of the process I had a power failure, resulting in my computer turning off in the middle of the installation process. Once I got it back up, I tried to reinstall Jeweler, however resulting in an error I've had trouble decoding. Does anyone have any idea on how to fix this problem? (I tried uninstall, cleanup and check)

    Read the article

  • Remapping design issue

    - by Sirupsen
    Hello, I'm currently developing a Ruby Gem and I'm a bit lost on the design currently. Basically, I'm remapping some APIs, so my skeleton is something like this: module MyApp module SomeApi class Function > Base::Function ... end class Function2 > Base::Function2 ... end ... end module SomeApi2 ... end class RemappedFunction def initalize # set some values and stuf ... end def remapped_method # Problem: # How would I know, if I should take contact to # SomeApi, or SomeApi2? end end def interact_with(api) # What would be the best way of letting RemappedFunction # know which API to use? end end someapi2 = MyApp.interact_with(:someapi2) someapi2.remapped_method Any ideas?

    Read the article

  • Trouble reinstalling Gem after failure

    - by Sirupsen
    Yesterday I tried to install Jeweler via Rubygems, however somewhere in the middle of the process I had a power failure, resulting in my computer turning off in the middle of the installation process. Once I got it back up, I tried to reinstall Jeweler, however resulting in an error I've had trouble decoding. Does anyone have any idea on how to fix this problem? (I tried uninstall, cleanup and check)

    Read the article

  • Dynamic decision on which class to use

    - by Sirupsen
    Hello, Let's say I have a class named Klass, and a class called Klass2. Depending on the user's input, I'd like to decide whether I'll call "hello_world" on Klass, or Klass2: class Klass def self.hello_world "Hello World from Klass1!" end end class Klass2 def self.hello_world "Hello World from Klass2!" end end input = gets.strip class_to_use = input puts class_to_use.send :hello_world The user inputs "Klass2" and the script should say: Hello World from Klass2! Obviously this code doesn't work, since I'm calling #hello_world on String, but I'd like to call #hello_world on Klass2. How do I "convert" the string into a referrence to Klass2 (or whatever the user might input), or how could I else would I achieve this behavior?

    Read the article

1