commandly 0.1.1
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 +7 -0
- data/.gitignore +16 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +65 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/commandly.gemspec +40 -0
- data/exe/commandly +5 -0
- data/lib/commandly/cli.rb +69 -0
- data/lib/commandly/generator.rb +71 -0
- data/lib/commandly/version.rb +3 -0
- data/lib/commandly.rb +7 -0
- data/templates/android/.gitignore +135 -0
- data/templates/android/.idea/gradle.xml +18 -0
- data/templates/android/.idea/runConfigurations.xml +12 -0
- data/templates/android/app/.gitignore +1 -0
- data/templates/android/app/build.gradle +30 -0
- data/templates/android/app/proguard-rules.pro +25 -0
- data/templates/android/app/src/androidTest/java/com/vuebly/commandly/ExampleInstrumentedTest.java +26 -0
- data/templates/android/app/src/main/AndroidManifest.xml +21 -0
- data/templates/android/app/src/main/java/com/vuebly/commandly/MainActivity.java +13 -0
- data/templates/android/app/src/main/res/layout/activity_main.xml +18 -0
- data/templates/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- data/templates/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- data/templates/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- data/templates/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- data/templates/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- data/templates/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- data/templates/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- data/templates/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- data/templates/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- data/templates/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- data/templates/android/app/src/main/res/values/colors.xml +6 -0
- data/templates/android/app/src/main/res/values/strings.xml +3 -0
- data/templates/android/app/src/main/res/values/styles.xml +11 -0
- data/templates/android/app/src/test/java/com/vuebly/commandly/ExampleUnitTest.java +17 -0
- data/templates/android/build.gradle +23 -0
- data/templates/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- data/templates/android/gradle/wrapper/gradle-wrapper.properties +6 -0
- data/templates/android/gradle.properties +17 -0
- data/templates/android/gradlew +160 -0
- data/templates/android/gradlew.bat +90 -0
- data/templates/android/settings.gradle +1 -0
- data/templates/ios/.gitignore +55 -0
- data/templates/ios/Commandly/AppDelegate.h +17 -0
- data/templates/ios/Commandly/AppDelegate.m +51 -0
- data/templates/ios/Commandly/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
- data/templates/ios/Commandly/Base.lproj/LaunchScreen.storyboard +27 -0
- data/templates/ios/Commandly/Base.lproj/Main.storyboard +41 -0
- data/templates/ios/Commandly/Info.plist +45 -0
- data/templates/ios/Commandly/ViewController.h +15 -0
- data/templates/ios/Commandly/ViewController.m +29 -0
- data/templates/ios/Commandly/main.m +16 -0
- data/templates/ios/Commandly.xcodeproj/project.pbxproj +429 -0
- data/templates/ios/CommandlyTests/CommandlyTests.m +39 -0
- data/templates/ios/CommandlyTests/Info.plist +22 -0
- metadata +176 -0
metadata
ADDED
@@ -0,0 +1,176 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: commandly
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Louie Bao
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-07-03 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: '1.15'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.15'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.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: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: thor
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 0.19.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.19.0
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: git
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 1.3.0
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 1.3.0
|
83
|
+
description: |2
|
84
|
+
Commandly is a command line tool for creating iOS and/or Android project.
|
85
|
+
It lets you create projects from a local or remote template, it's simple to use and easy to customize.
|
86
|
+
email:
|
87
|
+
- louie.bao@vuebly.com
|
88
|
+
executables:
|
89
|
+
- commandly
|
90
|
+
extensions: []
|
91
|
+
extra_rdoc_files: []
|
92
|
+
files:
|
93
|
+
- ".gitignore"
|
94
|
+
- ".rspec"
|
95
|
+
- ".travis.yml"
|
96
|
+
- Gemfile
|
97
|
+
- LICENSE.txt
|
98
|
+
- README.md
|
99
|
+
- Rakefile
|
100
|
+
- bin/console
|
101
|
+
- bin/setup
|
102
|
+
- commandly.gemspec
|
103
|
+
- exe/commandly
|
104
|
+
- lib/commandly.rb
|
105
|
+
- lib/commandly/cli.rb
|
106
|
+
- lib/commandly/generator.rb
|
107
|
+
- lib/commandly/version.rb
|
108
|
+
- templates/android/.gitignore
|
109
|
+
- templates/android/.idea/gradle.xml
|
110
|
+
- templates/android/.idea/runConfigurations.xml
|
111
|
+
- templates/android/app/.gitignore
|
112
|
+
- templates/android/app/build.gradle
|
113
|
+
- templates/android/app/proguard-rules.pro
|
114
|
+
- templates/android/app/src/androidTest/java/com/vuebly/commandly/ExampleInstrumentedTest.java
|
115
|
+
- templates/android/app/src/main/AndroidManifest.xml
|
116
|
+
- templates/android/app/src/main/java/com/vuebly/commandly/MainActivity.java
|
117
|
+
- templates/android/app/src/main/res/layout/activity_main.xml
|
118
|
+
- templates/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
|
119
|
+
- templates/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
|
120
|
+
- templates/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
|
121
|
+
- templates/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
|
122
|
+
- templates/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
|
123
|
+
- templates/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
|
124
|
+
- templates/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
|
125
|
+
- templates/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
|
126
|
+
- templates/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
|
127
|
+
- templates/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
|
128
|
+
- templates/android/app/src/main/res/values/colors.xml
|
129
|
+
- templates/android/app/src/main/res/values/strings.xml
|
130
|
+
- templates/android/app/src/main/res/values/styles.xml
|
131
|
+
- templates/android/app/src/test/java/com/vuebly/commandly/ExampleUnitTest.java
|
132
|
+
- templates/android/build.gradle
|
133
|
+
- templates/android/gradle.properties
|
134
|
+
- templates/android/gradle/wrapper/gradle-wrapper.jar
|
135
|
+
- templates/android/gradle/wrapper/gradle-wrapper.properties
|
136
|
+
- templates/android/gradlew
|
137
|
+
- templates/android/gradlew.bat
|
138
|
+
- templates/android/settings.gradle
|
139
|
+
- templates/ios/.gitignore
|
140
|
+
- templates/ios/Commandly.xcodeproj/project.pbxproj
|
141
|
+
- templates/ios/Commandly/AppDelegate.h
|
142
|
+
- templates/ios/Commandly/AppDelegate.m
|
143
|
+
- templates/ios/Commandly/Assets.xcassets/AppIcon.appiconset/Contents.json
|
144
|
+
- templates/ios/Commandly/Base.lproj/LaunchScreen.storyboard
|
145
|
+
- templates/ios/Commandly/Base.lproj/Main.storyboard
|
146
|
+
- templates/ios/Commandly/Info.plist
|
147
|
+
- templates/ios/Commandly/ViewController.h
|
148
|
+
- templates/ios/Commandly/ViewController.m
|
149
|
+
- templates/ios/Commandly/main.m
|
150
|
+
- templates/ios/CommandlyTests/CommandlyTests.m
|
151
|
+
- templates/ios/CommandlyTests/Info.plist
|
152
|
+
homepage: https://github.com/louie007/commandly
|
153
|
+
licenses:
|
154
|
+
- MIT
|
155
|
+
metadata: {}
|
156
|
+
post_install_message:
|
157
|
+
rdoc_options: []
|
158
|
+
require_paths:
|
159
|
+
- lib
|
160
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
161
|
+
requirements:
|
162
|
+
- - ">="
|
163
|
+
- !ruby/object:Gem::Version
|
164
|
+
version: '0'
|
165
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
166
|
+
requirements:
|
167
|
+
- - ">="
|
168
|
+
- !ruby/object:Gem::Version
|
169
|
+
version: '0'
|
170
|
+
requirements: []
|
171
|
+
rubyforge_project:
|
172
|
+
rubygems_version: 2.5.1
|
173
|
+
signing_key:
|
174
|
+
specification_version: 4
|
175
|
+
summary: A ruby gem for creating iOS & Android project from template
|
176
|
+
test_files: []
|