firespring_dev_commands 2.0.2.pre.alpha.1 → 2.0.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: 6224c1ab85f20e8d68a1404044e94ee2496107b475d10bd12352ea633bc790f6
4
- data.tar.gz: 39e4b7bfe83bf377b98c24dd62e19e2e636917a9486548b57c8983c33956e3d2
3
+ metadata.gz: 52ed2588ac1fed7d8a67fc393898e229b1fda66a8ef19329d73dc8b05165ed73
4
+ data.tar.gz: 4d1a4b077a6e77ab7d00e4892f1fc65d8e2786ed8ce560de6255d54985ee5d2f
5
5
  SHA512:
6
- metadata.gz: 5a29005dddecf7f55eb5b7fb44cbee47c605260893212c00498e121a156d3d9e8de2eafa74f0f9b1c551422838467da4a75b36bda043278dd0b255507d66da1f
7
- data.tar.gz: 14ffd29f8ffdb83e6a5f221e0f3ba979e48dfb841413c5c10019e97cf7e9c97b039bb7d120f0ccc020f69e679ed29be6eaf27ca10daa51cbc27caaecf3748138
6
+ metadata.gz: 18a474f8ed88d796faa8530038f8c69fa637b139f00f4aa3db7bf311c28f546ee48ac7bbd3fd5155752f0cbc985f493e9ec550b8fb24bc2b8392022a96d6d11e
7
+ data.tar.gz: d1f9e68e449ee89938d85c0332d14bc518df801be91148a8f7dd3879a7d622e5d21f2fb37aa6fbd4c8b1e20a2ae8a765a3e9128c1685c0bf2940030581b09124
@@ -10,7 +10,7 @@ module Dev
10
10
  # Yields that config object to any given block
11
11
  # Returns the resulting config object
12
12
  def self.config
13
- @config ||= Config.new(default_login_role_name: Dev::Aws::DEFAULT_LOGIN_ROLE_NAME)
13
+ @config ||= Config.new({default_login_role_name: Dev::Aws::DEFAULT_LOGIN_ROLE_NAME})
14
14
  yield(@config) if block_given?
15
15
  @config
16
16
  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.2.pre.alpha.1'.freeze
9
+ VERSION = '2.0.4'.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.2.pre.alpha.1
4
+ version: 2.0.4
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-12 00:00:00.000000000 Z
11
+ date: 2023-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -234,20 +234,6 @@ 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
251
237
  description: Ruby library for creating/maintaining your development environment
252
238
  email: opensource@firespring.com
253
239
  executables: []
@@ -297,8 +283,6 @@ files:
297
283
  - lib/firespring_dev_commands/ruby.rb
298
284
  - lib/firespring_dev_commands/ruby/audit.rb
299
285
  - lib/firespring_dev_commands/second.rb
300
- - lib/firespring_dev_commands/slack.rb
301
- - lib/firespring_dev_commands/slack/global.rb
302
286
  - lib/firespring_dev_commands/tar.rb
303
287
  - lib/firespring_dev_commands/tar/pax_header.rb
304
288
  - lib/firespring_dev_commands/tar/type_flag.rb
@@ -326,12 +310,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
326
310
  requirements:
327
311
  - - ">="
328
312
  - !ruby/object:Gem::Version
329
- version: '3.2'
313
+ version: '3.1'
330
314
  required_rubygems_version: !ruby/object:Gem::Requirement
331
315
  requirements:
332
- - - ">"
316
+ - - ">="
333
317
  - !ruby/object:Gem::Version
334
- version: 1.3.1
318
+ version: '0'
335
319
  requirements: []
336
320
  rubygems_version: 3.4.10
337
321
  signing_key:
@@ -1,32 +0,0 @@
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
@@ -1,23 +0,0 @@
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