Remove fluff

This commit is contained in:
Niten 2020-11-16 11:35:23 -08:00
parent f4082426b9
commit 832ad9270a
4 changed files with 25 additions and 14 deletions

View File

@ -1,5 +1,3 @@
source 'https://rubygems.org'
gem "rake"
gem "xmpp4r"
gem "rubocop"

13
Gemfile.lock Normal file
View File

@ -0,0 +1,13 @@
GEM
remote: https://rubygems.org/
specs:
xmpp4r (0.5.6)
PLATFORMS
ruby
DEPENDENCIES
xmpp4r
BUNDLED WITH
1.17.2

View File

@ -1,12 +0,0 @@
require "rubocop/rake_task"
task default: %w[lint]
task :run do
ruby "lib/dns-client.rb"
end
RuboCop::RakeTask.new(:lint) do |task|
task.patterns = ['lib/**/*.rb']
task.fail_on_error = false
end

12
gemset.nix Normal file
View File

@ -0,0 +1,12 @@
{
xmpp4r = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "15ls2yqjvflxrc8chv5pcdh2p1p9fjsky74yc8y7wvw90wz0izrb";
type = "gem";
};
version = "0.5.6";
};
}