frameit 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -0
- data/lib/frameit/editor.rb +7 -1
- data/lib/frameit/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8fc80e3035dd12fc1e55740bf956dd18c08dccd2
|
4
|
+
data.tar.gz: 72aefc14f8388198c7077d96da8db069f7ca18cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 121999a052db689f826c365145302a48d0696536d25f3b2af9b8fdeeff35f28930b7830d212db46defc4428a3844fad0b1aa36fc466467d3815a2ae3541568ac
|
7
|
+
data.tar.gz: 582ac68fa0d8c95703f276483f12ea4a417a55c836d930a2adc1a6faf5a2632379ab18697446c752e5e78dfd6fefe3113b70d1d0ea5aa27ee433dd50b4369a78
|
data/README.md
CHANGED
@@ -86,6 +86,13 @@ To run the setup process again to add new frames use:
|
|
86
86
|
|
87
87
|
# Tips
|
88
88
|
|
89
|
+
## Other helpful tools
|
90
|
+
Check out other tools in this collection to speed up your deployment process:
|
91
|
+
- [```deliver```](https://github.com/KrauseFx/deliver): Deploy screenshots, app metadata and app updates to the App Store using just one command
|
92
|
+
- [```snapshot```](https://github.com/KrauseFx/snapshot): Create hundreds of screenshots of your iPhone app... while doing something else
|
93
|
+
- [```PEM```](https://github.com/KrauseFx/pem): Tired of manually creating and maintaining your push certification profiles?
|
94
|
+
|
95
|
+
|
89
96
|
## Generate screenshots
|
90
97
|
Check out [```Snapshot```](https://github.com/KrauseFx/snapshot) to automatically generate screenshots using ```UI Automation```.
|
91
98
|
|
data/lib/frameit/editor.rb
CHANGED
@@ -15,7 +15,13 @@ module Frameit
|
|
15
15
|
|
16
16
|
def initialize
|
17
17
|
converter = FrameConverter.new
|
18
|
-
|
18
|
+
unless converter.frames_exist?
|
19
|
+
# First run
|
20
|
+
converter.run
|
21
|
+
else
|
22
|
+
# Just make sure, the PSD files are converted to PNG
|
23
|
+
converter.convert_frames
|
24
|
+
end
|
19
25
|
end
|
20
26
|
|
21
27
|
def run(path, color = Color::BLACK)
|
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.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-11-
|
11
|
+
date: 2014-11-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|