Skip to content

Commit 94a068e

Browse files
committed
Renaming repo
1 parent bea8e24 commit 94a068e

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ Provides a library to parse [Systemd.Time calendar expressions](https://www.free
77
Add OnCalendar to your project:
88

99
```bash
10-
gem install oncalendar
10+
gem install on_calendar
1111
```
1212
```ruby
13-
require "oncalendar"
13+
require "on_calendar"
1414
```
1515
Or using bundler:
1616

1717
```bash
18-
bundle add oncalendar
18+
bundle add on_calendar
1919
```
2020

2121
Parse your expression, should your expression be invalid a `OnCalendar::Parser::Error` will be raised:

on_calendar.gemspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@
33
require_relative "lib/on_calendar/version"
44

55
Gem::Specification.new do |spec|
6-
spec.name = "OnCalendar"
6+
spec.name = "on_calendar"
77
spec.version = OnCalendar::VERSION
88
spec.authors = ["Ben Passmore"]
99
spec.email = ["contact@passbe.com"]
1010

1111
spec.summary = "Parser for OnCalendar expressions used by systemd time."
12-
spec.homepage = "https://github.com/passbe/oncalendar"
12+
spec.homepage = "https://github.com/passbe/on_calendar"
1313
spec.license = "MIT"
1414
spec.required_ruby_version = ">= 3.1"
1515

1616
spec.metadata = {
17-
"bug_tracker_uri" => "https://github.com/passbe/oncalendar/issues",
18-
"changelog_uri" => "https://github.com/passbe/oncalendar/releases",
19-
"source_code_uri" => "https://github.com/passbe/oncalendar",
17+
"bug_tracker_uri" => "https://github.com/passbe/on_calendar/issues",
18+
"changelog_uri" => "https://github.com/passbe/on_calendar/releases",
19+
"source_code_uri" => "https://github.com/passbe/on_calendar",
2020
"homepage_uri" => spec.homepage,
2121
"rubygems_mfa_required" => "true"
2222
}

0 commit comments

Comments
 (0)