gpis 0.0.2 → 0.0.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.
- data/.idea/workspace.xml +12 -9
- data/README.md +7 -1
- data/lib/gpis.rb +4 -0
- data/lib/gpis/version.rb +1 -1
- metadata +1 -1
data/.idea/workspace.xml
CHANGED
@@ -1,10 +1,12 @@
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
2
|
<project version="4">
|
3
3
|
<component name="ChangeListManager">
|
4
|
-
<list default="true" id="5a7cce55-79e3-449d-ab1c-02d21d595272" name="Default" comment="">
|
4
|
+
<list default="true" id="5a7cce55-79e3-449d-ab1c-02d21d595272" name="Default" comment="added code">
|
5
5
|
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/gpis.iml" afterPath="$PROJECT_DIR$/.idea/gpis.iml" />
|
6
6
|
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/workspace.xml" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
|
7
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/README.md" afterPath="$PROJECT_DIR$/README.md" />
|
7
8
|
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/gpis.gemspec" afterPath="$PROJECT_DIR$/gpis.gemspec" />
|
9
|
+
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/gpis.rb" afterPath="$PROJECT_DIR$/lib/gpis.rb" />
|
8
10
|
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/lib/gpis/version.rb" afterPath="$PROJECT_DIR$/lib/gpis/version.rb" />
|
9
11
|
</list>
|
10
12
|
<ignored path="gpis.iws" />
|
@@ -27,7 +29,7 @@
|
|
27
29
|
<file leaf-file-name="gpis.rb" pinned="false" current="false" current-in-tab="false">
|
28
30
|
<entry file="file://$PROJECT_DIR$/lib/gpis.rb">
|
29
31
|
<provider selected="true" editor-type-id="text-editor">
|
30
|
-
<state line="
|
32
|
+
<state line="10" column="32" selection-start="179" selection-end="179" vertical-scroll-proportion="0.0">
|
31
33
|
<folding />
|
32
34
|
</state>
|
33
35
|
</provider>
|
@@ -36,7 +38,7 @@
|
|
36
38
|
<file leaf-file-name="README.md" pinned="false" current="false" current-in-tab="false">
|
37
39
|
<entry file="file://$PROJECT_DIR$/README.md">
|
38
40
|
<provider selected="true" editor-type-id="text-editor">
|
39
|
-
<state line="
|
41
|
+
<state line="26" column="0" selection-start="428" selection-end="428" vertical-scroll-proportion="0.0">
|
40
42
|
<folding />
|
41
43
|
</state>
|
42
44
|
</provider>
|
@@ -111,8 +113,9 @@
|
|
111
113
|
<list>
|
112
114
|
<option value="$PROJECT_DIR$/lib/gpis/gpis_scraper.rb" />
|
113
115
|
<option value="$PROJECT_DIR$/lib/gpis/gpis_app_info.rb" />
|
114
|
-
<option value="$PROJECT_DIR$/lib/gpis.rb" />
|
115
116
|
<option value="$PROJECT_DIR$/gpis.gemspec" />
|
117
|
+
<option value="$PROJECT_DIR$/README.md" />
|
118
|
+
<option value="$PROJECT_DIR$/lib/gpis.rb" />
|
116
119
|
<option value="$PROJECT_DIR$/lib/gpis/version.rb" />
|
117
120
|
</list>
|
118
121
|
</option>
|
@@ -385,23 +388,23 @@
|
|
385
388
|
</state>
|
386
389
|
</provider>
|
387
390
|
</entry>
|
388
|
-
<entry file="file://$PROJECT_DIR$/
|
391
|
+
<entry file="file://$PROJECT_DIR$/gpis.gemspec">
|
389
392
|
<provider selected="true" editor-type-id="text-editor">
|
390
|
-
<state line="
|
393
|
+
<state line="18" column="31" selection-start="934" selection-end="934" vertical-scroll-proportion="0.0">
|
391
394
|
<folding />
|
392
395
|
</state>
|
393
396
|
</provider>
|
394
397
|
</entry>
|
395
398
|
<entry file="file://$PROJECT_DIR$/lib/gpis.rb">
|
396
399
|
<provider selected="true" editor-type-id="text-editor">
|
397
|
-
<state line="
|
400
|
+
<state line="10" column="32" selection-start="179" selection-end="179" vertical-scroll-proportion="0.0">
|
398
401
|
<folding />
|
399
402
|
</state>
|
400
403
|
</provider>
|
401
404
|
</entry>
|
402
|
-
<entry file="file://$PROJECT_DIR$/
|
405
|
+
<entry file="file://$PROJECT_DIR$/README.md">
|
403
406
|
<provider selected="true" editor-type-id="text-editor">
|
404
|
-
<state line="
|
407
|
+
<state line="26" column="0" selection-start="428" selection-end="428" vertical-scroll-proportion="0.0">
|
405
408
|
<folding />
|
406
409
|
</state>
|
407
410
|
</provider>
|
data/README.md
CHANGED
@@ -18,7 +18,13 @@ Or install it yourself as:
|
|
18
18
|
|
19
19
|
## Usage
|
20
20
|
|
21
|
-
|
21
|
+
begin
|
22
|
+
appInfo = GpisScraper.scrape_info("com.alensw.PicFolder", ['en', 'fr', 'de'])
|
23
|
+
rescue GpisError => e
|
24
|
+
puts "Gpis Tester : An Error Occured : \n #{e.to_s}"
|
25
|
+
end
|
26
|
+
puts "Info: #{appInfo}" unless appInfo.nil?
|
27
|
+
|
22
28
|
|
23
29
|
## Contributing
|
24
30
|
|
data/lib/gpis.rb
CHANGED
data/lib/gpis/version.rb
CHANGED