firespring_dev_commands 2.0.4 → 2.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 52ed2588ac1fed7d8a67fc393898e229b1fda66a8ef19329d73dc8b05165ed73
4
- data.tar.gz: 4d1a4b077a6e77ab7d00e4892f1fc65d8e2786ed8ce560de6255d54985ee5d2f
3
+ metadata.gz: 3f226b6a68359f106c098bb36e5904e0cd0000452efe9f865c8db1cb272c44f3
4
+ data.tar.gz: 4f2e2cfe51f2da74ad2d2d3af0cf1ae7cb293878081ea918098508bba6bcbb61
5
5
  SHA512:
6
- metadata.gz: 18a474f8ed88d796faa8530038f8c69fa637b139f00f4aa3db7bf311c28f546ee48ac7bbd3fd5155752f0cbc985f493e9ec550b8fb24bc2b8392022a96d6d11e
7
- data.tar.gz: d1f9e68e449ee89938d85c0332d14bc518df801be91148a8f7dd3879a7d622e5d21f2fb37aa6fbd4c8b1e20a2ae8a765a3e9128c1685c0bf2940030581b09124
6
+ metadata.gz: 8b0bf1baed137fa76c7c2970a4c4f5133c334b5f56dea14b6ef886664a77200232980d6461a56750e716c40198fb0517914c1e9e84664523598de1354d59730e
7
+ data.tar.gz: 2feb5e0133dcdc77eec4031d724f4c07a0d30e51f05e91aa62200b3a0e386efe41b84b1ccafe472648f77fbf9889b4c185fb65884345c5cff81a01b1c1163b23
@@ -0,0 +1,32 @@
1
+ # Load any existing slack auth if we haven't set one in the environment
2
+ require 'dotenv'
3
+
4
+ module Dev
5
+ class Slack
6
+ class Global
7
+ # The filename where we store the local auth information
8
+ CONFIG_FILE = "#{Dir.home}/.env.slack".freeze
9
+
10
+ SLACK_API_TOKEN = 'SLACK_API_TOKEN'.freeze
11
+
12
+ def configure
13
+ # Always load the env slack auth
14
+ Dotenv.load(CONFIG_FILE) if File.exist?(CONFIG_FILE)
15
+
16
+ ::Slack.configure do |c|
17
+ c.token = ENV.fetch('SLACK_API_TOKEN', nil)
18
+ c.logger = LOG if ENV['ENABLE_SLACK_DEBUG'].to_s.strip == 'true'
19
+ end
20
+ end
21
+ new.configure
22
+
23
+ # Write the new slack auth value to the env file
24
+ def write!(api_token)
25
+ override = Dev::Env.new(CONFIG_FILE)
26
+ override.set(SLACK_API_TOKEN, api_token)
27
+ override.write
28
+ configure
29
+ end
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,23 @@
1
+ require 'slack'
2
+
3
+ module Dev
4
+ class Slack
5
+ attr_accessor :client
6
+
7
+ def initialize
8
+ @client = ::Slack::Web::Client.new
9
+ @client.auth_test
10
+ end
11
+
12
+ def post(channel:, text:)
13
+ client.chat_postMessage(channel:, text:)
14
+ end
15
+
16
+ def upload_text(channel:, text:, title: 'Text File', filename: 'file.txt')
17
+ raise 'text should be a string' unless text.is_a?(String)
18
+
19
+ file = Faraday::UploadIO.new(StringIO.new(text), 'text/plain')
20
+ client.files_upload(channels: channel, title:, file:, filename:, filetype: 'text')
21
+ end
22
+ end
23
+ end
@@ -6,6 +6,6 @@ module Dev
6
6
  # Use 'v.v.v.pre.alpha.v' for pre-release vesions
7
7
  # Use 'v.v.v.beta.v for beta versions
8
8
  # Use semantic versioning for any releases (https://semver.org/)
9
- VERSION = '2.0.4'.freeze
9
+ VERSION = '2.0.5'.freeze
10
10
  end
11
11
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: firespring_dev_commands
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.4
4
+ version: 2.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Firespring
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-14 00:00:00.000000000 Z
11
+ date: 2023-07-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -234,6 +234,20 @@ dependencies:
234
234
  - - "~>"
235
235
  - !ruby/object:Gem::Version
236
236
  version: 13.0.6
237
+ - !ruby/object:Gem::Dependency
238
+ name: slack-ruby-client
239
+ requirement: !ruby/object:Gem::Requirement
240
+ requirements:
241
+ - - "~>"
242
+ - !ruby/object:Gem::Version
243
+ version: 2.1.0
244
+ type: :runtime
245
+ prerelease: false
246
+ version_requirements: !ruby/object:Gem::Requirement
247
+ requirements:
248
+ - - "~>"
249
+ - !ruby/object:Gem::Version
250
+ version: 2.1.0
237
251
  description: Ruby library for creating/maintaining your development environment
238
252
  email: opensource@firespring.com
239
253
  executables: []
@@ -283,6 +297,8 @@ files:
283
297
  - lib/firespring_dev_commands/ruby.rb
284
298
  - lib/firespring_dev_commands/ruby/audit.rb
285
299
  - lib/firespring_dev_commands/second.rb
300
+ - lib/firespring_dev_commands/slack.rb
301
+ - lib/firespring_dev_commands/slack/global.rb
286
302
  - lib/firespring_dev_commands/tar.rb
287
303
  - lib/firespring_dev_commands/tar/pax_header.rb
288
304
  - lib/firespring_dev_commands/tar/type_flag.rb