Guía paso a paso para construir su primera gema de rubí

Hoy en día, todas las funcionalidades de Rails están construidas como gemas Ruby. Por ejemplo, podemos usar Devise Gem para la parte de autenticación de la aplicación. Es como un paquete o biblioteca escrito en el lenguaje de programación Ruby. Además, otros pueden importarlo y utilizarlo en sus programas.

Paso 1
Bundler is like a dependency management tool for Ruby, which is also used by Rails. We will use Bundler for the basic gem structure. It helps us to install the correct versions of the gem and forces us to use the same in the application. So the command for that is, gem bundler install
After bundling, we should specify the gem “name” that we are going to create i.e. Bundle gem “testgem” will create a repository shown below

gema rubí
Entonces en esto podemos ver la estructura básica de la gema. En la carpeta lib, el archivo de versión se utilizará para mencionar la versión de la gema. Podemos editar la versión según nuestra conveniencia y publicarla, que será la versión en Rubygems.

rubígema

Paso 2
Consideraremos testgem.gemspec, con testgem como el nombre de la gema que crearemos como muestra. Se utilizará para configurar la gema en rubgems, por ejemplo, nombre de la gema, resumen, descripción, archivos necesarios en este proyecto, archivos de prueba que se utilizan para probar los archivos del proyecto, etc.

gema rubí 1
Archivo de rastrillo: – This makes releasing the new versions of the gem, and also helps other developers to check the test cases if they are going to modify the particular gem.
After the rake, we should create a test folder and test cases for each segments will be included here in the app directory.

Paso 3
Planning to make a rubygem, then we need to analyse the requirements what to build up and what all functionalities should be included in that.
While generating, we should create a sample.rb file inside lib folder and create own class with namespace because the other plugin has also the same classes then it will get conflict in the names. And require the sample.rb file in the testgem.rb file like reqiure “testgem/sample”.

Etapa 4
We have require “bundler/gem_tasks” in rake file so when we run rake release, it will release the gem to ruby gems and make it available. Push to git repository

RubyGems are commonly used in Applications
1) Rails – Rails is a ruby gem
2) Better Errors / Rails Footnotes – Debugging tools for Rails/Rack apps.
3) Resque / Delayed Job / Sidekiq – Used for creating background jobs, placing them on multiple queues, and processing them later.
4) Cancan / Devise – Authorization / Authentication Gems for Ruby on Rails.
5) Letter Opener – Test your emails within the browser itself.
6) Discourse – Discussion Forum.
7) Carrierwave / Paperclip – Classy solutions for file uploads for Rails.
8) Whenever – Cron jobs (scheduled tasks) in Ruby.
9) Thin / Unicorn / Puma – Web servers.

RailsCarma provide end to end Ruby on Rails Development services including, consulting, architecture, building, management and extension to companies around the globe. You can also hire Desarrolladores de Ruby on Rails con un proceso fácil de contratar. Contáctanos para saber más

Suscríbete para recibir las últimas actualizaciones

Artículos Relacionados

Deja un comentario

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *

es_ESSpanish