openai_pipe 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d5a1e3af569885b42701567148f7523aca1100d6c2b7751d4ef1be36bcd7359f
4
- data.tar.gz: ffcae722c0f98c523d8310a87173528fcf181f595853ba26821945aecab4ff0b
3
+ metadata.gz: 254f5fe85c535201e96f59ebe7d6028f03048b66535a706ae6aca52dff90dc88
4
+ data.tar.gz: f14cb260e61f8b5e4ca67fea042f68de52260e9039a569a48bb887c3aa8f1e77
5
5
  SHA512:
6
- metadata.gz: 7de10531584af5df82433dad9d53b230f2f4a84a4ed995854c0fb70148c87b12b92d9250b4ed954920c7060c2a11310684f52f6c08a8e4cc4efd784a27ecd249
7
- data.tar.gz: f5671103d5d75a4370c094696ce3dc534e5be1e003f0b3a5adbd9cc5c11110e33f70f3ac00283d325b4099fb10420d0d5b0326e97dcae00e44dcf4be86ccd80c
6
+ metadata.gz: e9c47e8b00343582648339501ddacc18f767456ba66e0f113779adba00b97e03333f40934b5488cd95a47d11d755b4ecb04abc4978db6440c4372fd666c31afc
7
+ data.tar.gz: 1dd6f48b130de7ce91af07133610270c159ead53ac74c7b436da713d76131068759c6453702cfe772e6554dac9393cb3c38a3e869af70d6578daf99e95d87002
data/Gemfile.lock CHANGED
@@ -2,7 +2,7 @@ PATH
2
2
  remote: .
3
3
  specs:
4
4
  openai_pipe (0.1.3)
5
- quick_openai (~> 0.1)
5
+ quick_openai (~> 0.1.3)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module OpenAIPipe
4
- VERSION = "0.1.3"
4
+ VERSION = "0.1.4"
5
5
  end
@@ -0,0 +1,37 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/openai_pipe/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "openai_pipe"
7
+ spec.version = OpenAIPipe::VERSION
8
+ spec.authors = ["John DeSilva"]
9
+ spec.email = ["desilvjo@umich.edu"]
10
+
11
+ spec.summary = "A UNIX-ey interface to OpenAI"
12
+ spec.description = "Provides pipe and redirect functionality to quick_openai"
13
+ spec.homepage = "https://www.github.com/Aesthetikx/openai_pipe"
14
+ spec.license = "MIT"
15
+ spec.required_ruby_version = ">= 2.6.0"
16
+
17
+ spec.metadata["homepage_uri"] = spec.homepage
18
+ spec.metadata["source_code_uri"] = "https://www.github.com/Aesthetikx/openai_pipe"
19
+ spec.metadata["changelog_uri"] = "https://www.github.com/Aesthetikx/openai_pipe/blob/master/CHANGELOG.md"
20
+ spec.metadata["rubygems_mfa_required"] = "true"
21
+
22
+ # Specify which files should be added to the gem when it is released.
23
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
24
+ spec.files = Dir.chdir(__dir__) do
25
+ `git ls-files -z`.split("\x0").reject do |f|
26
+ (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
27
+ end
28
+ end
29
+ spec.bindir = "exe"
30
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
31
+ spec.require_paths = ["lib"]
32
+
33
+ spec.add_dependency "quick_openai", "~> 0.1.3"
34
+
35
+ # For more information and examples about making a new gem, check out our
36
+ # guide at: https://bundler.io/guides/creating_gem.html
37
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openai_pipe
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - John DeSilva
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-01-13 00:00:00.000000000 Z
11
+ date: 2024-06-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: quick_openai
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0.1'
19
+ version: 0.1.3
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '0.1'
26
+ version: 0.1.3
27
27
  description: Provides pipe and redirect functionality to quick_openai
28
28
  email:
29
29
  - desilvjo@umich.edu
@@ -43,6 +43,7 @@ files:
43
43
  - exe/openai_pipe
44
44
  - lib/openai_pipe.rb
45
45
  - lib/openai_pipe/version.rb
46
+ - openai_pipe.gemspec
46
47
  - sig/openai_pipe.rbs
47
48
  homepage: https://www.github.com/Aesthetikx/openai_pipe
48
49
  licenses:
@@ -51,6 +52,7 @@ metadata:
51
52
  homepage_uri: https://www.github.com/Aesthetikx/openai_pipe
52
53
  source_code_uri: https://www.github.com/Aesthetikx/openai_pipe
53
54
  changelog_uri: https://www.github.com/Aesthetikx/openai_pipe/blob/master/CHANGELOG.md
55
+ rubygems_mfa_required: 'true'
54
56
  post_install_message:
55
57
  rdoc_options: []
56
58
  require_paths:
@@ -66,7 +68,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
66
68
  - !ruby/object:Gem::Version
67
69
  version: '0'
68
70
  requirements: []
69
- rubygems_version: 3.4.10
71
+ rubygems_version: 3.3.7
70
72
  signing_key:
71
73
  specification_version: 4
72
74
  summary: A UNIX-ey interface to OpenAI