rswift 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +11 -0
  3. data/.rspec +2 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE.txt +21 -0
  6. data/README.md +56 -0
  7. data/Rakefile +6 -0
  8. data/bin/rswift +7 -0
  9. data/lib/ext/array.rb +12 -0
  10. data/lib/ext/group.rb +24 -0
  11. data/lib/ext/native_target.rb +54 -0
  12. data/lib/ext/project.rb +68 -0
  13. data/lib/rswift.rb +22 -0
  14. data/lib/rswift/attributes_configurator.rb +20 -0
  15. data/lib/rswift/build_settings_configurator.rb +26 -0
  16. data/lib/rswift/build_settings_provider.rb +84 -0
  17. data/lib/rswift/cli.rb +33 -0
  18. data/lib/rswift/configuration.rb +41 -0
  19. data/lib/rswift/constants.rb +106 -0
  20. data/lib/rswift/device_provider.rb +25 -0
  21. data/lib/rswift/files_references_manager.rb +17 -0
  22. data/lib/rswift/group_references_manager.rb +114 -0
  23. data/lib/rswift/project_configurator.rb +41 -0
  24. data/lib/rswift/scheme_configurator.rb +10 -0
  25. data/lib/rswift/target_configurator.rb +22 -0
  26. data/lib/rswift/template_manager.rb +28 -0
  27. data/lib/rswift/templates/app/ios/.gitignore.erb +22 -0
  28. data/lib/rswift/templates/app/ios/Gemfile.erb +4 -0
  29. data/lib/rswift/templates/app/ios/Podfile.erb +11 -0
  30. data/lib/rswift/templates/app/ios/Rakefile.erb +1 -0
  31. data/lib/rswift/templates/app/ios/app/AppDelegate.swift.erb +15 -0
  32. data/lib/rswift/templates/app/ios/app/Assets.xcassets/AppIcon.appiconset/Contents.json.erb +73 -0
  33. data/lib/rswift/templates/app/ios/app/Info.plist.erb +45 -0
  34. data/lib/rswift/templates/app/ios/app/LaunchScreen.storyboard.erb +28 -0
  35. data/lib/rswift/templates/app/ios/package.json.erb +14 -0
  36. data/lib/rswift/templates/app/ios/spec/AppDelegateSpec.swift.erb +24 -0
  37. data/lib/rswift/templates/app/ios/spec/Info.plist.erb +24 -0
  38. data/lib/rswift/templates/app/osx/.gitignore.erb +21 -0
  39. data/lib/rswift/templates/app/osx/Gemfile.erb +4 -0
  40. data/lib/rswift/templates/app/osx/Podfile.erb +7 -0
  41. data/lib/rswift/templates/app/osx/Rakefile.erb +1 -0
  42. data/lib/rswift/templates/app/osx/app/AppDelegate.swift.erb +30 -0
  43. data/lib/rswift/templates/app/osx/app/Assets.xcassets/AppIcon.appiconset/Contents.json.erb +58 -0
  44. data/lib/rswift/templates/app/osx/app/Info.plist.erb +30 -0
  45. data/lib/rswift/templates/app/osx/app/main.swift.erb +5 -0
  46. data/lib/rswift/templates/app/osx/spec/AppDelegateSpec.swift.erb +24 -0
  47. data/lib/rswift/templates/app/osx/spec/Info.plist.erb +24 -0
  48. data/lib/rswift/templates/app/tvos/.gitignore.erb +21 -0
  49. data/lib/rswift/templates/app/tvos/Gemfile.erb +4 -0
  50. data/lib/rswift/templates/app/tvos/Podfile.erb +11 -0
  51. data/lib/rswift/templates/app/tvos/Rakefile.erb +1 -0
  52. data/lib/rswift/templates/app/tvos/app/AppDelegate.swift.erb +15 -0
  53. data/lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json.erb +12 -0
  54. data/lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json.erb +6 -0
  55. data/lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon - Large.imagestack/Contents.json.erb +17 -0
  56. data/lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json.erb +12 -0
  57. data/lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json.erb +6 -0
  58. data/lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json.erb +12 -0
  59. data/lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json.erb +6 -0
  60. data/lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json.erb +12 -0
  61. data/lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json.erb +6 -0
  62. data/lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon - Small.imagestack/Contents.json.erb +17 -0
  63. data/lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json.erb +12 -0
  64. data/lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json.erb +6 -0
  65. data/lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json.erb +12 -0
  66. data/lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json.erb +6 -0
  67. data/lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/Contents.json.erb +26 -0
  68. data/lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/Top Shelf Image.imageset/Contents.json.erb +12 -0
  69. data/lib/rswift/templates/app/tvos/app/Assets.xcassets/Contents.json.erb +6 -0
  70. data/lib/rswift/templates/app/tvos/app/Assets.xcassets/LaunchImage.launchimage/Contents.json.erb +15 -0
  71. data/lib/rswift/templates/app/tvos/app/Info.plist.erb +30 -0
  72. data/lib/rswift/templates/app/tvos/spec/AppDelegateSpec.swift.erb +24 -0
  73. data/lib/rswift/templates/app/tvos/spec/Info.plist.erb +24 -0
  74. data/lib/rswift/templates/app/watchos/wk_app/Assets.xcassets/AppIcon.appiconset/Contents.json.erb +55 -0
  75. data/lib/rswift/templates/app/watchos/wk_app/Info.plist.erb +35 -0
  76. data/lib/rswift/templates/app/watchos/wk_app/Interface.storyboard.erb +15 -0
  77. data/lib/rswift/templates/app/watchos/wk_ext/Assets.xcassets/README__ignoredByTemplate__ +1 -0
  78. data/lib/rswift/templates/app/watchos/wk_ext/ExtensionDelegate.swift.erb +4 -0
  79. data/lib/rswift/templates/app/watchos/wk_ext/Info.plist.erb +40 -0
  80. data/lib/rswift/templates/app/watchos/wk_ext/InterfaceController.swift.erb +6 -0
  81. data/lib/rswift/version.rb +3 -0
  82. data/lib/rswift/workspace_provider.rb +11 -0
  83. data/rswift.gemspec +26 -0
  84. metadata +227 -0
