Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/asimpson/adn-crossposter
An App.net to Twitter cross-poster written in Ruby.
https://github.com/asimpson/adn-crossposter
Last synced: 23 days ago
JSON representation
An App.net to Twitter cross-poster written in Ruby.
- Host: GitHub
- URL: https://github.com/asimpson/adn-crossposter
- Owner: asimpson
- Created: 2013-08-09T14:19:07.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-08-09T14:26:48.000Z (about 11 years ago)
- Last Synced: 2023-03-26T14:17:12.634Z (over 1 year ago)
- Language: Ruby
- Homepage:
- Size: 105 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ADN-Crossposter
This is a simple Ruby app that scrapes a App.net user's RSS feed and posts to Twitter. An ADN developer account is not required. By default it runs every minute.
I created this to run as a single worker process in it's own [Heroku](https://www.heroku.com/) app instance.
## Config.rb Setup
1. Create a Twitter app with Read/Write Access. Generate your OAuth keys from Twitter's dashboard and put all 4 keys in the `config.rb` file.
2. Fill in your App.net username in the `config.rb` file.
3. You can also choose to send @replies to Twitter or not.
## Heroku Setup
1. Create your Heroku app via Heroku's dashboard.
2. Create a git repository on your local machine and commit your config.rb changes (if you haven't already).
3. Set up a git remote pointing to Heroku.
e.g. `git remote add heroku [email protected]:APP-NAME.git`4. Push your git repo to Heroku.
5. Either through the Heroku dashboard or through your terminal, set your worker process to 1.
e.g. `heroku ps:scale clock=1`