Sending email from your static site

29 Jul 2015

Last year I have moved my blog from Wordpress to Jekyll platform. Jekyll is a parsing engine bundled as a ruby gem used to build static websites from dynamic components... Read more...

Use Rspec and Capybara to test non Rails applications

22 Jul 2015

I am a Ruby programmer, but sometimes I need to test the behaviour of non Ruby web applications. In the last year I have developed over Social Engine, a social... Read more...

Spree Commerce the 100% opensource e-commerce

15 Jul 2015

Spree, aims to provide a solid framework for Rails developers to create engaging e-commerce solutions. Spree is useful to build the next generation e-commerce web application. No solution will satisfy... Read more...

SSL in Ruby on Rails

09 Jul 2015

Using SSL in Rails is very simple. Assuming that you installed a valid SSL certificate on your production server or on your PaaS Provider (Heroku), it is very easy to... Read more...

Struct and OpenStruct in Ruby

03 Jul 2015

According to the official Ruby documentation, a Struct is a convenient way to bundle a number of attributes together, using accessor methods, without having to write an explicit class. Struct... Read more...

Blocks and Functions in Ruby

20 Jun 2015

Now we will consider blocks and how to pass them to functions. Type the example_blocks.rb and execute it. #example_blocks.rb def a_method *args, &block p args block.call end a_method 0, 2,... Read more...

Configure Sendgrid in Redmine-2.5.1

13 May 2014

Successivamente al deploy di Redmine su Heroku, ho configurato Redmine per mandare le email utilizzando il servizio Sendgrid . La documentazione ufficiale dice di configurare il file yml config/configuration.yml tuttavia... Read more...

Install Redmine-2.5.1 in Heroku

03 May 2014

Recentemente ho installato Redmine-2.5.1 su Heroku. Ho trovato molte guide online ma erano tutte obsolete. Credo che il motivo sia legato al fatto che l’ecosistema Rails (il framework con cui... Read more...