@@ -0,0 +1,35 @@
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>CFBundleDevelopmentRegion</key>
6
+ <string>en</string>
7
+ <key>CFBundleDisplayName</key>
8
+ <string>watchos_app WatchKit App</string>
9
+ <key>CFBundleExecutable</key>
10
+ <string>$(EXECUTABLE_NAME)</string>
11
+ <key>CFBundleIdentifier</key>
12
+ <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
13
+ <key>CFBundleInfoDictionaryVersion</key>
14
+ <string>6.0</string>
15
+ <key>CFBundleName</key>
16
+ <string>$(PRODUCT_NAME)</string>
17
+ <key>CFBundlePackageType</key>
18
+ <string>APPL</string>
19
+ <key>CFBundleShortVersionString</key>
20
+ <string>1.0</string>
21
+ <key>CFBundleSignature</key>
22
+ <string>????</string>
23
+ <key>CFBundleVersion</key>
24
+ <string>1</string>
25
+ <key>UISupportedInterfaceOrientations</key>
26
+ <array>
27
+ <string>UIInterfaceOrientationPortrait</string>
28
+ <string>UIInterfaceOrientationPortraitUpsideDown</string>
29
+ </array>
30
+ <key>WKCompanionAppBundleIdentifier</key>
31
+ <string>com.rswift.watchos-app</string>
32
+ <key>WKWatchKitApp</key>
33
+ <true/>
34
+ </dict>
35
+ </plist>
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <document type="com.apple.InterfaceBuilder.WatchKit.Storyboard" version="3.0" toolsVersion="9531" systemVersion="15C50" targetRuntime="watchKit" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="AgC-eL-Hgc">
3
+ <dependencies>
4
+ <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="9529"/>
5
+ <plugIn identifier="com.apple.InterfaceBuilder.IBWatchKitPlugin" version="9515"/>
6
+ </dependencies>
7
+ <scenes>
8
+ <!--Interface Controller-->
9
+ <scene sceneID="aou-V4-d1y">
10
+ <objects>
11
+ <controller id="AgC-eL-Hgc" customClass="InterfaceController" customModule="watchos_app_WatchKit_App" customModuleProvider="target"/>
12
+ </objects>
13
+ </scene>
14
+ </scenes>
15
+ </document>
@@ -0,0 +1 @@
1
+ Did you know that git does not support storing empty directories?
@@ -0,0 +1,4 @@
1
+ import WatchKit
2
+
3
+ class ExtensionDelegate: NSObject, WKExtensionDelegate {
4
+ }
@@ -0,0 +1,40 @@
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>CFBundleDevelopmentRegion</key>
6
+ <string>en</string>
7
+ <key>CFBundleDisplayName</key>
8
+ <string>watchos_app WatchKit Extension</string>
9
+ <key>CFBundleExecutable</key>
10
+ <string>$(EXECUTABLE_NAME)</string>
11
+ <key>CFBundleIdentifier</key>
12
+ <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
13
+ <key>CFBundleInfoDictionaryVersion</key>
14
+ <string>6.0</string>
15
+ <key>CFBundleName</key>
16
+ <string>$(PRODUCT_NAME)</string>
17
+ <key>CFBundlePackageType</key>
18
+ <string>XPC!</string>
19
+ <key>CFBundleShortVersionString</key>
20
+ <string>1.0</string>
21
+ <key>CFBundleSignature</key>
22
+ <string>????</string>
23
+ <key>CFBundleVersion</key>
24
+ <string>1</string>
25
+ <key>NSExtension</key>
26
+ <dict>
27
+ <key>NSExtensionAttributes</key>
28
+ <dict>
29
+ <key>WKAppBundleIdentifier</key>
30
+ <string>com.rswift.watchos-app.watchkitapp</string>
31
+ </dict>
32
+ <key>NSExtensionPointIdentifier</key>
33
+ <string>com.apple.watchkit</string>
34
+ </dict>
35
+ <key>RemoteInterfacePrincipalClass</key>
36
+ <string>$(PRODUCT_MODULE_NAME).InterfaceController</string>
37
+ <key>WKExtensionDelegateClassName</key>
38
+ <string>$(PRODUCT_MODULE_NAME).ExtensionDelegate</string>
39
+ </dict>
40
+ </plist>
@@ -0,0 +1,6 @@
1
+ import WatchKit
2
+ import Foundation
3
+
4
+
5
+ class InterfaceController: WKInterfaceController {
6
+ }
@@ -0,0 +1,3 @@
1
+ module RSwift
2
+ VERSION = '0.1.0'
3
+ end
@@ -0,0 +1,11 @@
1
+ require 'colorize'
2
+
3
+ module RSwift
4
+ class WorkspaceProvider
5
+ def self.workspace
6
+ workspace = Dir.glob(['*.xcworkspace']).first
7
+ raise 'xcworkspace not found, did you install pods?'.red unless workspace
8
+ workspace
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'rswift/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'rswift'
8
+ spec.version = RSwift::VERSION
9
+ spec.authors = ['Lukasz Wolanczyk']
10
+ spec.email = ['wolanczyk.lukasz@gmail.com']
11
+
12
+ spec.summary = 'RSwift allows to create and develop iOS, OSX, tvOS and watchOS projects using CLI.'
13
+ spec.homepage = 'https://github.com/lukwol/rswift'
14
+ spec.license = 'MIT'
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
+ spec.executables = ['rswift']
18
+ spec.require_paths = ['lib']
19
+
20
+ spec.add_development_dependency 'bundler'
21
+ spec.add_development_dependency 'rake'
22
+ spec.add_development_dependency 'rspec'
23
+ spec.add_runtime_dependency 'xcodeproj'
24
+ spec.add_runtime_dependency 'colorize'
25
+ spec.add_runtime_dependency 'thor'
26
+ end
metadata ADDED
@@ -0,0 +1,227 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rswift
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Lukasz Wolanczyk
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-04-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: xcodeproj
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: colorize
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: thor
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description:
98
+ email:
99
+ - wolanczyk.lukasz@gmail.com
100
+ executables:
101
+ - rswift
102
+ extensions: []
103
+ extra_rdoc_files: []
104
+ files:
105
+ - ".gitignore"
106
+ - ".rspec"
107
+ - Gemfile
108
+ - LICENSE.txt
109
+ - README.md
110
+ - Rakefile
111
+ - bin/rswift
112
+ - lib/ext/array.rb
113
+ - lib/ext/group.rb
114
+ - lib/ext/native_target.rb
115
+ - lib/ext/project.rb
116
+ - lib/rswift.rb
117
+ - lib/rswift/attributes_configurator.rb
118
+ - lib/rswift/build_settings_configurator.rb
119
+ - lib/rswift/build_settings_provider.rb
120
+ - lib/rswift/cli.rb
121
+ - lib/rswift/configuration.rb
122
+ - lib/rswift/constants.rb
123
+ - lib/rswift/device_provider.rb
124
+ - lib/rswift/files_references_manager.rb
125
+ - lib/rswift/group_references_manager.rb
126
+ - lib/rswift/project_configurator.rb
127
+ - lib/rswift/scheme_configurator.rb
128
+ - lib/rswift/target_configurator.rb
129
+ - lib/rswift/template_manager.rb
130
+ - lib/rswift/templates/app/ios/.gitignore.erb
131
+ - lib/rswift/templates/app/ios/Gemfile.erb
132
+ - lib/rswift/templates/app/ios/Podfile.erb
133
+ - lib/rswift/templates/app/ios/Rakefile.erb
134
+ - lib/rswift/templates/app/ios/app/AppDelegate.swift.erb
135
+ - lib/rswift/templates/app/ios/app/Assets.xcassets/AppIcon.appiconset/Contents.json.erb
136
+ - lib/rswift/templates/app/ios/app/Info.plist.erb
137
+ - lib/rswift/templates/app/ios/app/LaunchScreen.storyboard.erb
138
+ - lib/rswift/templates/app/ios/package.json.erb
139
+ - lib/rswift/templates/app/ios/spec/AppDelegateSpec.swift.erb
140
+ - lib/rswift/templates/app/ios/spec/Info.plist.erb
141
+ - lib/rswift/templates/app/osx/.gitignore.erb
142
+ - lib/rswift/templates/app/osx/Gemfile.erb
143
+ - lib/rswift/templates/app/osx/Podfile.erb
144
+ - lib/rswift/templates/app/osx/Rakefile.erb
145
+ - lib/rswift/templates/app/osx/app/AppDelegate.swift.erb
146
+ - lib/rswift/templates/app/osx/app/Assets.xcassets/AppIcon.appiconset/Contents.json.erb
147
+ - lib/rswift/templates/app/osx/app/Info.plist.erb
148
+ - lib/rswift/templates/app/osx/app/main.swift.erb
149
+ - lib/rswift/templates/app/osx/spec/AppDelegateSpec.swift.erb
150
+ - lib/rswift/templates/app/osx/spec/Info.plist.erb
151
+ - lib/rswift/templates/app/tvos/.gitignore.erb
152
+ - lib/rswift/templates/app/tvos/Gemfile.erb
153
+ - lib/rswift/templates/app/tvos/Podfile.erb
154
+ - lib/rswift/templates/app/tvos/Rakefile.erb
155
+ - lib/rswift/templates/app/tvos/app/AppDelegate.swift.erb
156
+ - lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon -
157
+ Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json.erb
158
+ - lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon -
159
+ Large.imagestack/Back.imagestacklayer/Contents.json.erb
160
+ - lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon -
161
+ Large.imagestack/Contents.json.erb
162
+ - lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon -
163
+ Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json.erb
164
+ - lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon -
165
+ Large.imagestack/Front.imagestacklayer/Contents.json.erb
166
+ - lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon -
167
+ Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json.erb
168
+ - lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon -
169
+ Large.imagestack/Middle.imagestacklayer/Contents.json.erb
170
+ - lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon -
171
+ Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json.erb
172
+ - lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon -
173
+ Small.imagestack/Back.imagestacklayer/Contents.json.erb
174
+ - lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon -
175
+ Small.imagestack/Contents.json.erb
176
+ - lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon -
177
+ Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json.erb
178
+ - lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon -
179
+ Small.imagestack/Front.imagestacklayer/Contents.json.erb
180
+ - lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon -
181
+ Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json.erb
182
+ - lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/App Icon -
183
+ Small.imagestack/Middle.imagestacklayer/Contents.json.erb
184
+ - lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/Contents.json.erb
185
+ - lib/rswift/templates/app/tvos/app/Assets.xcassets/AppIcon.brandassets/Top Shelf
186
+ Image.imageset/Contents.json.erb
187
+ - lib/rswift/templates/app/tvos/app/Assets.xcassets/Contents.json.erb
188
+ - lib/rswift/templates/app/tvos/app/Assets.xcassets/LaunchImage.launchimage/Contents.json.erb
189
+ - lib/rswift/templates/app/tvos/app/Info.plist.erb
190
+ - lib/rswift/templates/app/tvos/spec/AppDelegateSpec.swift.erb
191
+ - lib/rswift/templates/app/tvos/spec/Info.plist.erb
192
+ - lib/rswift/templates/app/watchos/wk_app/Assets.xcassets/AppIcon.appiconset/Contents.json.erb
193
+ - lib/rswift/templates/app/watchos/wk_app/Info.plist.erb
194
+ - lib/rswift/templates/app/watchos/wk_app/Interface.storyboard.erb
195
+ - lib/rswift/templates/app/watchos/wk_ext/Assets.xcassets/README__ignoredByTemplate__
196
+ - lib/rswift/templates/app/watchos/wk_ext/ExtensionDelegate.swift.erb
197
+ - lib/rswift/templates/app/watchos/wk_ext/Info.plist.erb
198
+ - lib/rswift/templates/app/watchos/wk_ext/InterfaceController.swift.erb
199
+ - lib/rswift/version.rb
200
+ - lib/rswift/workspace_provider.rb
201
+ - rswift.gemspec
202
+ homepage: https://github.com/lukwol/rswift
203
+ licenses:
204
+ - MIT
205
+ metadata: {}
206
+ post_install_message:
207
+ rdoc_options: []
208
+ require_paths:
209
+ - lib
210
+ required_ruby_version: !ruby/object:Gem::Requirement
211
+ requirements:
212
+ - - ">="
213
+ - !ruby/object:Gem::Version
214
+ version: '0'
215
+ required_rubygems_version: !ruby/object:Gem::Requirement
216
+ requirements:
217
+ - - ">="
218
+ - !ruby/object:Gem::Version
219
+ version: '0'
220
+ requirements: []
221
+ rubyforge_project:
222
+ rubygems_version: 2.4.6
223
+ signing_key:
224
+ specification_version: 4
225
+ summary: RSwift allows to create and develop iOS, OSX, tvOS and watchOS projects using
226
+ CLI.
227
+ test_files: []