Skip to content

Commit

Permalink
setting up
Browse files Browse the repository at this point in the history
  • Loading branch information
igneus committed Oct 4, 2019
1 parent 4fa4fec commit 119cf46
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 24 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
/pkg/
/spec/reports/
/tmp/
*~
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@
Command line utility providing access to the Roman Catholic
liturgical calendar (post-Vatican II).

Built on top of the [calendarium-romanum][caro] Ruby gem.

## Installation

Coming soon.

## Project roadmap

`calrom` is in an early stage of development.
Goal is to provide a handy utility

* [ ] month/year overview - options and output mostly mimicking the
the BSD Unix [`cal`](https://www.freebsd.org/cgi/man.cgi?query=cal) utility,
but with liturgical colours and celebration ranks
Expand All @@ -28,3 +27,5 @@ Goal is to provide a handy utility
## License

GNU/GPL 3.0 or later

[caro]: https://github.com/igneus/calendarium-romanum
32 changes: 11 additions & 21 deletions calrom.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,22 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'calrom/version'

Gem::Specification.new do |spec|
spec.name = "calrom"
spec.name = 'calrom'
spec.version = Calrom::VERSION
spec.authors = ["TODO: Write your name"]
spec.email = ["[email protected]"]
spec.authors = ['Jakub Pavlík']
spec.email = ['[email protected]']

spec.summary = %q{TODO: Write a short summary, because Rubygems requires one.}
spec.description = %q{TODO: Write a longer description or delete this line.}
spec.homepage = "TODO: Put your gem's website or public repo URL here."
spec.summary = 'Command line utility providing access to the Roman Catholic liturgical calendar (post-Vatican II)'
spec.homepage = 'https://github.com/calendarium-romanum/calrom'

# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
if spec.respond_to?(:metadata)
spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
else
raise "RubyGems 2.0 or newer is required to protect against " \
"public gem pushes."
end

spec.files = `git ls-files -z`.split("\x0").reject do |f|
spec.files = `git ls-files -z`.split('\x0').reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = "exe"
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.require_paths = ['lib']

spec.add_development_dependency "bundler", "~> 1.13"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency 'bundler', '~> 1.13'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.0'
end

0 comments on commit 119cf46

Please sign in to comment.