All Projects → stepnivlk → Firecord

stepnivlk / Firecord

Licence: mit
Firecord is an ODM framework for Firebase in Ruby.

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Firecord

Cycle Fire
A Firebase driver for Cycle.js
Stars: ✭ 12 (-62.5%)
Mutual labels:  firebase
Travelmantics
Firestore & firebase storage MVVM sample
Stars: ✭ 28 (-12.5%)
Mutual labels:  firebase
Sapper Template Firebase
Starter Rollup template for Sapper apps with Firebase functions based on https://github.com/nhristov/sapper-template-rollup.
Stars: ✭ 29 (-9.37%)
Mutual labels:  firebase
Beaverandfairies
Stars: ✭ 14 (-56.25%)
Mutual labels:  firebase
Fireship.io
Build and ship your app faster https://fireship.io
Stars: ✭ 1,569 (+4803.13%)
Mutual labels:  firebase
Shoutoutplay
The mobile app that allows you to create and record personal dedications using your favorite music playlists for corporate events, parties, weddings and get togethers.
Stars: ✭ 28 (-12.5%)
Mutual labels:  firebase
React Firebase Authentication
🔥 Boilerplate Project for Authentication with Firebase in React.
Stars: ✭ 863 (+2596.88%)
Mutual labels:  firebase
Angularconcepts
Key Angular Concepts using Latest Angular version 5
Stars: ✭ 31 (-3.12%)
Mutual labels:  firebase
Distributed
Stars: ✭ 913 (+2753.13%)
Mutual labels:  firebase
Filemap.xyz
upload files to a geographic point. never memorize a link again.
Stars: ✭ 29 (-9.37%)
Mutual labels:  firebase
Vue Firebase
Vue.js & Firebase boilerplate.
Stars: ✭ 15 (-53.12%)
Mutual labels:  firebase
Adfilter
This is a ad filter software using dns based on tdifw
Stars: ✭ 15 (-53.12%)
Mutual labels:  firebase
Date
A dating app that creates meaningful connections through food (Push notifications, Firebase, Chat, Schedule Calendar, Onboarding, Social media Login)
Stars: ✭ 29 (-9.37%)
Mutual labels:  firebase
Angular Universal Firebase
Angular Universal app using Firebase Cloud Functions
Stars: ✭ 14 (-56.25%)
Mutual labels:  firebase
Firextensions
[DEPRECATED] 🔥 Unofficial Kotlin Extensions for the Firebase Android SDK.
Stars: ✭ 30 (-6.25%)
Mutual labels:  firebase
Homenaje A Moviefire
Homenaje a MovieFire
Stars: ✭ 12 (-62.5%)
Mutual labels:  firebase
Firebase email signin
Google Firebase Login in Flutter
Stars: ✭ 28 (-12.5%)
Mutual labels:  firebase
Flutter Chat App
A chat app built on Flutter with firebase authentication and image sharing capability.
Stars: ✭ 964 (+2912.5%)
Mutual labels:  firebase
Donne
Open-source Blood Donation Platform
Stars: ✭ 30 (-6.25%)
Mutual labels:  firebase
Firenote
Online Markdown Notebook - Firebase backend
Stars: ✭ 29 (-9.37%)
Mutual labels:  firebase

Firecord

firecord

Build Status Ebert

Firecord is an ODM (Object-Document-Mapper) framework for Firebase in Ruby.

Connects to the Firebase REST API, (for now) it's totally synchronous and provides similar API to all those classical Ruby ORMs.

Usage

You need to download credentials.json for your Firebase project (Firebase console > Project settings > Service accounts > Generate new private key)

require 'firecord'

Firecord.configure do |config|
  config.credentials_file = '/path/to/credentials.json'
end

class Address
  include Firecord::Record

  root_key 'addresses'

  field :name, :string
  field :location, :string
  field :door_number, :integer
  field :timestamps
end

address = Address.new(name: 'home', location: 'Prerov', door_number: 1)
# => #<Address id=nil name="home" location="Prerov" door_number=1 created_at=nil updated_at=nil>

address.save
# => #<Address id="-KdvwtldpM4yVWJfoQIg" name="home" location="Prerov" door_number=1 created_at="2017-02-26T19:44:32+00:00" updated_at=nil>

another_address = Address.find("-KdvwtldpM4yVWJfoQIg")
# => #<Address id="-KgBbL8yedmT88iLmbOE" name="not_home" location="Semice" door_number=2 created_at="2017-02-26T19:33:12+00:00" updated_at=nil>

another_address.door_number = 23
# => 23

another_address.save
# => #<Address id="-KgBbL8yedmT88iLmbOE" name="not_home" location="Semice" door_number=23 created_at="2017-02-26T19:33:12+00:00" updated_at="2017-02-26T19:47:22+00:00">

another_address.update(location: 'Prerov nad Labem')
# => #<Address id="-KgBbL8yedmT88iLmbOE" name="not_home" location="Prerov nad Labem" door_number=23 created_at="2017-02-26T19:33:12+00:00" updated_at="2017-02-26T19:47:22+00:00">

Address.where(name: "not_home", door_number: 23)
# => [#<Address id="-KgBbL8yedmT88iLmbOE" name="not_home" location="Prerov nad Labem" door_number=23 created_at="2017-02-26T19:33:12+00:00" updated_at="2017-02-26T19:47:22+00:00">]

Address.all
# => [#<Address id="-KdvwtldpM4yVWJfoQIg" name="home" location="Prerov" door_number=1 created_at="2017-02-26T19:44:32+00:00" updated_at=nil>, #<Address id="-KgBbL8yedmT88iLmbOE" name="not_home" location="Prerov nad Labem" door_number=23 created_at="2017-02-26T19:33:12+00:00" updated_at="2017-02-26T19:47:22+00:00">]

address.delete
# => true

Address.all
# => [#<Address id="-KgBbL8yedmT88iLmbOE" name="not_home" location="Prerov nad Labem" door_number=23 created_at="2017-02-26T19:33:12+00:00" updated_at="2017-02-26T19:47:22+00:00">]

Current version: 0.2.6

This version adds:

  • Basic retypying/checking of invalid assignments, eg: address.door_number = '23' #=> 23.
  • .where method which for now accepts hash and works only for equality, eg: Address.where(door_number: 23)
  • Adds proper DateTime object for created_at and updated_at fields
  • Adds more 'integration' tests for dummy classes.
  • Introduces Serializer and Deserializer classes.

Roadmap to version 0.3.0

  • [x] Working timestamps
  • [ ] Error handling
  • [x] where method
  • [ ] Test everything
  • [x] Better configuration
  • [x] Documentation
  • [x] Basic type validation
  • [ ] Get rid of nil checks in firebase repo
  • [ ] Add fields: boolean, datetime, time, date, json
  • [ ] Add .delete_all method
  • [ ] Add .create method

Future versions

  • [ ] Add proper validation
  • [ ] Robust persistence state abstraction
  • [ ] Some basic associations
  • [ ] Define nested documents

Version log

0.2.2 codename Spike

This release is not meant to be used by anyone in production. I'm trying to lay down the interface, experiment and learn basics of ORM/ODM by coding and producing something (maybe) usefull. I still need to finalize some functionality, do refactoring and add features.

Installation

Add this line to your application's Gemfile:

gem 'firecord'

And then execute:

$ bundle

Or install it yourself as:

$ gem install firecord

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/stepnivlk/firecord. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].