├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── VERSION ├── fb-config.png ├── lib ├── stealth-facebook.rb └── stealth │ ├── facebook.rb │ └── services │ └── facebook │ ├── client.rb │ ├── events │ ├── message_event.rb │ ├── message_reads_event.rb │ ├── messaging_referral_event.rb │ └── postback_event.rb │ ├── message_handler.rb │ ├── reply_handler.rb │ ├── setup.rb │ └── version.rb ├── spec ├── spec_helper.rb └── version_spec.rb └── stealth-facebook.gemspec /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellostealth/stealth-facebook/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellostealth/stealth-facebook/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellostealth/stealth-facebook/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellostealth/stealth-facebook/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellostealth/stealth-facebook/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellostealth/stealth-facebook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellostealth/stealth-facebook/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.22.0 2 | -------------------------------------------------------------------------------- /fb-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellostealth/stealth-facebook/HEAD/fb-config.png -------------------------------------------------------------------------------- /lib/stealth-facebook.rb: -------------------------------------------------------------------------------- 1 | require 'stealth/facebook' 2 | -------------------------------------------------------------------------------- /lib/stealth/facebook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellostealth/stealth-facebook/HEAD/lib/stealth/facebook.rb -------------------------------------------------------------------------------- /lib/stealth/services/facebook/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellostealth/stealth-facebook/HEAD/lib/stealth/services/facebook/client.rb -------------------------------------------------------------------------------- /lib/stealth/services/facebook/events/message_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellostealth/stealth-facebook/HEAD/lib/stealth/services/facebook/events/message_event.rb -------------------------------------------------------------------------------- /lib/stealth/services/facebook/events/message_reads_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellostealth/stealth-facebook/HEAD/lib/stealth/services/facebook/events/message_reads_event.rb -------------------------------------------------------------------------------- /lib/stealth/services/facebook/events/messaging_referral_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellostealth/stealth-facebook/HEAD/lib/stealth/services/facebook/events/messaging_referral_event.rb -------------------------------------------------------------------------------- /lib/stealth/services/facebook/events/postback_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellostealth/stealth-facebook/HEAD/lib/stealth/services/facebook/events/postback_event.rb -------------------------------------------------------------------------------- /lib/stealth/services/facebook/message_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellostealth/stealth-facebook/HEAD/lib/stealth/services/facebook/message_handler.rb -------------------------------------------------------------------------------- /lib/stealth/services/facebook/reply_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellostealth/stealth-facebook/HEAD/lib/stealth/services/facebook/reply_handler.rb -------------------------------------------------------------------------------- /lib/stealth/services/facebook/setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellostealth/stealth-facebook/HEAD/lib/stealth/services/facebook/setup.rb -------------------------------------------------------------------------------- /lib/stealth/services/facebook/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellostealth/stealth-facebook/HEAD/lib/stealth/services/facebook/version.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellostealth/stealth-facebook/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellostealth/stealth-facebook/HEAD/spec/version_spec.rb -------------------------------------------------------------------------------- /stealth-facebook.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellostealth/stealth-facebook/HEAD/stealth-facebook.gemspec --------------------------------------------------------------------------------