4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 2 / 3
Newer►
45 results tagged ruby x
  • Devise & Rails: Tracking User Logins & Sign-ups - joanswork.com
    October 9, 2015 at 4:37:41 PM GMT+2 - permalink - archive.org - http://joanswork.com/devise-usage-tracking/
    devise log rails ruby track
  • thumbnail
    watir/watir-webdriver

    Une surcouche pour utiliser selenium-webdriver

    September 7, 2015 at 5:39:53 PM GMT+2 - permalink - archive.org - https://github.com/watir/watir-webdriver
    ruby test
  • methods - How do functions use hash arguments in Ruby? - Stack Overflow

    L'appel d'une fonction peut se faire avec ou sans parenthèse :

    foo() ou foo

    Ensuite, un Hash peut avoir plusieurs formes..

    {'a' => 12}
    où 'a' peut être n'importe quoi : string (comme ici), mais aussi objet,
    symbol : exemple :
    {:a => 12}

    La nouvelle syntaxe, valable uniquement si les clés sont des symboles :

    {a: 12, b: 'toto'}

    Et enfin quand on call une méthode qui peut prendre un hash en argument (entre autre), pas besoin de mettre les { }

    foo({a: 12, b:14})
    ou
    foo(a: 12, b:14)
    ou
    foo a: 12, b:14

    August 10, 2015 at 2:36:17 PM GMT+2 - permalink - archive.org - http://stackoverflow.com/questions/16576477/how-do-functions-use-hash-arguments-in-ruby
    arguments hash named rails ruby syntax
  • ruby - How to make --no-ri --no-rdoc the default for gem install? - Stack Overflow

    How to make --no-ri --no-rdoc the default for gem install?

    .gemrc :

    gem: --no-document

    July 9, 2015 at 11:01:17 AM GMT+2 - permalink - archive.org - http://stackoverflow.com/questions/1381725/how-to-make-no-ri-no-rdoc-the-default-for-gem-install
    gem ruby
  • thumbnail
    How to get exit status with Ruby's Net::SSH library? - Stack Overflow
    May 28, 2015 at 3:47:43 PM GMT+2 - permalink - archive.org - http://stackoverflow.com/questions/3386233/how-to-get-exit-status-with-rubys-netssh-library
    rake ruby ssh
  • GitHub · Build software better, together.
    March 28, 2015 at 11:10:48 PM GMT+1 - permalink - archive.org - https://github.com/bbatsov/ruby-style-guide/blob/master/README.md
    ruby syntax
  • 'Re: exception in thread? in Net::SSH::Multi' - MARC

    errs = []
    def test_server(errs, server)
    lambda do |options|
    begin
    server =~ /(.+)@(.+)/
    server_name, user = $2, $1
    puts server_name
    s = Net::SSH.start(server_name, user)
    s.close
    s = server
    rescue Errno::EHOSTUNREACH, SocketError
    puts "echec connexion #{server} : #{$!}"
    errs << server
    s = nil
    end

        return s
    end

    end

    Net::SSH::Multi.start(:on_error => :warn) do |session|

    define the servers we want to use

    session.use &test_server(errs, 'root@srv-04')
    session.use &test_server(errs, 'root@srv-07')
    session.use &test_server(errs, 'root@srv-08')
    session.use &test_server(errs, 'root@fail-08.local')

    execute commands on all servers

    session.exec( "hostname" )

    run the aggregated event loop

    session.loop
    end

    unless errs.empty?
    puts "The command failed on #{errs.size} hosts"
    end

    January 23, 2015 at 3:05:30 PM GMT+1 - permalink - archive.org - http://marc.info/?l=ruby-talk&m=122278906522776&w=2
    multissh ruby ssh
  • Readline in Ruby with rbenv

    Pour avoir ruby compilé readline (en installant avec rbenv)

    August 18, 2014 at 5:50:28 PM GMT+2 - permalink - archive.org - http://vvv.tobiassjosten.net/ruby/readline-in-ruby-with-rbenv/
    rails rbenv readline ruby
  • A Guide to Ruby Collections III: Enumerable and Enumerator
    July 19, 2014 at 5:54:24 PM GMT+2 - permalink - archive.org - http://www.sitepoint.com/guide-ruby-collections-iii-enumerable-enumerator/
    enumerable ruby
  • %Q, %q, %W, %w, %x, %r, %s | Simple Ruby on Rails
    July 19, 2014 at 5:54:01 PM GMT+2 - permalink - archive.org - http://simpleror.wordpress.com/2009/03/15/q-q-w-w-x-r-s/
    ruby
  • Ruby QuickRef | zenspider.com by ryan davis

    quelques bonnes bases

    July 19, 2014 at 5:20:16 PM GMT+2 - permalink - archive.org - http://www.zenspider.com/Languages/Ruby/QuickRef.html#4
    ruby
  • Adding Authentication with Devise - Rails Girls

    eaf auth with rails

    July 17, 2014 at 10:12:06 AM GMT+2 - permalink - archive.org - http://guides.railsgirls.com/devise/
    auth devise rails ruby
  • https://github.com/plataformatec/devise
    July 9, 2014 at 3:25:50 PM GMT+2 - permalink - archive.org - https://github.com/plataformatec/devise
    auth rails ruby
  • Ruby on Rake, ou comment Rake m'a rendu alcoolique

    Pourquoi rake ?

    June 13, 2014 at 3:25:13 PM GMT+2 - permalink - archive.org - http://t37.net/ruby-on-rake-ou-comment-rake-ma-rendu-alcoolique
    make rake ruby
  • Comment débuter en Ruby on Rails ? par @camilleroux

    Des ressources pour débuter

    April 26, 2014 at 11:55:23 AM GMT+2 - permalink - archive.org - http://www.camilleroux.com/2011/09/08/comment-debuter-en-ruby-on-rails/
    rails ruby
  • Consuming JSON REST resource through HTTP - Ruby Intro
    April 18, 2014 at 3:17:58 PM GMT+2 - permalink - archive.org - http://nizhu.github.io/ruby-intro-site/blog/2013/07/31/consuming-json-rest-resource-through-http/
    api puppetdb rest ruby
  • Installer différentes versions de ruby

    https://github.com/sstephenson/rbenv
    https://github.com/sstephenson/ruby-build

    March 6, 2014 at 1:39:40 PM GMT+1 - permalink - archive.org - https://links.infomee.fr/?hGXP8Q
    ruby
  • Try Ruby: learn the basics of the Ruby language in your browser.

    e-learning interactif ruby

    February 22, 2014 at 6:47:52 PM GMT+1 - permalink - archive.org - http://tryruby.org/
    elearning ruby
  • Code School - Rails for Zombies

    Tuto interactif pour commencer avec ruby on rails

    February 22, 2014 at 6:45:31 PM GMT+1 - permalink - archive.org - http://railsforzombies.org/
    elearning rails ror ruby
  • Thin - yet another web server
    February 7, 2014 at 11:54:15 AM GMT+1 - permalink - archive.org - http://code.macournoyer.com/thin/
    ruby
Links per page: 20 50 100
◄Older
page 2 / 3
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation