Skip to content

Commit

Permalink
Create onesignal-cli.gemspec
Browse files Browse the repository at this point in the history
This gemspec will be built and used in our homebrew formula instead of bundler. We no longer need bundler for homebrew installs since we can run gem install onesignal-cli-x.x.x.gem which installs dependencies.

We will keep bundler for running locally since we want to keep the rspec dependency local only.
  • Loading branch information
emawby committed May 23, 2022
1 parent 3c04c50 commit bfccf64
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions onesignal-cli.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# encoding: UTF-8
require 'date'

Gem::Specification.new do |s|
s.name = "onesignal-cli"
s.version = '1.0.0'
s.date = Date.today
s.license = "MIT"
s.email = ["[email protected]", "[email protected]"]
s.homepage = "https://onesignal.com"
s.authors = ["Josh Kasten", "Elliot Mawby"]

s.summary = "OneSignal's Ruby CLI"
s.description = "Ruby Gem for OneSignal's Ruby Command Line Interface."

s.files = Dir["lib/**/*.rb"] + %w{ bin/onesignal }

s.executables = %w{ onesignal }
s.require_paths = %w{ lib }

s.add_runtime_dependency 'clamp'
s.add_runtime_dependency 'xcodeproj'

s.required_ruby_version = '>= 2.4'
end

0 comments on commit bfccf64

Please sign in to comment.