-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
85 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
# frozen_string_literal: true | ||
|
||
source "https://rubygems.org" | ||
source 'https://rubygems.org' | ||
|
||
# Specify your gem's dependencies in linear-cli.gemspec | ||
gemspec | ||
|
||
group :development, :test do | ||
gem "aruba", "~> 2.2" | ||
gem "cucumber", "~> 9.1" | ||
gem "gem-release", "~> 2.2" | ||
gem "pry-byebug" | ||
gem "rake", "~> 13.0" | ||
gem "rspec", "~> 3.0" | ||
gem "rubocop", "~> 1.21" | ||
gem "rubocop-rake", require: false | ||
gem "rubocop-rspec", require: false | ||
gem 'aruba', '~> 2.2' | ||
gem 'cucumber', '~> 9.1' | ||
gem 'gem-release', '~> 2.2' | ||
gem 'pry-byebug' | ||
gem 'rake', '~> 13.0' | ||
gem 'rspec', '~> 3.0' | ||
gem 'rubocop', '~> 1.21' | ||
gem 'rubocop-rake', require: false | ||
gem 'rubocop-rspec', require: false | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/env ruby | ||
# frozen_string_literal: true | ||
|
||
require "linear" | ||
require 'linear' | ||
Rubyists::Linear::L :cli | ||
Dry::CLI.new(Rubyists::Linear::CLI).call |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# frozen_string_literal: true | ||
|
||
require "aruba/cucumber" | ||
require 'aruba/cucumber' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
|
||
module Rubyists | ||
module Linear | ||
VERSION = "0.1.7" | ||
VERSION = '0.1.7' | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
Pathname.new(__FILE__).dirname.join("issue").glob("*.rb").each do |file| | ||
Pathname.new(__FILE__).dirname.join('issue').glob('*.rb').each do |file| | ||
require file.expand_path | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
# frozen_string_literal: true | ||
|
||
require_relative "lib/linear" | ||
require_relative 'lib/linear' | ||
|
||
Gem::Specification.new do |spec| | ||
spec.name = "linear-cli" | ||
spec.name = 'linear-cli' | ||
spec.version = Rubyists::Linear::VERSION | ||
spec.authors = ["Tj (bougyman) Vanderpoel"] | ||
spec.email = ["[email protected]"] | ||
spec.authors = ['Tj (bougyman) Vanderpoel'] | ||
spec.email = ['[email protected]'] | ||
|
||
spec.summary = "CLI for interacting with Linear.app." | ||
spec.description = "A CLI for interacting with Linear.app. Loosely based on the GitHub CLI" | ||
spec.homepage = "https://github.com/rubyists/linear-cli" | ||
spec.required_ruby_version = ">= 3.3.0" | ||
spec.summary = 'CLI for interacting with Linear.app.' | ||
spec.description = 'A CLI for interacting with Linear.app. Loosely based on the GitHub CLI' | ||
spec.homepage = 'https://github.com/rubyists/linear-cli' | ||
spec.required_ruby_version = '>= 3.2.0' | ||
|
||
spec.license = "MIT" | ||
spec.metadata["allowed_push_host"] = "https://rubygems.org" | ||
spec.license = 'MIT' | ||
spec.metadata['allowed_push_host'] = 'https://rubygems.org' | ||
|
||
spec.metadata["homepage_uri"] = spec.homepage | ||
spec.metadata["source_code_uri"] = spec.homepage | ||
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/master/CHANGELOG.md" | ||
spec.metadata['homepage_uri'] = spec.homepage | ||
spec.metadata['source_code_uri'] = spec.homepage | ||
spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/master/CHANGELOG.md" | ||
|
||
# Specify which files should be added to the gem when it is released. | ||
# The `git ls-files -z` loads the files in the RubyGem that have been added into git. | ||
|
@@ -28,20 +28,20 @@ Gem::Specification.new do |spec| | |
f.start_with?(*%w[pkg/ bin/ test/ spec/ features/ .git .github appveyor .rspec .rubocop cucumber.yml Gemfile]) | ||
end | ||
end | ||
spec.bindir = "exe" | ||
spec.bindir = 'exe' | ||
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } | ||
spec.require_paths = ["lib"] | ||
spec.require_paths = ['lib'] | ||
|
||
# Uncomment to register a new dependency of your gem | ||
spec.add_dependency "base64" | ||
spec.add_dependency "dry-cli", "~> 1.0" | ||
spec.add_dependency "dry-cli-completion", "~> 1.0" | ||
spec.add_dependency "gqli", "~> 1.2" | ||
spec.add_dependency "httpx", "~> 1.2" | ||
spec.add_dependency "neatjson" | ||
spec.add_dependency "semantic_logger", "~> 4.0" | ||
spec.add_dependency 'base64' | ||
spec.add_dependency 'dry-cli', '~> 1.0' | ||
spec.add_dependency 'dry-cli-completion', '~> 1.0' | ||
spec.add_dependency 'gqli', '~> 1.2' | ||
spec.add_dependency 'httpx', '~> 1.2' | ||
spec.add_dependency 'neatjson' | ||
spec.add_dependency 'semantic_logger', '~> 4.0' | ||
|
||
# For more information and examples about making a new gem, check out our | ||
# guide at: https://bundler.io/guides/creating_gem.html | ||
spec.metadata["rubygems_mfa_required"] = "true" | ||
spec.metadata['rubygems_mfa_required'] = 'true' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# frozen_string_literal: true | ||
|
||
require_relative "../lib/linear" | ||
require_relative '../lib/linear' |
Oops, something went wrong.