0.0
No commit activity in last 3 years
No release in over 3 years
This Gem is used to match the cards and display the popup when the image matches. For each match there will be certain scores based on hoew many times you click the same image.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

"Matching Base"

This is the Gem used to match the images and show th pop up screen of matched image for IOS mobile application developed using the RubyMotion and Rmq.

=========================================

Installation steps

  1. Open GemFile of your Rubymotion project and give specify the gem "matching_base"

  2. bundle install

or

  1. gem install matching_base

  2. Open the Rakefile of your RubyMotion project and follow the below steps

a) require 'matching_base'

b) Inside Motion::Project::App.setup do |app| add the code app.files += MatchingBase.matching_files

this will add the all the files of gem to the application.

c) Open the app_delegate.rb file and inside on_load method give the below line open MatchingWelcomeScreen.new(nav_bar: false) and remove the default open statement.

d) Create one csv file with "Image,Title,Decription" headers , the image name specified here must be in the resources of your application and also this csv file must be named as "characters.csv" and must be placed inside the resources of your applicaation.

e) If you want background image, place the image by name "background_image.png" in resources directory.

f) Place one image by name "Blank.png" and place in resource directory. This image will be used as default card image before the matching.

g)

e) bundle exec rake.