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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4e43840229b076970ea85f5193a255f1ca5d5ead
4
- data.tar.gz: 7d4b86135d1ba258d81784ffae52a87fd0647d09
3
+ metadata.gz: 02d6f0fa7d8d44cb3b0e2b1a89b2cdf3733546b2
4
+ data.tar.gz: 9093ab4e06a885d7ec590f73526b196157ff7e09
5
5
  SHA512:
6
- metadata.gz: 8ff86b4f0d8fe2411c3f88f137695bfd0b5f6dff9148bccfceedb587167c9ac5960a4b1b80187e31a11f0de7547ee1009a025a918c095b41fed1fa69ee12b166
7
- data.tar.gz: 667b62a88cb64c517c1933eae57bb9317b1e4b70a9ae85f9d0099cc0bb0f360a3b6550e134e92e5d6c1912ff7e75ec74f582bc16965369abb55cd44595f234a7
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].retain
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)
@@ -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 = 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"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: motion-screenshots
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Clay Allsopp