New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

taskmapper-bcx

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

taskmapper-bcx

  • 0.0.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

taskmapper-bcx

This is the TaskMapper adapter for interaction with Basecamp Next

Usage

Initialize the taskmapper-bcx instance using your username, password, and account ID:

bcx = TaskMapper.new(
  :bcx,
  :account_id => "123456789",
  :username => "YOUR_USERNAME",
  :username => "YOUR_PASSWORD",
)

Finding Projects

You can find your own projects by using:

projects = bcx.projects # will return all projects
projects = bcx.projects ["project_id", "another_project_id"]
project = bcx.projects.find :first, "project_id"
projects = bcx.projects.find :all, ["project_id", "another_project_id"]

Finding Tickets

tickets = project.tickets # All open tickets
tickets = project.tickets :all, :status => 'closed' # all closed tickets
ticket = project.ticket 981234

Opening A Ticket

ticket = project.ticket!(
  :description => "Content of the new ticket."
)

Closing Tickets

ticket.close

Reopening Tickets

ticket.reopen

Updating Tickets

ticket.description = "New description"
ticket.save

Finding Comments

ticket.comments # all comments for a ticket
ticket.comments 90210

Creating a Comment

ticket.comment! :body => "New Comment!"

Dependencies

Contributing

The main way you can contribute is with some code! Here's how:

  • Fork taskmapper-bcx
  • Create a topic branch: git checkout -b my_awesome_feature
  • Push to your branch - git push origin my_awesome_feature
  • Create a Pull Request from your branch
  • That's it!

We use RSpec for testing. Please include tests with your pull request. A simple bundle exec rake will run the suite. Also, please try to TomDoc your methods, it makes it easier to see what the code does and makes it easier for future contributors to get started.

(c) 2013 The Hybrid Group

FAQs

Package last updated on 01 Oct 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc