firespring_dev_commands 1.4.0.pre.alpha.1 → 1.4.0.pre.alpha.3

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: cfbd9f0c516989ed9533d89c0ac479d8ba0721ee3be2c49e0804ca6fd0583a82
4
- data.tar.gz: 9ba36433baabd374d4d213005996e71ef68e553a7351c191d7712cf182bc923f
3
+ metadata.gz: e280348c70a1845a87763a66e1b6539e4af9c089a235a89730ac79da1fbca68c
4
+ data.tar.gz: dae6844c86651c9d8cdc05b181c5ec66d84e78dca6ee5fdd2e269c8425b6bf7b
5
5
  SHA512:
6
- metadata.gz: c86e589fd697eaea43352ab91fabea539d6c1d5bed10319ef827f48abd9df0cc895c47c04b8738bf5b45d640ce3ab274de812d98ab6b0a43d5167bc75e261edd
7
- data.tar.gz: 3de8999147a150a425588dacef3dd9947c7e60f45ca781858a707b9a87f152c92e1827bbde7237d5ec8c0157a1b875f448d79a93ed1e128fdbdf0188939d3601
6
+ metadata.gz: '009f92aaae078709972f06b50337cba2cfffb0edb4881bb5c519c05562d0c76ad4e5d4df43e43f09ca50aef6dcd37a3c57f6c10cd16739d782ec57e3d35bdcdb'
7
+ data.tar.gz: 63fa3bb1b402f3096be3dab8b9f1f53cc180f5a9c5edbbbb5e2c45b252757aed52b9cbd910a8ffad4fa3d83246d1bdfbf70e4dc0284a70209f53843d4e82e124
@@ -7,6 +7,8 @@ module Dev
7
7
  class BaseInterface
8
8
  include ::Rake::DSL
9
9
 
10
+ attr_reader :exclude
11
+
10
12
  def initialize(exclude: [])
11
13
  @exclude = Array(exclude).map(&:to_sym)
12
14
  create_tasks!
@@ -32,6 +34,8 @@ module Dev
32
34
  class ApplicationInterface < Dev::Template::BaseInterface
33
35
  include ::Rake::DSL
34
36
 
37
+ attr_reader :name
38
+
35
39
  def initialize(name, exclude: [])
36
40
  @name = name
37
41
  super(exclude: exclude)
@@ -5,6 +5,8 @@ module Dev
5
5
  class Aws
6
6
  # Class contains rake templates for managing your ci/cd resources
7
7
  class Ci < Dev::Template::BaseInterface
8
+ attr_reader :cloudformation
9
+
8
10
  # Base interface template customized for codepipelines which require a pipeline pattern which will match the pipeline name
9
11
  def initialize(cloudformation, exclude: [])
10
12
  @cloudformations = Array(cloudformation).sort_by(&:name)
@@ -7,6 +7,8 @@ module Dev
7
7
  module Node
8
8
  # Class for default rake tasks associated with a node project
9
9
  class Application < Dev::Template::ApplicationInterface
10
+ attr_reader :node
11
+
10
12
  # Allow for custom container path for the application
11
13
  def initialize(application, container_path: nil, local_path: nil, exclude: [])
12
14
  @node = Dev::Node.new(container_path: container_path, local_path: local_path)
@@ -7,6 +7,8 @@ module Dev
7
7
  module Php
8
8
  # Class for default rake tasks associated with a php project
9
9
  class Application < Dev::Template::ApplicationInterface
10
+ attr_reader :php
11
+
10
12
  # Allow for custom container path for the application
11
13
  def initialize(application, container_path: nil, local_path: nil, exclude: [])
12
14
  @php = Dev::Php.new(container_path: container_path, local_path: local_path)
@@ -7,6 +7,8 @@ module Dev
7
7
  module Ruby
8
8
  # Class for default rake tasks associated with a ruby project
9
9
  class Application < Dev::Template::ApplicationInterface
10
+ attr_reader :ruby
11
+
10
12
  # Allow for custom container path for the application
11
13
  def initialize(application, container_path: nil, local_path: nil, exclude: [])
12
14
  @ruby = Dev::Ruby.new(container_path: container_path, local_path: local_path)
@@ -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 = '1.4.0.pre.alpha.1'.freeze
9
+ VERSION = '1.4.0.pre.alpha.3'.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: 1.4.0.pre.alpha.1
4
+ version: 1.4.0.pre.alpha.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Firespring
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-27 00:00:00.000000000 Z
11
+ date: 2023-04-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -332,6 +332,20 @@ dependencies:
332
332
  - - "~>"
333
333
  - !ruby/object:Gem::Version
334
334
  version: 1.15.0
335
+ - !ruby/object:Gem::Dependency
336
+ name: rubocop-rake
337
+ requirement: !ruby/object:Gem::Requirement
338
+ requirements:
339
+ - - "~>"
340
+ - !ruby/object:Gem::Version
341
+ version: 0.6.0
342
+ type: :development
343
+ prerelease: false
344
+ version_requirements: !ruby/object:Gem::Requirement
345
+ requirements:
346
+ - - "~>"
347
+ - !ruby/object:Gem::Version
348
+ version: 0.6.0
335
349
  - !ruby/object:Gem::Dependency
336
350
  name: simplecov
337
351
  requirement: !ruby/object:Gem::Requirement