Project

twing

0.0
No commit activity in last 3 years
No release in over 3 years
This rubygem does not have a description or summary.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.16
>= 0
~> 10.0

Runtime

 Project Readme

Twing

Pluginable Twitter Application

Installation

$ gem install twing

Usage

$ twing -s setting.yml
$ bundle exec twing -s ./setting.yml --help
Usage: twing [options]
    -h, --help                       help
    -s, --setting VALUES             setting file path
    -d, --debug                      debug mode
        --log-dir VALUES             log dir
        --home-timeline              start streamer with home_timeline
        --filter                     start streamer with filter
        --user                       start streamer with user
        --worker                     start worker
        --standalone                 standalone mode
    -p, --pouring VALUES             direct pouring tweet

Configuration File

Configuration file is YAML format file.

Example

debug: false
log_dir: /tmp/log
mode: home_timeline
twitter:
  api_key:
    consumer_key: CONSUMER_KEY
    consumer_secret: CONSUMER_SECRET
    access_token: ACCESS_TOKEN
    access_token_secret: ACCESS_TOKEN_SECRET
  home_timeline_options:
    query:
      timeline_count: 200
      exclude_replies: false
    interval: 60
  filter_options:
    follow: '111111111,222222222'
redis:
  config:
    host: localhost
    port: 6379
  namespace: hoge
require:
  - require_module_name
modules:
  module_name:
    module_setting: hoge

Use Docker

Dockerfile

FROM ruby:2.4

RUN gem install twing --no-document
RUN gem install twing_earch --no-document # Install some plugins

ENTRYPOINT ["twing"]

docker-compose.yml

version: '2'
services:
  redis:
    image: redis
    restart: always

  server: &base
    build: .
    restart: always
    command: -s /app/setting.yml
    volumes:
      - ./setting/test.yml:/app/setting.yml
      - ./log:/app/log

  worker:
    <<: *base
    command: -s /app/setting.yml --worker

Development

After checking out the repo, run bin/setup to install dependencies. 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.

Make a new plugin

There are two ways.

  • Single file
  • gem

Single file

Example

require 'twing/modules/base'

class NewPlugin < Twing::Modules::Base
  def on_message(object)
    case object
    when Twitter::Tweet
      puts object.text
    end
  end
end

Twing.on_init do |app|
  app.receivers.add(NewPlugin)
end

Add values to the following section of the configuration file.

require: 
  - path_to_test_module.rb

gem

REF: twing_earch

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/flum1025/twing. 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.

Code of Conduct

Everyone interacting in the Twing project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.