Skip to content

Commit

Permalink
Fix config and update gemspec (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewdally authored May 28, 2024
1 parent 2a91764 commit 7f6b0a7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gem_config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
module GemConfig
def self.apply(gem, name)
gem.name = name
gem.files = Dir.glob("lib/nylas_v2.rb,nylas_v2/**/*.rb}")
gem.files = Dir.glob("lib/{nylas_v2.rb,nylas_v2/**/*.rb}")
gem.license = "MIT"
gem.version = NylasV2::VERSION
gem.platform = "ruby"
Expand Down
2 changes: 1 addition & 1 deletion lib/nylas_v2/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module NylasV2
VERSION = "5.14.0"
VERSION = "5.14.2"
end
4 changes: 2 additions & 2 deletions nylas_v2.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ require "./gem_config"

Gem::Specification.new do |gem|
GemConfig.apply(gem, "nylas_v2")
gem.summary = %(Gem for interacting with the Nylas API)
gem.description = %(Gem for interacting with the Nylas API.)
gem.summary = %(A fork of the nylas gem for interacting with the Nylas V2 API)
gem.description = %(A fork of the nylas gem for interacting with the Nylas V2 API.)
gem.add_runtime_dependency "rest-client", ">= 2.0", "< 3.0"
gem.add_runtime_dependency "yajl-ruby", "~> 1.2", ">= 1.2.1"
end

0 comments on commit 7f6b0a7

Please sign in to comment.