motion-screenshots 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/motion/motion-screenshots.rb +1 -1
- data/motion-screenshots.gemspec +1 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 02d6f0fa7d8d44cb3b0e2b1a89b2cdf3733546b2
|
4
|
+
data.tar.gz: 9093ab4e06a885d7ec590f73526b196157ff7e09
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91409adec0e4bb20fff6c469f82e749a0f575ece400409354ec1e5ef77c514ff9e6283265dc2ee0388b13d90806acdc41f897c55cda4d5bb6b9f0415f5ec097a
|
7
|
+
data.tar.gz: 649b937670aff8f7953df4f650fa9ced36b1515a49faaf8f7dee493063b3881a5c409beb5d0e6ebc938d16708c68461258c0be83c52b6d6db647ea3d1b84116f
|
@@ -66,7 +66,7 @@ module Motion
|
|
66
66
|
|
67
67
|
@started = true
|
68
68
|
|
69
|
-
@documents_path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, true)[0]
|
69
|
+
@documents_path = String.new(NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, true)[0])
|
70
70
|
screenshot_path = File.join(@documents_path, SCREENSHOTS_BASE_FOLDER)
|
71
71
|
screenshot_path = File.join(screenshot_path, group_by_block.call) if @group_by_block
|
72
72
|
self.screenshotsURL = NSURL.fileURLWithPath(screenshot_path)
|
data/motion-screenshots.gemspec
CHANGED
@@ -1,9 +1,8 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
|
-
VERSION = "0.0.4"
|
3
2
|
|
4
3
|
Gem::Specification.new do |spec|
|
5
4
|
spec.name = "motion-screenshots"
|
6
|
-
spec.version =
|
5
|
+
spec.version = "0.0.5"
|
7
6
|
spec.authors = ["Clay Allsopp"]
|
8
7
|
spec.email = ["clay@usepropeller.com"]
|
9
8
|
spec.description = "Take screenshots with RubyMotion"
|