yamg 0.5.5 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a8a4301b4c159c904ddaf0be5071ddf331a38d62
4
- data.tar.gz: e830d33b8c1e1919c352ba50a1186ac627d7e65d
3
+ metadata.gz: ea2af2466a0be2bd19d662ac535e91141561885c
4
+ data.tar.gz: e8e476e0dbd514847c84a610ff6b476835b49f4a
5
5
  SHA512:
6
- metadata.gz: d4e653fd67d279270853ae6214618a233b16924bb58779fec253e60f4681a38d445e548ac09fc78a88fad91233f260f6d2ff6cdfbcf883220bb2317e4ebdb798
7
- data.tar.gz: bdc391742aad46a0952f559be5e32d047c0b55647de6ede61ccbcc998716de07ee2e4bde8ec8b0103380d396b397cf608195cd0c6e9232766b720cdadc94239a
6
+ metadata.gz: 07366d9eb34c732f995bc9360dafa4e3070e89eb3b48cc09d000251329a39bfdfa6e8a2b8839f8821cdceb4dc50447632919edcace6eb1953a2379c448700862
7
+ data.tar.gz: 72db71cf31c0f84160fdec41fba80a85be88062c611b6575d8a77072a82b5ec2cb1e6377485401911b280141ef6772b1522dd6c0e39a9eb80dcdee9bedeeee2e
data/README.md CHANGED
@@ -61,7 +61,7 @@ First time
61
61
 
62
62
  yamg init
63
63
 
64
- A `.yamg.yml` will be created on the folder.
64
+ The config file `yamg.yml` will be created on the folder.
65
65
  From now on to recompile everything when needed:
66
66
 
67
67
  yamg
@@ -84,7 +84,7 @@ art
84
84
 
85
85
  ```
86
86
 
87
- From the `.yamg.yml` you may configure differents source paths.
87
+ From the `yamg.yml` file you may configure differents source paths.
88
88
  Also configure every export location you need (check #Support)
89
89
 
90
90
 
data/lib/yamg.rb CHANGED
@@ -14,7 +14,7 @@ module YAMG
14
14
  autoload :Splash, 'yamg/splash'
15
15
  autoload :Screenshot, 'yamg/screenshot'
16
16
 
17
- CONFIG_FILE = './.yamg.yml'.freeze
17
+ CONFIG_FILE = './yamg.yml'.freeze
18
18
  # Load template works
19
19
  TEMPLATES = YAML.load_file(
20
20
  File.join(File.dirname(__FILE__), 'yamg', 'templates.yaml')
@@ -26,6 +26,10 @@ android:
26
26
  'res/drawable-hdpi/icon.png': 72
27
27
  'res/drawable-xhdpi/icon.png': 96
28
28
  'res/drawable-xxhdpi/icon.png': 144
29
+ 'res/mipmap-ldpi/icon.png': 48
30
+ 'res/mipmap-mdpi/icon.png': 72
31
+ 'res/mipmap-hdpi/icon.png': 96
32
+ 'res/mipmap-xhdpi/icon.png': 144
29
33
  'bin/res/drawable/icon.png': 96
30
34
  'bin/res/drawable-ldpi/icon.png': 36
31
35
  'bin/res/drawable-mdpi/icon.png': 48
@@ -224,18 +228,19 @@ apple:
224
228
  splash:
225
229
  'apple/splash1024x768.png': [1024, 768]
226
230
  screenshots:
227
- 'apple/ipad-1024x768-land': [1024, 768]
231
+ 'apple/5-5-inch-iphone6plus-2208x1242-land': [2208, 1242]
232
+ 'apple/5-5-inch-iphone6plus-1242x2208-land': [1242, 2208]
233
+ 'apple/4-7-inch-iphone6-1334x750-land': [1334, 750, 2]
234
+ 'apple/4-7-inch-iphone6-750x1334-port': [750, 1334, 2]
235
+ 'apple/4-inch-iphone5-1136x640-land': [1136, 640, 2]
236
+ 'apple/4-inch-iphone5-640x1136-port': [640, 1136, 2]
237
+ 'apple/3-5-inch-iphone4-960x640-land': [960, 640]
238
+ 'apple/3-5-inch-iphone4-640x960-port': [640, 960]
239
+ 'apple/12-9-inch-ipadretina-2048x1536-land': [2048, 1536, 2]
240
+ 'apple/12-9-inch-ipadretina-2048x1536-port': [1536, 2048, 2]
228
241
  'apple/ipad-1024x768-port': [768, 1024]
229
- 'apple/ipadretina-2048x1536-land': [2048, 1536, 2]
230
- 'apple/ipadretina-2048x1536-port': [1536, 2048, 2]
231
- 'apple/iphone4-960x640-land': [960, 640]
232
- 'apple/iphone4-640x960-port': [640, 960]
233
- 'apple/iphone5-1136x640-land': [1136, 640, 2]
234
- 'apple/iphone5-640x1136-port': [640, 1136, 2]
235
- 'apple/iphone6p-1080x1920-port': [1080, 1920, 2]
236
- 'apple/iphone6p-1920x1080-land': [1920, 1080, 2]
237
- 'apple/iphone6-1334x750-land': [1334, 750, 2]
238
- 'apple/iphone6-750x1334-port': [750, 1334, 2]
242
+ 'apple/ipad-1024x768-land': [1024, 768]
243
+
239
244
 
240
245
 
241
246
  google:
data/lib/yamg/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  # :nodoc:
2
2
  module YAMG
3
- VERSION = '0.5.5'.freeze
3
+ VERSION = '1.0.7'.freeze
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yamg
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.5
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marcos Piccinini
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-07 00:00:00.000000000 Z
11
+ date: 2016-11-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mini_magick
@@ -109,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
109
  version: '0'
110
110
  requirements: []
111
111
  rubyforge_project:
112
- rubygems_version: 2.6.6
112
+ rubygems_version: 2.5.1
113
113
  signing_key:
114
114
  specification_version: 4
115
115
  summary: Yet another media generator