redbreast 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/redbreast/commands/setup.rb +1 -1
- data/lib/redbreast/template_generators/colors/swift_colors_template_generator.rb +1 -0
- data/lib/redbreast/template_generators/colors/swiftui_colors_template_generator.rb +1 -0
- data/lib/redbreast/template_generators/images/swift_images_template_generator.rb +1 -0
- data/lib/redbreast/template_generators/images/swiftui_images_template_generator.rb +1 -0
- data/lib/redbreast/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 55140102c283d2812b099b0ec63dc475d12faef4beac0cc12d39cca5b87c2f61
|
4
|
+
data.tar.gz: 70704e2afa3b62adc8693d87cdf47891e255abdaf0b416cc11ae4190acd9d634
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7945675763fad73af01dcdd6018dbd032d782449f028f0e0d7d289cf028c4b7ce6d4ae5f129a2b47755e14a31b93cbc9bf1f6b6fe33e544558145635d5c6a78
|
7
|
+
data.tar.gz: 51d20e13ab388b0e2bd71a696bda633eed452f4d2be7b6e0179ffd0d6b7f2dffe056e7f0f144c6fdf47272c0168e0b7e95afb369f269c493c8c52531b74546eb
|
@@ -116,7 +116,7 @@ module Redbreast
|
|
116
116
|
when 'swift'
|
117
117
|
prompt.ask(prompt_text, default: './Common/Extensions/UIColorExtension.swift')
|
118
118
|
when 'swiftui'
|
119
|
-
prompt.ask(prompt_text, default: './Common/Extensions/
|
119
|
+
prompt.ask(prompt_text, default: './Common/Extensions/ColorExtension.swift')
|
120
120
|
end
|
121
121
|
end
|
122
122
|
|
@@ -11,6 +11,7 @@ module Redbreast
|
|
11
11
|
import UIKit
|
12
12
|
|
13
13
|
// THIS FILE IS AUTOGENERATED, DO NOT EDIT BY HAND
|
14
|
+
// swiftlint:disable file_length type_body_length line_length superfluous_disable_command
|
14
15
|
<%= generate_extension('UIColor', app_name) %>
|
15
16
|
<%= generate_file_swift(names: asset_names, variable: 'static var %s: UIColor { return UIColor(named: "%s", in: %s, compatibleWith: nil)! }', bundle: bundle) %>
|
16
17
|
}
|
@@ -11,6 +11,7 @@ module Redbreast
|
|
11
11
|
import SwiftUI
|
12
12
|
|
13
13
|
// THIS FILE IS AUTOGENERATED, DO NOT EDIT BY HAND
|
14
|
+
// swiftlint:disable file_length type_body_length line_length superfluous_disable_command
|
14
15
|
<%= generate_extension('Color', app_name) %>
|
15
16
|
<%= generate_file_swift(names: asset_names, variable: 'static var %s: Color { Color("%s", bundle: %s) }', bundle: bundle) %>
|
16
17
|
}
|
@@ -12,6 +12,7 @@ module Redbreast
|
|
12
12
|
import UIKit
|
13
13
|
|
14
14
|
// THIS FILE IS AUTOGENERATED, DO NOT EDIT BY HAND
|
15
|
+
// swiftlint:disable file_length type_body_length line_length superfluous_disable_command
|
15
16
|
<%= generate_extension('UIImage', app_name) %>
|
16
17
|
<%= generate_file_swift(names: asset_names, variable: 'static var %s: UIImage { return UIImage(named: "%s", in: %s, compatibleWith: nil)! }', bundle: bundle) %>
|
17
18
|
}
|
@@ -12,6 +12,7 @@ module Redbreast
|
|
12
12
|
import SwiftUI
|
13
13
|
|
14
14
|
// THIS FILE IS AUTOGENERATED, DO NOT EDIT BY HAND
|
15
|
+
// swiftlint:disable file_length type_body_length line_length superfluous_disable_command
|
15
16
|
<%= generate_extension('Image', app_name) %>
|
16
17
|
<%= generate_file_swift(names: asset_names, variable: 'static var %s: Image { Image("%s", bundle: %s) }', bundle: bundle) %>
|
17
18
|
}
|
data/lib/redbreast/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: redbreast
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Maroje
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-07-
|
11
|
+
date: 2021-07-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -201,7 +201,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
201
201
|
- !ruby/object:Gem::Version
|
202
202
|
version: '0'
|
203
203
|
requirements: []
|
204
|
-
rubygems_version: 3.
|
204
|
+
rubygems_version: 3.0.6
|
205
205
|
signing_key:
|
206
206
|
specification_version: 4
|
207
207
|
summary: A CLI for safe and strongly typed resources
|