
Product
Introducing Socket Firewall Enterprise: Flexible, Configurable Protection for Modern Package Ecosystems
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.
An unofficial Microsoft Visual Studio Team Services (VSTS) API client in Ruby
This will be a Ruby gem to connect to the Microsoft Visual Studio online (VSTS) Rest API. It may also work with recent versions of TFS too. Work is heavily in progress!
gem install ruby_vsts
Add the public signing key to verify signature:
gem cert --add <(curl -Ls https://raw.github.com/prodexity/ruby_vsts/master/certs/ruby_vsts-gem-public_cert.pem)
Install with checking signatures:
gem install ruby_vsts -P HighSecurity
require 'ruby_vsts'
VSTS.configure do |config|
config.personal_access_token = "YOUR_PERSONAL_ACCESS_TOKEN"
config.base_url = "https://YOUR_INSTANCE.visualstudio.com/"
end
VSTS::Changeset.find(72300) # find changeset by id
VSTS::Changeset.find_all(author: "fabrikam13@hotmail.com") # find by author
VSTS::Changeset.find_all(fromId: 1000, toId: 1200) # find by id range
VSTS::Changeset.find_all(fromDate: "03-01-2017", toDate: "03-18-2017-2:00PM") # find by date range
VSTS::Changeset.find_all(itemPath: "$/Fabrikam-Fiber-TFVC/Program.cs") # find by item path
VSTS::Changeset.find_all(top: 20, skip: 100) # paging
# ...
changeset = VSTS::Changeset.find(72300)
changes = changeset.changes
item = changes[0]
file_contents = item.get # current version
Please see specs and the source code for further examples.
FAQs
Unknown package
We found that ruby_vsts 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.

Product
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.

Security News
Open source dashboard CNAPulse tracks CVE Numbering Authorities’ publishing activity, highlighting trends and transparency across the CVE ecosystem.

Product
Detect malware, unsafe data flows, and license issues in GitHub Actions with Socket’s new workflow scanning support.