Project

bot_nyan

0.0
No commit activity in last 3 years
No release in over 3 years
Bot_nyan is quickly creating twitter-bot in Ruby with Sinatra like DSL
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Runtime

~> 0.4.7
~> 3.7.0
 Project Readme

About

Bot_nyan is simple twitter-bot-framework with DSL like Sinatra.

Installation

Add this line to your application's Gemfile:

gem 'bot_nyan'

And then execute:

$ bundle

Or install it yourself as:

$ gem install bot_nyan

Or clone and build yourself:

$ git clone git://github.com/taiki45/bot_nyan.git && cd bot_nyan

$ gem build bot_nyan.gemspec

$ rake install

Usage

Simple echo and say-hello Bot.

# bot.rb
# -*- encoding: utf-8 -*-
require 'bot_nyan'

set :consumer_key, {:key => 'XXXXXX',
                    :secret => 'XXXXXX'}
set :access_token, {:token => 'XXXXXX',
                    :secret => 'XXXXXX'}
set :name, 'my_bot_name'

on_matched_reply /^@my_bot_name\s(Hello)/u do
  reply "@#{user.screen_name} Hello!"
end

on_replied do
  reply "@#{user.screen_name} #{status.text.slice(/^@my_bot_name\s(.*)/u, 1)}"
end

And Simply do it.

$ ruby bot.rb

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request