
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Built with :yellow_heart: and :coffee: in San Francisco
Mingle is a software development team collaborative tool, developed by ThoughtWorks Studios. The Mingle API gem provides simple interface for you to build application talks to Mingle.
Add this line to your application's Gemfile:
gem 'mingle-api'
And then execute:
$ bundle
Or install it yourself as:
$ gem install mingle-api
require 'mingle-api'
mingle = MingleAPI.new('site-name', hmac: [username, secret_key])
mingle = MingleAPI.new('site-name', basic_auth: [username, password])
mingle = MingleAPI.new('https://your-mingle-site-url', hmac: [username, secret_key])
projects = mingle.projects
project = mingle.projects('your_first_project')
mingle.create_project("Project Name")
# => OpenStruct.new(identifier, url)
Create with project description and from template
mingle.create_project("Project Name", description: "description", template: 'kanban')
mingle.cards('project_identifier')
Let's say you have a project named Mingle and its identifier is mingle, and card number 123 has a text property named Status and user property named Owner
mingle.card('mingle', 123)
You will get an OpenStruct object with attributes: name, description, type, status, owner As Owner is a user property, the value of the owner will be the user login if it exists
mingle.create_card('project_identifier', name: 'card name', type: 'Story',
attachments: [['/path/to/file', "image/png"]],
properties: {status: 'New', priority: 'high'})
# => OpenStruct.new(number, url)
See .rbenv-vars file for environment variables need for test.
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that mingle-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.