Use match.
Create private git repo to synchronize certs and profiles
Add gem 'fastlane'
to the Gemfile
in your RubyMotion project directory
Run bundle exec fastlane match init
in your RubyMotion project directory
be fastlane match init
class WellClusterAnnotationView < MKAnnotationView | |
attr_accessor :count | |
attr_accessor :count_label | |
def initWithAnnotation(annotation, reuseIdentifier:identifier) | |
super.tap do |view| | |
view.backgroundColor = UIColor.clearColor | |
view.setup_label | |
view.count = annotation.annotations.count |
module Spy | |
def self.on! instance | |
all_methods = instance.class.instance_methods false | |
instance.class.class_eval do | |
attr_accessor :__spy_call_depth__ unless instance.class.instance_methods.include?(:__spy_call_depth__) | |
all_methods.reject { |m| m.start_with? "__spy_" }.each do |m| | |
original_method_name = m | |
new_method_name = "__spy_original_#{m}__".to_sym | |
alias_method new_method_name, m | |
puts "Spying on! #{m}" |
Use match.
Create private git repo to synchronize certs and profiles
Add gem 'fastlane'
to the Gemfile
in your RubyMotion project directory
Run bundle exec fastlane match init
in your RubyMotion project directory
be fastlane match init
#!/Usr/bin/env ruby | |
require 'mail' | |
require 'fileutils' | |
# Check if a command line argument is provided | |
if ARGV.length < 1 | |
puts "Usage: ruby send_to-kindle.rb <directory containing epub files>" | |
exit 1 |