Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
discorb is a Discord API wrapper for Ruby, Using socketry/async.
Add this line to your application's Gemfile:
gem 'discorb'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install discorb
require "discorb"
client = Discorb::Client.new
client.once :standby do
puts "Logged in as #{client.user}"
end
client.on :message do |message|
next if message.author.bot?
next unless message.content == "ping"
message.channel.post("Pong!")
end
client.run(ENV["DISCORD_BOT_TOKEN"])
require "discorb"
client = Discorb::Client.new
client.once :standby do
puts "Logged in as #{client.user}"
end
client.on :message do |message|
next if message.author.bot?
next unless message.content == "!quiz"
operator = [:+, :-, :*].sample
num1 = rand(1..10)
num2 = rand(1..10)
val = num1.send(operator, num2)
message.channel.post("Quiz: `#{num1} #{operator} #{num2}`")
begin
msg = client.event_lock(:message, 30) { |m|
m.content == val.to_s && m.channel == message.channel
}.wait
rescue Discorb::TimeoutError
message.channel.post("No one answered...")
else
msg.reply("Correct!")
end
end
client.run(ENV["DISCORD_BOT_TOKEN"])
require "discorb"
client = Discorb::Client.new
client.slash("hello", "Greet for you") do |interaction|
interaction.post("Hello!", ephemeral: true)
end
client.run(ENV["DISCORD_BOT_TOKEN"])
Note You must run
discorb setup
before using slash commands.
Bug reports and pull requests are welcome on GitHub at https://github.com/discorb-lib/discorb.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that discorb 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.