Skip to content

Instantly share code, notes, and snippets.

View Abdullah-F's full-sized avatar
🏠
Working from home

Abdullah Fadhel Noman Al-Omaisi Abdullah-F

🏠
Working from home
View GitHub Profile
require 'json'
require 'openssl'
test_data1_base = {
coordinates: [
41.0555388,
-73.8679639
],
location: "Lyndhurst Mansion, South Broadway, Tarrytown, NY",
type: {
@Abdullah-F
Abdullah-F / Gemfile
Created June 25, 2020 05:51 — forked from dhh/Gemfile
HEY's Gemfile
ruby '2.7.1'
gem 'rails', github: 'rails/rails'
gem 'tzinfo-data', '>= 1.2016.7' # Don't rely on OSX/Linux timezone data
# Action Text
gem 'actiontext', github: 'basecamp/actiontext', ref: 'okra'
gem 'okra', github: 'basecamp/okra'
# Drivers

Rails naming conventions

General Ruby conventions

Class names are CamelCase.

Methods and variables are snake_case.

Methods with a ? suffix will return a boolean.