Skip to content

Commit

Permalink
Merge pull request #191 from halorrr/update-gem-name
Browse files Browse the repository at this point in the history
update gem name to lunchmoney
  • Loading branch information
mmenanno committed Feb 1, 2024
2 parents fee173b + ae9efa0 commit dc43474
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 17 deletions.
4 changes: 0 additions & 4 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ AllCops:
Exclude:
- "sorbet/**/*"

Naming/FileName:
Exclude:
- "lib/lunchmoney-ruby.rb" # Due to the gem name this file needs to be kabob case instead of snake case

Sorbet:
Enabled: true

Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
lunchmoney-ruby (0.9.1)
lunchmoney (0.9.1)
activesupport (>= 6.1)
faraday (>= 1.0.0)
sorbet-runtime (>= 0.5)
Expand Down Expand Up @@ -153,7 +153,7 @@ PLATFORMS
DEPENDENCIES
appraisal
dotenv
lunchmoney-ruby!
lunchmoney!
minitest (~> 5.21)
mocha (~> 2.1.0)
pry-sorbet (~> 0.2)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# lunchmoney-ruby
# lunchmoney

This gem and readme are very much a work in progress. More to come!

This gem is a library of the [LunchMoney API](https://lunchmoney.dev/) for the wonderful [LunchMoney](http://lunchmoney.app/) web app for personal finance & budgeting.

You can find the yard docs for this gem [here](https://halorrr.github.io/lunchmoney-ruby/)
You can find the yard docs for this gem [here](https://halorrr.github.io/lunchmoney/)

## Usage

Expand All @@ -13,7 +13,7 @@ You can find the yard docs for this gem [here](https://halorrr.github.io/lunchmo
Add this line to your application's `Gemfile`:

```Ruby
gem "lunchmoney-ruby"
gem "lunchmoney"
```

### Set your lunchmoney token
Expand Down
2 changes: 1 addition & 1 deletion bin/console
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

require "bundler/setup"
require "dotenv/load"
require "lunchmoney-ruby"
require "lunchmoney"

# You can add fixtures and/or initialization code here to make experimenting
# with your gem easier. You can also use a different console, if you like.
Expand Down
4 changes: 0 additions & 4 deletions lib/lunchmoney-ruby.rb

This file was deleted.

4 changes: 2 additions & 2 deletions lunchmoney-ruby.gemspec → lunchmoney.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
require_relative "lib/lunchmoney/version"

Gem::Specification.new do |spec|
spec.name = "lunchmoney-ruby"
spec.name = "lunchmoney"
spec.version = LunchMoney::VERSION
spec.author = "@halorrr"
spec.email = "halorrr@gmail.com"

spec.summary = "LunchMoney API client library."
spec.homepage = "https://github.com/halorrr/lunchmoney-ruby"
spec.homepage = "https://github.com/halorrr/lunchmoney"
spec.required_ruby_version = ">= 3.1"
spec.license = "MIT"

Expand Down
2 changes: 1 addition & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

require "sorbet-runtime"
require "dotenv/load"
require "lunchmoney-ruby"
require "lunchmoney"
require "minitest/autorun"
require "minitest/pride"
require "active_support"
Expand Down

0 comments on commit dc43474

Please sign in to comment.