frameit 0.2.2 → 0.2.3
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/README.md +12 -4
- data/bin/frameit +1 -1
- data/lib/frameit/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 49a03a8ef47e7ef3631c01e475d5e5eed741113c
|
|
4
|
+
data.tar.gz: 12b6e041a7c871ea67c308794cd3ecc3f4ed02ef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 22d624e77549aec6137d33b7f14b1af33dc953c3bdcb6d9711ff39e211c1f93e505f55860056a8ee0567a4cddf0fd15723e225b1e518b77d5dda7c10772681b9
|
|
7
|
+
data.tar.gz: 4acba106ffbf3a2ba83ff9edaaaf031951bd965e54d1f2b77f47fc92986603f848b41041023d21580f7d3be205342671d0afb196b9bd4e5120bfb6eb2cfee953
|
data/README.md
CHANGED
|
@@ -11,7 +11,9 @@
|
|
|
11
11
|
<b>frameit</b> •
|
|
12
12
|
<a href="https://github.com/KrauseFx/PEM">PEM</a> •
|
|
13
13
|
<a href="https://github.com/KrauseFx/sigh">sigh</a> •
|
|
14
|
-
<a href="https://github.com/KrauseFx/produce">produce</a>
|
|
14
|
+
<a href="https://github.com/KrauseFx/produce">produce</a> •
|
|
15
|
+
<a href="https://github.com/KrauseFx/cert">cert</a> •
|
|
16
|
+
<a href="https://github.com/KrauseFx/codes">codes</a>
|
|
15
17
|
</p>
|
|
16
18
|
-------
|
|
17
19
|
|
|
@@ -43,7 +45,7 @@ Get in contact with the developer on Twitter: [@KrauseFx](https://twitter.com/Kr
|
|
|
43
45
|
</p>
|
|
44
46
|
|
|
45
47
|
-------
|
|
46
|
-
<h5 align="center"><code>frameit</code> is part of <a href="
|
|
48
|
+
<h5 align="center"><code>frameit</code> is part of <a href="https://fastlane.tools">fastlane</a>: connect all deployment tools into one streamlined workflow.</h5>
|
|
47
49
|
|
|
48
50
|
|
|
49
51
|
|
|
@@ -54,6 +56,8 @@ Put a gorgeous device frame around your iOS screenshots just by running one simp
|
|
|
54
56
|
- Portrait and Landscape
|
|
55
57
|
- Black and Silver devices
|
|
56
58
|
|
|
59
|
+
##### [Like this tool? Be the first to know about updates and new fastlane tools](https://tinyletter.com/krausefx)
|
|
60
|
+
|
|
57
61
|
Here is a nice gif, that shows ```frameit``` in action:
|
|
58
62
|
|
|
59
63
|

|
|
@@ -101,14 +105,18 @@ To run the setup process again to add new frames use:
|
|
|
101
105
|
|
|
102
106
|
# Tips
|
|
103
107
|
|
|
104
|
-
## [`fastlane`](
|
|
108
|
+
## [`fastlane`](https://fastlane.tools) Toolchain
|
|
105
109
|
|
|
106
|
-
- [`fastlane`](
|
|
110
|
+
- [`fastlane`](https://fastlane.tools): Connect all deployment tools into one streamlined workflow
|
|
107
111
|
- [`deliver`](https://github.com/KrauseFx/deliver): Upload screenshots, metadata and your app to the App Store using a single command
|
|
108
112
|
- [`snapshot`](https://github.com/KrauseFx/snapshot): Automate taking localized screenshots of your iOS app on every device
|
|
109
113
|
- [`PEM`](https://github.com/KrauseFx/pem): Automatically generate and renew your push notification profiles
|
|
110
114
|
- [`sigh`](https://github.com/KrauseFx/sigh): Because you would rather spend your time building stuff than fighting provisioning
|
|
111
115
|
- [`produce`](https://github.com/KrauseFx/produce): Create new iOS apps on iTunes Connect and Dev Portal using the command line
|
|
116
|
+
- [`cert`](https://github.com/KrauseFx/cert): Automatically create and maintain iOS code signing certificates
|
|
117
|
+
- [`codes`](https://github.com/KrauseFx/codes): Create promo codes for iOS Apps using the command line
|
|
118
|
+
|
|
119
|
+
##### [Like this tool? Be the first to know about updates and new fastlane tools](https://tinyletter.com/krausefx)
|
|
112
120
|
|
|
113
121
|
## Generate screenshots
|
|
114
122
|
Check out [```Snapshot```](https://github.com/KrauseFx/snapshot) to automatically generate screenshots using ```UI Automation```.
|
data/bin/frameit
CHANGED
|
@@ -12,7 +12,7 @@ HighLine.track_eof = false
|
|
|
12
12
|
program :version, Frameit::VERSION
|
|
13
13
|
program :description, 'Quickly put your screenshots into the right device frames'
|
|
14
14
|
program :help, 'Author', 'Felix Krause <frameit@krausefx.com>'
|
|
15
|
-
program :help, 'Website', '
|
|
15
|
+
program :help, 'Website', 'https://fastlane.tools'
|
|
16
16
|
program :help, 'GitHub', 'https://github.com/krausefx/frameit'
|
|
17
17
|
program :help_formatter, :compact
|
|
18
18
|
|
data/lib/frameit/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: frameit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-03-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fastlane_core
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '>='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
19
|
+
version: 0.2.0
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '>='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version:
|
|
26
|
+
version: 0.2.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: fastimage
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -166,7 +166,7 @@ files:
|
|
|
166
166
|
- lib/frameit/editor.rb
|
|
167
167
|
- lib/frameit/frame_converter.rb
|
|
168
168
|
- lib/frameit/version.rb
|
|
169
|
-
homepage:
|
|
169
|
+
homepage: https://fastlane.tools
|
|
170
170
|
licenses:
|
|
171
171
|
- MIT
|
|
172
172
|
metadata: {}
|