
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.
Access the Nuntium API in Ruby.
gem install nuntium_api
gem 'nuntium_api'
require 'rubygems'
require 'nuntium'
api = Nuntium.new "service_url", "account_name", "application_name", "application_password"
message = {
:from => "sms://1234",
:to => "sms://5678",
:body => "Hello Nuntium!",
}
# Send an Application Originated message.
response = api.send_ao message
# Can also send many messages at once
messages = [{:to => "sms://1", :body => 'One'}, {:to => "sms://2", :body => 'Two'}]
response = api.send_ao messages
# Simulate sending and get a list of candidate channels
api.get_candidate_channels_for_ao message
# Get all countries
countries = api.countries
# Get all carriers that belong to a specific country
carriers = api.carriers countries[0].iso2
# Get all channels
channels = api.channels
# Create a channel
api.create_channel {
:name => "my_channel",
:kind => "clickatell",
:protocol => "sms",
:direction =>"bidirectional",
:enabled => true,
:priority => 10,
:configuration => {:password => "secret"}
}
FAQs
Unknown package
We found that nuntium_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.