Blogs

Grundlagen von Sessions, Cookies und SEO in Rails

Rails uses a CookieStore to handle sessions. What it means is that every one of the information expected to recognize a client’s session is sent to the customer and nothing is put away on the server. When a user sends a request, the session’s cookie is processed and validated so rails, warden, devise, etc. can …

Grundlagen von Sessions, Cookies und SEO in Rails Weiterlesen »

Möglichkeiten zur Abwicklung von PayPal-Rückerstattungen in Rails

PayPal Checkout includes payment solutions ranging from simple to robust that let the merchants as well as developers choose an integration option that can be the best-suited for their website and customers.In order to integrate Paypal Payment Gateway, we need to do the following: 1. Have a PayPal business or Premier account.2. Create a PayPal …

Möglichkeiten zur Abwicklung von PayPal-Rückerstattungen in Rails Weiterlesen »

Wie generiert man eine Sitemap und fügt sie zu seiner Rails-Anwendung hinzu?

The use of sitemap confers its own set of advantages to a website. While it can add significant value in terms of smooth website navigation and enhanced visibility for the search engines, it also empowers the website with the ability to immediately inform the search engines about any changes happening on the site. This leads …

Wie generiert man eine Sitemap und fügt sie zu seiner Rails-Anwendung hinzu? Weiterlesen »

So machen Sie Ihre Rails-Anwendung mehrsprachig

Rails gem approach, MySQL approach and a Multilingual Rails structure Most of the world doesn’t speak English. That’s where internationalization and localization come in. Rails has a great i18n API.Reference: http://guides.rubyonrails.org/i18n.html It provides an easy-to-use and extensible framework for translating your application to a single custom language other than English or for providing multi-language support …

So machen Sie Ihre Rails-Anwendung mehrsprachig Weiterlesen »

Mandantenfähige Architektur mit PostgreSQL-Schemata

In Multi-tenant architecture by using single instance it serves multiple accounts. Each account is called a tenant. There are so many different approaches to implement multi-tenancy architecture using traditional or by using any gems. By comparing all those I found the simplest way of implementing Multi-tenancy that is with “Act as tenant” gem Representation of …

Mandantenfähige Architektur mit PostgreSQL-Schemata Weiterlesen »

Wie man eine Swagger-Dokumentation für Rails-API generiert

Making API for a Rails application is simple for a Ruby on Rails developer. In any case, how different clients/customers will know whether the API is working fine or not without a customer side application. Is there any answer for this which I can report for API inside the Rails application, The answer is yes …

Wie man eine Swagger-Dokumentation für Rails-API generiert Weiterlesen »

Verwendung von SQL- und NoSQL-Datenbanken in Single-Rails-Anwendungen (MySQL, PostgreSQL und MongoDB)

There are distinctive reasons why you should think about having various databases in your Ruby on Rails application. In my situation, I expected to store large quantities of data. Consider default database is MySQL. In our application database.yml file write connections for MySQL in normal way. After that, for connecting postgresql in the same application …

Verwendung von SQL- und NoSQL-Datenbanken in Single-Rails-Anwendungen (MySQL, PostgreSQL und MongoDB) Weiterlesen »

Search Kick Gem – Um Ihre Suche in der Rails-App intelligent zu gestalten

Search kick Gem is a Ruby gem that runs on top of Elasticsearch and makes it easy to make searches in a Rails-friendly fashion. In addition, it allows you to add more features including analytics, autocomplete, and personalized results. Searchkick realizes what your users are searching for. As more individuals hunt, it gets more brilliant …

Search Kick Gem – Um Ihre Suche in der Rails-App intelligent zu gestalten Weiterlesen »

de_DEGerman