Skip to content

Commit 8bd441e

Browse files
Fixing the gem requires
1 parent e7ae765 commit 8bd441e

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

f2ynab.gemspec

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,15 @@ Gem::Specification.new do |spec|
1010

1111
spec.summary = 'Fintech to YNAB Library'
1212
spec.description = 'Fintech to YNAB Library'
13-
spec.homepage = "https://github.com/fintech-to-ynab"
13+
spec.homepage = "https://github.com/syncforynab/f2ynab"
1414
spec.license = "MIT"
1515

16-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
17-
spec.require_paths = ["lib"]
16+
spec.files = `git ls-files -z`.split("\x0").select do |f|
17+
%r{^(?:lib)/} =~ f
18+
end + %w[LICENSE.txt README.md]
19+
20+
spec.test_files = []
21+
spec.require_path = 'lib'
1822

1923
spec.add_runtime_dependency "money", "~> 6.13"
2024
spec.add_runtime_dependency "ynab", "~> 1.5"

lib/f2ynab/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module F2ynab
2-
VERSION = "0.1.2"
2+
VERSION = "0.1.3"
33
end

0 commit comments

Comments
 (0)