Generate background pattern in Ruby
We will see how to generate a SVG background with triangle patterns in ruby to have something that look likes this: At first, install the TrianglePattern gem: $ gem install triangle_pattern Then we o
We will see how to generate a SVG background with triangle patterns in ruby to have something that look likes this: At first, install the TrianglePattern gem: $ gem install triangle_pattern Then we o
Take it easy Ruby! Basic concepts# Hello World# puts "Hello World!" Comments# # single line comment =begin Multi-lines comment =end Variables# my_var = 42 My_constant_var = 31337 Shorth