0.0.5 • Published 11 years ago

grunt-tweet v0.0.5

Weekly downloads
1
License
-
Repository
github
Last release
11 years ago

grunt-tweet

Tweet from Grunt task.

Getting Started

This plugin requires Grunt ~0.4.1

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-tweet --save-dev

After that it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-tweet');

The "tweet" task

Overview

In your project's Gruntfile, add a section named tweet to the data object passed into grunt.initConfig():

grunt.initConfig({
  tweet: {
    options: {
      // OAuth credentials
      consumer_key: '...',
      consumer_secret: '...',
      access_token: '...',
      access_token_secret: '...'
    },
    release: {
      options: {
        crop: true
      },
      text: 'The 0.0.1 release',
      url: 'https://github.com/owner/repo/releases/tag/0.0.1'
    },
  },
})

Create an Tweeter App and get OAuth credentials (if you haven't already). Be careful, these tokens are like passwords so you should guard them carefully.

Best practice is to store credentials in separate gitignored-file, tweet.json for example:

{
  "consumer_key": "voLyIigS0FHaX6XDIA5zA",
  "consumer_secret": "sdiacB4CaMzeYDuLQE4zq9LdJrjjWrP7toqI77Fwk",
  "access_token": "3698193540-1iOOCcL60k7PA9RNq8mQtr9EAYwCwlHGh9IO3P8",
  "access_token_secret": "DeIdfCh7rCuHCU01AgHJGVHL3KfYYMDhMY7gks3I9s"
}

…and to read it in Gruntfile.json like so:

grunt.initConfig({
  tweet: {
    options: grunt.file.readJSON('tweet.json')
  },
  release: {}
})

Release History

0.0.1, Oct 8 2013

Initial commit.

0.0.5

11 years ago

0.0.4

11 years ago

0.0.3

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago