Initial commit

This commit is contained in:
Trevor Vallender 2024-03-02 14:50:16 +00:00
commit 4ce85e913f
8 changed files with 73 additions and 0 deletions

1
.ruby-version Normal file
View File

@ -0,0 +1 @@
3.2.2

3
Gemfile Normal file
View File

@ -0,0 +1,3 @@
source "https://rubygems.org"
gemspec

19
Gemfile.lock Normal file
View File

@ -0,0 +1,19 @@
PATH
remote: .
specs:
birthdaze (0.0.1)
thor
GEM
remote: https://rubygems.org/
specs:
thor (1.3.1)
PLATFORMS
x86_64-linux
DEPENDENCIES
birthdaze!
BUNDLED WITH
2.4.10

20
MIT-LICENSE Normal file
View File

@ -0,0 +1,20 @@
Copyright (c) 2023 David Heinemeier Hansson
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

4
README.md Normal file
View File

@ -0,0 +1,4 @@
# Birthdaze
Birthdaze is a tool to generate a calendar of your contacts birthdays
from a CardDAV server account.

5
bin/birthdaze Executable file
View File

@ -0,0 +1,5 @@
#!/usr/bin/env ruby
require 'birthdaze'
Birthdaze.start(ARGV)

13
birthdaze.gemspec Normal file
View File

@ -0,0 +1,13 @@
Gem::Specification.new do |s|
s.name = "birthdaze"
s.version = "0.0.1"
s.summary = "Generate a birthday calendar from CardDAV"
s.authors = ["T S Vallender"]
s.email = "t@tsvallender.co.uk"
s.homepage = "https://git.tsvallender.co.uk/tsv/birthdaze"
s.files = Dir["lib/**/*", "MIT-LICENSE", "README.md"]
s.license = "MIT"
s.executables << "birthdaze"
s.add_dependency "thor"
end

8
lib/birthdaze.rb Normal file
View File

@ -0,0 +1,8 @@
require "thor"
class Birthdaze < Thor
desc "generate", "Generate calendars"
def generate
puts "Generate calendars"
end
end