fwtoolkit 2.2.4 → 2.3.0
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 +4 -4
- data/lib/fwtoolkit/cli/bitrise.rb +5 -5
- data/lib/fwtoolkit/cli/cocoapods.rb +3 -1
- data/lib/fwtoolkit/cli/project.rb +16 -15
- data/lib/fwtoolkit/config.rb +21 -4
- data/lib/fwtoolkit/config/{config.sample → .fwtoolkitconfig.sample} +0 -1
- data/lib/fwtoolkit/projectfile.rb +1 -1
- data/lib/fwtoolkit/version.rb +1 -1
- data/templates/bitrise/bitrise.yml.tt +1 -4
- data/templates/default_project/bitrise/bitrise.yml.tt +1 -4
- data/templates/default_project/{rvm → gemset}/Gemfile +1 -0
- data/templates/objc_project/xcode/%project_name%/%project_name%.xcodeproj/project.pbxproj.tt +4 -4
- data/templates/objc_project/xcode/%project_name%/%target_name%/Supporting Files/%project_name%.entitlements +8 -0
- data/templates/swift_project/xcode/%project_name%/%project_name%.xcodeproj/project.pbxproj.tt +4 -4
- data/templates/swift_project/xcode/%project_name%/%target_name%/Supporting Files/%project_name%.entitlements +8 -0
- metadata +55 -53
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 836f710bb89cbe4595147bb5a0b0c1b06afd7d5ffc6ac4dc3fb026d8a0dd53f5
|
4
|
+
data.tar.gz: fb0b8b0ddaac9ecc65bdbf1574e3b55b20452d12c292a8349f2efaeb675f3bed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df3ce9c26f14d5d979438cde6d4327e24b1ca572ae408c85858314a1f8eb4f4aa0becbdaad13b075487551e5483aa35fb31533ffe11e8a49bae2b2b90f0e3fee
|
7
|
+
data.tar.gz: f005d45ea75c8678882dddc3707c1fb669739f4c6efc0bb66d716e8b58c531762a7c0e8c7a381281990095e10e7f83a020f8de2823517997afa844db6d1d65b2
|
@@ -12,21 +12,21 @@ module FWToolkit
|
|
12
12
|
|
13
13
|
source_root_templates!
|
14
14
|
|
15
|
-
desc 'genereate [PROJECT NAME]
|
16
|
-
def generate(project_name
|
15
|
+
desc 'genereate [PROJECT NAME]', "Create a new bitrise.yml file for the project, based on a blank file"
|
16
|
+
def generate(project_name)
|
17
17
|
destination_root = Dir.pwd
|
18
18
|
|
19
19
|
say "Creating bitrise.yml file in: #{File.expand_path destination_root}/bitrise.yml"
|
20
20
|
|
21
|
-
invoke FWToolkit::Bitrise, 'new', [destination_root, project_name
|
21
|
+
invoke FWToolkit::Bitrise, 'new', [destination_root, project_name]
|
22
22
|
end
|
23
23
|
|
24
24
|
desc 'new', 'Creates a new bitrise YML configuration file'
|
25
|
-
def new(project_root, project_name
|
25
|
+
def new(project_root, project_name)
|
26
26
|
destination_root = project_root
|
27
27
|
bitrise_file = File.join(project_root, 'bitrise.yml')
|
28
28
|
|
29
|
-
Projectfile.load_with_config! :project_name => project_name
|
29
|
+
Projectfile.load_with_config! :project_name => project_name
|
30
30
|
|
31
31
|
template_config = { :target_platform => Config.target_platform,
|
32
32
|
:organization_name => Config.organization_name,
|
@@ -17,7 +17,9 @@ module FWToolkit
|
|
17
17
|
def install(project_root)
|
18
18
|
add_cocoapods_to_project project_root
|
19
19
|
if File.exists? File.join(project_root, 'Podfile')
|
20
|
-
inside(project_root) {
|
20
|
+
inside(project_root) {
|
21
|
+
run! "bundle exec pod install", :capture => true
|
22
|
+
}
|
21
23
|
else
|
22
24
|
say_status :skip, "Unable to locate the Podfile. Skipping pod install", :blue
|
23
25
|
end
|
@@ -14,6 +14,11 @@ module FWToolkit
|
|
14
14
|
include FWToolkit::ThorUtils
|
15
15
|
source_root_templates!
|
16
16
|
|
17
|
+
desc "proj new [PROJECT NAME]", "Create a new Xcode project with FW's settings. Language is either objc or swift"
|
18
|
+
def create(project_name)
|
19
|
+
invoke :new, ["swift", project_name, ""]
|
20
|
+
end
|
21
|
+
|
17
22
|
desc "proj new [swift|objc] [PROJECT NAME] [CLASS PREFIX]", "Create a new Xcode project with FW's settings. Language is either objc or swift"
|
18
23
|
def new(project_language, project_name, class_prefix)
|
19
24
|
unless project_language == "swift" or project_language == "objc"
|
@@ -24,15 +29,14 @@ module FWToolkit
|
|
24
29
|
|
25
30
|
say "Creating new project in: #{File.expand_path destination_root}"
|
26
31
|
|
27
|
-
invoke :
|
32
|
+
invoke :conf_gemset, [destination_root]
|
28
33
|
|
29
|
-
invoke FWToolkit::Bitrise, 'new', [destination_root, project_name
|
34
|
+
invoke FWToolkit::Bitrise, 'new', [destination_root, project_name]
|
30
35
|
|
31
36
|
invoke FWToolkit::Xcode, 'new', [project_language, project_name, class_prefix.upcase, File.join(Dir.pwd, project_name)]
|
32
37
|
invoke FWToolkit::Cocoapods, 'install', [destination_root]
|
33
38
|
|
34
39
|
git_repo = GitClient::Repository.new destination_root
|
35
|
-
# gitignore is included on xcode new.. for now
|
36
40
|
|
37
41
|
if(git_repo.initialized?)
|
38
42
|
say_status :skip, 'The git repository is already initialized', :yellow
|
@@ -41,21 +45,17 @@ module FWToolkit
|
|
41
45
|
end
|
42
46
|
end
|
43
47
|
|
44
|
-
desc "proj
|
45
|
-
def
|
48
|
+
desc "proj conf_gemset [PROJECT_DIR]", "Configure gem environment on a project's folder"
|
49
|
+
def conf_gemset(project_root=Dir.pwd)
|
46
50
|
@project_name = File.basename(project_root)
|
47
|
-
@ruby_version = Config.ruby_version
|
48
51
|
destination_root = project_root
|
49
52
|
|
50
|
-
say 'Configuring
|
53
|
+
say 'Configuring Gemset'
|
51
54
|
|
52
|
-
directory "templates/default_project/
|
55
|
+
directory "templates/default_project/gemset", destination_root
|
53
56
|
|
54
57
|
inside(destination_root) do
|
55
|
-
run! "rvm install ruby-#{Config.ruby_version}"
|
56
|
-
run! "rvm ruby-#{Config.ruby_version} do rvm gemset create #{@project_name}"
|
57
58
|
bundle_update
|
58
|
-
run! "rvm #{Config.ruby_version} do rvm --ruby-version --create ruby-#{Config.ruby_version}@#{@project_name}", {:capture => true}
|
59
59
|
end
|
60
60
|
end
|
61
61
|
|
@@ -72,16 +72,17 @@ module FWToolkit
|
|
72
72
|
|
73
73
|
def bundle_update
|
74
74
|
if File.exists? 'Gemfile'
|
75
|
+
say 'Installing bundle'
|
75
76
|
begin
|
76
77
|
retried ||= false
|
77
|
-
run! "
|
78
|
-
run! "
|
79
|
-
run! "rvm ruby-#{Config.ruby_version}@#{@project_name} do gem install bundler"
|
80
|
-
run! "rvm ruby-#{Config.ruby_version}@#{@project_name} do bundle"
|
78
|
+
run! "gem install bundler", :capture => true
|
79
|
+
run! "bundle install", :capture => true
|
81
80
|
rescue Thor::Error
|
82
81
|
retried = true
|
83
82
|
retry unless retried
|
84
83
|
end
|
84
|
+
else
|
85
|
+
say 'No gemfile found'
|
85
86
|
end
|
86
87
|
|
87
88
|
end
|
data/lib/fwtoolkit/config.rb
CHANGED
@@ -6,11 +6,19 @@ module FWToolkit
|
|
6
6
|
include FWToolkit::ConfigFile
|
7
7
|
|
8
8
|
def self.config_file
|
9
|
-
File.join(ENV['HOME'], '.
|
9
|
+
File.join(ENV['HOME'], '.fwtoolkitconfig')
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.old_file
|
13
|
+
File.join(ENV['HOME'], '.fwtoolkit', 'config')
|
10
14
|
end
|
11
15
|
|
12
16
|
def self.base_file
|
13
|
-
File.join(File.dirname(__FILE__), 'config', '
|
17
|
+
File.join(File.dirname(__FILE__), 'config', '.fwtoolkitconfig.sample')
|
18
|
+
end
|
19
|
+
|
20
|
+
def self.old_config_path
|
21
|
+
File.dirname(old_file)
|
14
22
|
end
|
15
23
|
|
16
24
|
def self.config_path
|
@@ -20,15 +28,24 @@ module FWToolkit
|
|
20
28
|
def load!
|
21
29
|
unless File.exists? config_file
|
22
30
|
puts "Config file not found"
|
31
|
+
|
23
32
|
unless File.exists? config_path
|
24
33
|
puts "Creating basic path"
|
25
34
|
FileUtils.mkpath config_path
|
26
35
|
end
|
27
|
-
|
36
|
+
|
37
|
+
if File.exists? old_file
|
38
|
+
puts "Moving old configuration file to new path"
|
39
|
+
FileUtils.copy_file old_file, config_file
|
40
|
+
FileUtils.remove_file old_file
|
41
|
+
FileUtils.remove_dir old_config_path
|
42
|
+
else
|
43
|
+
FileUtils.copy_file base_file, config_file
|
44
|
+
end
|
45
|
+
|
28
46
|
end
|
29
47
|
|
30
48
|
default_config = { :organization_name => 'Future Workshops',
|
31
|
-
:ruby_version => '2.6.3',
|
32
49
|
:target_platform => '13.1',
|
33
50
|
:ci_server_url => 'https://app.bitrise.io/dashboard',
|
34
51
|
:artifacts_tmp_dir => '/tmp/fwtoolkit/artifacts' }
|
@@ -18,7 +18,7 @@ module FWToolkit
|
|
18
18
|
end
|
19
19
|
|
20
20
|
def validate_config
|
21
|
-
unless @config.has_key?(:project_name)
|
21
|
+
unless @config.has_key?(:project_name)
|
22
22
|
raise NameError, "The project name has to be specified on the configuration file"
|
23
23
|
end
|
24
24
|
end
|
data/lib/fwtoolkit/version.rb
CHANGED
@@ -263,7 +263,7 @@ workflows:
|
|
263
263
|
- force_provisioning_profile_specifier: ''
|
264
264
|
- force_provisioning_profile: ''
|
265
265
|
- is_clean_build: 'yes'
|
266
|
-
- artifact_name: "$
|
266
|
+
- artifact_name: "$PROJECT_NAME-$BITRISE_BUILD_NUMBER"
|
267
267
|
- export_method: "$EXPORT_TYPE"
|
268
268
|
- custom_export_options_plist_content: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE
|
269
269
|
plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist
|
@@ -313,9 +313,6 @@ app:
|
|
313
313
|
- opts:
|
314
314
|
is_expand: true
|
315
315
|
FW_BUILD_NUMBER_OFFSET: '0'
|
316
|
-
- COMPANY_NAME: <%= config[:class_prefix] %>
|
317
|
-
opts:
|
318
|
-
is_expand: true
|
319
316
|
- PROJECT_NAME: <%= config[:project_name] %>
|
320
317
|
opts:
|
321
318
|
is_expand: true
|
@@ -263,7 +263,7 @@ workflows:
|
|
263
263
|
- force_provisioning_profile_specifier: ''
|
264
264
|
- force_provisioning_profile: ''
|
265
265
|
- is_clean_build: 'yes'
|
266
|
-
- artifact_name: "$
|
266
|
+
- artifact_name: "$PROJECT_NAME-$BITRISE_BUILD_NUMBER"
|
267
267
|
- export_method: "$EXPORT_TYPE"
|
268
268
|
- custom_export_options_plist_content: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE
|
269
269
|
plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist
|
@@ -313,9 +313,6 @@ app:
|
|
313
313
|
- opts:
|
314
314
|
is_expand: true
|
315
315
|
FW_BUILD_NUMBER_OFFSET: '0'
|
316
|
-
- COMPANY_NAME: <%= config[:class_prefix] %>
|
317
|
-
opts:
|
318
|
-
is_expand: true
|
319
316
|
- PROJECT_NAME: <%= config[:project_name] %>
|
320
317
|
opts:
|
321
318
|
is_expand: true
|
data/templates/objc_project/xcode/%project_name%/%project_name%.xcodeproj/project.pbxproj.tt
CHANGED
@@ -65,10 +65,9 @@
|
|
65
65
|
B75028771C5A3F7A000EB3CF = {
|
66
66
|
isa = PBXGroup;
|
67
67
|
children = (
|
68
|
-
78C0E9BC20BC317600255055 /* <%= config[:project_name] %>.entitlements */,
|
69
|
-
B75028811C5A3F7A000EB3CF /* Products */,
|
70
68
|
B75028821C5A3F7A000EB3CF /* <%= config[:target_name] %> */,
|
71
69
|
B750289C1C5A3F7B000EB3CF /* <%= config[:target_name] %>Tests */,
|
70
|
+
B75028811C5A3F7A000EB3CF /* Products */,
|
72
71
|
);
|
73
72
|
sourceTree = "<group>";
|
74
73
|
};
|
@@ -97,6 +96,7 @@
|
|
97
96
|
B75028831C5A3F7A000EB3CF /* Supporting Files */ = {
|
98
97
|
isa = PBXGroup;
|
99
98
|
children = (
|
99
|
+
78C0E9BC20BC317600255055 /* <%= config[:project_name] %>.entitlements */,
|
100
100
|
B75028941C5A3F7A000EB3CF /* Info.plist */,
|
101
101
|
B75028DC1C5A4124000EB3CF /* fw-shared.xcconfig */,
|
102
102
|
B75028841C5A3F7A000EB3CF /* main.m */,
|
@@ -387,7 +387,7 @@
|
|
387
387
|
isa = XCBuildConfiguration;
|
388
388
|
buildSettings = {
|
389
389
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
390
|
-
CODE_SIGN_ENTITLEMENTS = "<%= config[:project_name] %>.entitlements";
|
390
|
+
CODE_SIGN_ENTITLEMENTS = "<%= config[:target_name] %>/Supporting Files/<%= config[:project_name] %>.entitlements";
|
391
391
|
CODE_SIGN_STYLE = Manual;
|
392
392
|
DEVELOPMENT_TEAM = "";
|
393
393
|
INFOPLIST_FILE = "<%= config[:target_name] %>/Supporting Files/Info.plist";
|
@@ -402,7 +402,7 @@
|
|
402
402
|
isa = XCBuildConfiguration;
|
403
403
|
buildSettings = {
|
404
404
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
405
|
-
CODE_SIGN_ENTITLEMENTS = "<%= config[:project_name] %>.entitlements";
|
405
|
+
CODE_SIGN_ENTITLEMENTS = "<%= config[:target_name] %>/Supporting Files/<%= config[:project_name] %>.entitlements";
|
406
406
|
CODE_SIGN_STYLE = Manual;
|
407
407
|
DEVELOPMENT_TEAM = "";
|
408
408
|
INFOPLIST_FILE = "<%= config[:target_name] %>/Supporting Files/Info.plist";
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
+
<plist version="1.0">
|
4
|
+
<dict>
|
5
|
+
<key>com.apple.developer.default-data-protection</key>
|
6
|
+
<string>NSFileProtectionComplete</string>
|
7
|
+
</dict>
|
8
|
+
</plist>
|
data/templates/swift_project/xcode/%project_name%/%project_name%.xcodeproj/project.pbxproj.tt
CHANGED
@@ -61,10 +61,9 @@
|
|
61
61
|
B75028A81C5A3F94000EB3CF = {
|
62
62
|
isa = PBXGroup;
|
63
63
|
children = (
|
64
|
-
78C0E9BB20BC315100255055 /* <%= config[:project_name] %>.entitlements */,
|
65
|
-
B75028B21C5A3F94000EB3CF /* Products */,
|
66
64
|
B75028B31C5A3F94000EB3CF /* <%= config[:target_name] %> */,
|
67
65
|
B75028C81C5A3F94000EB3CF /* <%= config[:tests_target_name] %> */,
|
66
|
+
B75028B21C5A3F94000EB3CF /* Products */,
|
68
67
|
);
|
69
68
|
sourceTree = "<group>";
|
70
69
|
};
|
@@ -100,6 +99,7 @@
|
|
100
99
|
B75028D41C5A4045000EB3CF /* Supporting Files */ = {
|
101
100
|
isa = PBXGroup;
|
102
101
|
children = (
|
102
|
+
78C0E9BB20BC315100255055 /* <%= config[:project_name] %>.entitlements */,
|
103
103
|
B75028C01C5A3F94000EB3CF /* Info.plist */,
|
104
104
|
B75028D71C5A4093000EB3CF /* fw-shared.xcconfig */,
|
105
105
|
);
|
@@ -385,7 +385,7 @@
|
|
385
385
|
isa = XCBuildConfiguration;
|
386
386
|
buildSettings = {
|
387
387
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
388
|
-
CODE_SIGN_ENTITLEMENTS = "<%= config[:project_name] %>.entitlements";
|
388
|
+
CODE_SIGN_ENTITLEMENTS = "<%= config[:target_name] %>/Supporting Files/<%= config[:project_name] %>.entitlements";
|
389
389
|
CODE_SIGN_STYLE = Manual;
|
390
390
|
DEVELOPMENT_TEAM = "";
|
391
391
|
INFOPLIST_FILE = "<%= config[:target_name] %>/Supporting Files/Info.plist";
|
@@ -401,7 +401,7 @@
|
|
401
401
|
isa = XCBuildConfiguration;
|
402
402
|
buildSettings = {
|
403
403
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
404
|
-
CODE_SIGN_ENTITLEMENTS = "<%= config[:project_name] %>.entitlements";
|
404
|
+
CODE_SIGN_ENTITLEMENTS = "<%= config[:target_name] %>/Supporting Files/<%= config[:project_name] %>.entitlements";
|
405
405
|
CODE_SIGN_STYLE = Manual;
|
406
406
|
DEVELOPMENT_TEAM = "";
|
407
407
|
INFOPLIST_FILE = "<%= config[:target_name] %>/Supporting Files/Info.plist";
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
+
<plist version="1.0">
|
4
|
+
<dict>
|
5
|
+
<key>com.apple.developer.default-data-protection</key>
|
6
|
+
<string>NSFileProtectionComplete</string>
|
7
|
+
</dict>
|
8
|
+
</plist>
|
metadata
CHANGED
@@ -1,233 +1,233 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fwtoolkit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Future Workshops
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-01-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec-rails
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: 3.8.2
|
20
|
-
- - "
|
20
|
+
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 3.8.2
|
23
23
|
type: :development
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
|
-
- - "
|
27
|
+
- - "~>"
|
28
28
|
- !ruby/object:Gem::Version
|
29
29
|
version: 3.8.2
|
30
|
-
- - "
|
30
|
+
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 3.8.2
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aruba
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
|
-
- - "
|
37
|
+
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
39
|
version: 0.14.12
|
40
|
-
- - "
|
40
|
+
- - ">="
|
41
41
|
- !ruby/object:Gem::Version
|
42
42
|
version: 0.14.12
|
43
43
|
type: :development
|
44
44
|
prerelease: false
|
45
45
|
version_requirements: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
|
-
- - "
|
47
|
+
- - "~>"
|
48
48
|
- !ruby/object:Gem::Version
|
49
49
|
version: 0.14.12
|
50
|
-
- - "
|
50
|
+
- - ">="
|
51
51
|
- !ruby/object:Gem::Version
|
52
52
|
version: 0.14.12
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: cucumber
|
55
55
|
requirement: !ruby/object:Gem::Requirement
|
56
56
|
requirements:
|
57
|
-
- - "
|
57
|
+
- - "~>"
|
58
58
|
- !ruby/object:Gem::Version
|
59
59
|
version: 3.1.2
|
60
|
-
- - "
|
60
|
+
- - ">="
|
61
61
|
- !ruby/object:Gem::Version
|
62
62
|
version: 3.1.2
|
63
63
|
type: :development
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
|
-
- - "
|
67
|
+
- - "~>"
|
68
68
|
- !ruby/object:Gem::Version
|
69
69
|
version: 3.1.2
|
70
|
-
- - "
|
70
|
+
- - ">="
|
71
71
|
- !ruby/object:Gem::Version
|
72
72
|
version: 3.1.2
|
73
73
|
- !ruby/object:Gem::Dependency
|
74
74
|
name: aruba-doubles
|
75
75
|
requirement: !ruby/object:Gem::Requirement
|
76
76
|
requirements:
|
77
|
-
- - "
|
77
|
+
- - "~>"
|
78
78
|
- !ruby/object:Gem::Version
|
79
79
|
version: 1.2.1
|
80
|
-
- - "
|
80
|
+
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: 1.2.1
|
83
83
|
type: :development
|
84
84
|
prerelease: false
|
85
85
|
version_requirements: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
|
-
- - "
|
87
|
+
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
89
|
version: 1.2.1
|
90
|
-
- - "
|
90
|
+
- - ">="
|
91
91
|
- !ruby/object:Gem::Version
|
92
92
|
version: 1.2.1
|
93
93
|
- !ruby/object:Gem::Dependency
|
94
94
|
name: thor
|
95
95
|
requirement: !ruby/object:Gem::Requirement
|
96
96
|
requirements:
|
97
|
-
- - "
|
97
|
+
- - "~>"
|
98
98
|
- !ruby/object:Gem::Version
|
99
99
|
version: 0.20.3
|
100
|
-
- - "
|
100
|
+
- - ">="
|
101
101
|
- !ruby/object:Gem::Version
|
102
102
|
version: 0.20.3
|
103
103
|
type: :runtime
|
104
104
|
prerelease: false
|
105
105
|
version_requirements: !ruby/object:Gem::Requirement
|
106
106
|
requirements:
|
107
|
-
- - "
|
107
|
+
- - "~>"
|
108
108
|
- !ruby/object:Gem::Version
|
109
109
|
version: 0.20.3
|
110
|
-
- - "
|
110
|
+
- - ">="
|
111
111
|
- !ruby/object:Gem::Version
|
112
112
|
version: 0.20.3
|
113
113
|
- !ruby/object:Gem::Dependency
|
114
114
|
name: rake
|
115
115
|
requirement: !ruby/object:Gem::Requirement
|
116
116
|
requirements:
|
117
|
-
- - "
|
117
|
+
- - "~>"
|
118
118
|
- !ruby/object:Gem::Version
|
119
119
|
version: 13.0.0
|
120
|
-
- - "
|
120
|
+
- - ">="
|
121
121
|
- !ruby/object:Gem::Version
|
122
122
|
version: 13.0.0
|
123
123
|
type: :runtime
|
124
124
|
prerelease: false
|
125
125
|
version_requirements: !ruby/object:Gem::Requirement
|
126
126
|
requirements:
|
127
|
-
- - "
|
127
|
+
- - "~>"
|
128
128
|
- !ruby/object:Gem::Version
|
129
129
|
version: 13.0.0
|
130
|
-
- - "
|
130
|
+
- - ">="
|
131
131
|
- !ruby/object:Gem::Version
|
132
132
|
version: 13.0.0
|
133
133
|
- !ruby/object:Gem::Dependency
|
134
134
|
name: bundler
|
135
135
|
requirement: !ruby/object:Gem::Requirement
|
136
136
|
requirements:
|
137
|
-
- - ">="
|
138
|
-
- !ruby/object:Gem::Version
|
139
|
-
version: 2.0.2
|
140
137
|
- - "~>"
|
141
138
|
- !ruby/object:Gem::Version
|
142
|
-
version: 2.
|
139
|
+
version: 2.1.4
|
140
|
+
- - ">="
|
141
|
+
- !ruby/object:Gem::Version
|
142
|
+
version: 2.1.4
|
143
143
|
type: :runtime
|
144
144
|
prerelease: false
|
145
145
|
version_requirements: !ruby/object:Gem::Requirement
|
146
146
|
requirements:
|
147
|
-
- - ">="
|
148
|
-
- !ruby/object:Gem::Version
|
149
|
-
version: 2.0.2
|
150
147
|
- - "~>"
|
151
148
|
- !ruby/object:Gem::Version
|
152
|
-
version: 2.
|
149
|
+
version: 2.1.4
|
150
|
+
- - ">="
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: 2.1.4
|
153
153
|
- !ruby/object:Gem::Dependency
|
154
154
|
name: multi_json
|
155
155
|
requirement: !ruby/object:Gem::Requirement
|
156
156
|
requirements:
|
157
|
-
- - "
|
157
|
+
- - "~>"
|
158
158
|
- !ruby/object:Gem::Version
|
159
159
|
version: 1.13.1
|
160
|
-
- - "
|
160
|
+
- - ">="
|
161
161
|
- !ruby/object:Gem::Version
|
162
162
|
version: 1.13.1
|
163
163
|
type: :runtime
|
164
164
|
prerelease: false
|
165
165
|
version_requirements: !ruby/object:Gem::Requirement
|
166
166
|
requirements:
|
167
|
-
- - "
|
167
|
+
- - "~>"
|
168
168
|
- !ruby/object:Gem::Version
|
169
169
|
version: 1.13.1
|
170
|
-
- - "
|
170
|
+
- - ">="
|
171
171
|
- !ruby/object:Gem::Version
|
172
172
|
version: 1.13.1
|
173
173
|
- !ruby/object:Gem::Dependency
|
174
174
|
name: xcodeproj
|
175
175
|
requirement: !ruby/object:Gem::Requirement
|
176
176
|
requirements:
|
177
|
-
- - "
|
177
|
+
- - "~>"
|
178
178
|
- !ruby/object:Gem::Version
|
179
179
|
version: 1.12.0
|
180
|
-
- - "
|
180
|
+
- - ">="
|
181
181
|
- !ruby/object:Gem::Version
|
182
182
|
version: 1.12.0
|
183
183
|
type: :runtime
|
184
184
|
prerelease: false
|
185
185
|
version_requirements: !ruby/object:Gem::Requirement
|
186
186
|
requirements:
|
187
|
-
- - "
|
187
|
+
- - "~>"
|
188
188
|
- !ruby/object:Gem::Version
|
189
189
|
version: 1.12.0
|
190
|
-
- - "
|
190
|
+
- - ">="
|
191
191
|
- !ruby/object:Gem::Version
|
192
192
|
version: 1.12.0
|
193
193
|
- !ruby/object:Gem::Dependency
|
194
194
|
name: xcodebuild-rb
|
195
195
|
requirement: !ruby/object:Gem::Requirement
|
196
196
|
requirements:
|
197
|
-
- - "
|
197
|
+
- - "~>"
|
198
198
|
- !ruby/object:Gem::Version
|
199
199
|
version: 0.3.0
|
200
|
-
- - "
|
200
|
+
- - ">="
|
201
201
|
- !ruby/object:Gem::Version
|
202
202
|
version: 0.3.0
|
203
203
|
type: :runtime
|
204
204
|
prerelease: false
|
205
205
|
version_requirements: !ruby/object:Gem::Requirement
|
206
206
|
requirements:
|
207
|
-
- - "
|
207
|
+
- - "~>"
|
208
208
|
- !ruby/object:Gem::Version
|
209
209
|
version: 0.3.0
|
210
|
-
- - "
|
210
|
+
- - ">="
|
211
211
|
- !ruby/object:Gem::Version
|
212
212
|
version: 0.3.0
|
213
213
|
- !ruby/object:Gem::Dependency
|
214
214
|
name: rubyzip
|
215
215
|
requirement: !ruby/object:Gem::Requirement
|
216
216
|
requirements:
|
217
|
-
- - "
|
217
|
+
- - "~>"
|
218
218
|
- !ruby/object:Gem::Version
|
219
219
|
version: 2.0.0
|
220
|
-
- - "
|
220
|
+
- - ">="
|
221
221
|
- !ruby/object:Gem::Version
|
222
222
|
version: 2.0.0
|
223
223
|
type: :runtime
|
224
224
|
prerelease: false
|
225
225
|
version_requirements: !ruby/object:Gem::Requirement
|
226
226
|
requirements:
|
227
|
-
- - "
|
227
|
+
- - "~>"
|
228
228
|
- !ruby/object:Gem::Version
|
229
229
|
version: 2.0.0
|
230
|
-
- - "
|
230
|
+
- - ">="
|
231
231
|
- !ruby/object:Gem::Version
|
232
232
|
version: 2.0.0
|
233
233
|
description: A collection of iOS development tools used by Future Workshops
|
@@ -266,7 +266,7 @@ files:
|
|
266
266
|
- lib/fwtoolkit/cli/thorutils.rb
|
267
267
|
- lib/fwtoolkit/cli/xcode.rb
|
268
268
|
- lib/fwtoolkit/config.rb
|
269
|
-
- lib/fwtoolkit/config
|
269
|
+
- lib/fwtoolkit/config/.fwtoolkitconfig.sample
|
270
270
|
- lib/fwtoolkit/configfile.rb
|
271
271
|
- lib/fwtoolkit/executable.rb
|
272
272
|
- lib/fwtoolkit/executable/executable.rb
|
@@ -295,9 +295,9 @@ files:
|
|
295
295
|
- spec/support/project_generator.rb
|
296
296
|
- templates/bitrise/bitrise.yml.tt
|
297
297
|
- templates/default_project/bitrise/bitrise.yml.tt
|
298
|
+
- templates/default_project/gemset/Gemfile
|
298
299
|
- templates/default_project/git/.github/PULL_REQUEST_TEMPLATE.md
|
299
300
|
- templates/default_project/git/.gitignore
|
300
|
-
- templates/default_project/rvm/Gemfile
|
301
301
|
- templates/objc_project/xcode/%project_name%.xcworkspace/contents.xcworkspacedata.tt
|
302
302
|
- templates/objc_project/xcode/%project_name%.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
|
303
303
|
- templates/objc_project/xcode/%project_name%/%project_name%.entitlements
|
@@ -332,6 +332,7 @@ files:
|
|
332
332
|
- templates/objc_project/xcode/%project_name%/%target_name%/Resources/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png
|
333
333
|
- templates/objc_project/xcode/%project_name%/%target_name%/Resources/Base.lproj/LaunchScreen.storyboard
|
334
334
|
- templates/objc_project/xcode/%project_name%/%target_name%/Resources/Base.lproj/Main.storyboard.tt
|
335
|
+
- templates/objc_project/xcode/%project_name%/%target_name%/Supporting Files/%project_name%.entitlements
|
335
336
|
- templates/objc_project/xcode/%project_name%/%target_name%/Supporting Files/Info.plist
|
336
337
|
- templates/objc_project/xcode/%project_name%/%target_name%/Supporting Files/fw-shared.xcconfig
|
337
338
|
- templates/objc_project/xcode/%project_name%/%target_name%/Supporting Files/main.m.tt
|
@@ -370,6 +371,7 @@ files:
|
|
370
371
|
- templates/swift_project/xcode/%project_name%/%target_name%/Resources/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png
|
371
372
|
- templates/swift_project/xcode/%project_name%/%target_name%/Resources/Base.lproj/LaunchScreen.storyboard
|
372
373
|
- templates/swift_project/xcode/%project_name%/%target_name%/Resources/Base.lproj/Main.storyboard
|
374
|
+
- templates/swift_project/xcode/%project_name%/%target_name%/Supporting Files/%project_name%.entitlements
|
373
375
|
- templates/swift_project/xcode/%project_name%/%target_name%/Supporting Files/Info.plist
|
374
376
|
- templates/swift_project/xcode/%project_name%/%target_name%/Supporting Files/fw-shared.xcconfig
|
375
377
|
- templates/swift_project/xcode/%project_name%/%target_name%/ViewController.swift.tt
|
@@ -396,7 +398,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
396
398
|
- !ruby/object:Gem::Version
|
397
399
|
version: '0'
|
398
400
|
requirements: []
|
399
|
-
rubygems_version: 3.
|
401
|
+
rubygems_version: 3.1.2
|
400
402
|
signing_key:
|
401
403
|
specification_version: 4
|
402
404
|
summary: Future Workshops project tools
|