├── .circleci └── config.yml ├── .github └── workflows │ └── gempush.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .rubocop_todo.yml ├── .ruby-version ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib ├── twitty.rb └── twitty │ ├── config.rb │ ├── constants.rb │ ├── errors.rb │ ├── facade.rb │ ├── payload.rb │ ├── request.rb │ ├── response.rb │ └── version.rb ├── spec ├── spec_helper.rb ├── twitty │ ├── config_spec.rb │ ├── facade_spec.rb │ └── request_spec.rb └── twitty_spec.rb └── twitty.gemspec /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/workflows/gempush.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/.github/workflows/gempush.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.1 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/twitty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/lib/twitty.rb -------------------------------------------------------------------------------- /lib/twitty/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/lib/twitty/config.rb -------------------------------------------------------------------------------- /lib/twitty/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/lib/twitty/constants.rb -------------------------------------------------------------------------------- /lib/twitty/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/lib/twitty/errors.rb -------------------------------------------------------------------------------- /lib/twitty/facade.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/lib/twitty/facade.rb -------------------------------------------------------------------------------- /lib/twitty/payload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/lib/twitty/payload.rb -------------------------------------------------------------------------------- /lib/twitty/request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/lib/twitty/request.rb -------------------------------------------------------------------------------- /lib/twitty/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/lib/twitty/response.rb -------------------------------------------------------------------------------- /lib/twitty/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Twitty 4 | VERSION = '0.1.5' 5 | end 6 | -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/twitty/config_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/spec/twitty/config_spec.rb -------------------------------------------------------------------------------- /spec/twitty/facade_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/spec/twitty/facade_spec.rb -------------------------------------------------------------------------------- /spec/twitty/request_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/spec/twitty/request_spec.rb -------------------------------------------------------------------------------- /spec/twitty_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/spec/twitty_spec.rb -------------------------------------------------------------------------------- /twitty.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chatwoot/twitty/HEAD/twitty.gemspec --------------------------------------------------------------------------------