motion-screenshots 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/motion-screenshots.gemspec +26 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e43840229b076970ea85f5193a255f1ca5d5ead
|
4
|
+
data.tar.gz: 7d4b86135d1ba258d81784ffae52a87fd0647d09
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ff86b4f0d8fe2411c3f88f137695bfd0b5f6dff9148bccfceedb587167c9ac5960a4b1b80187e31a11f0de7547ee1009a025a918c095b41fed1fa69ee12b166
|
7
|
+
data.tar.gz: 667b62a88cb64c517c1933eae57bb9317b1e4b70a9ae85f9d0099cc0bb0f360a3b6550e134e92e5d6c1912ff7e75ec74f582bc16965369abb55cd44595f234a7
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
VERSION = "0.0.4"
|
3
|
+
|
4
|
+
Gem::Specification.new do |spec|
|
5
|
+
spec.name = "motion-screenshots"
|
6
|
+
spec.version = VERSION
|
7
|
+
spec.authors = ["Clay Allsopp"]
|
8
|
+
spec.email = ["clay@usepropeller.com"]
|
9
|
+
spec.description = "Take screenshots with RubyMotion"
|
10
|
+
spec.summary = "Take screenshots with RubyMotion"
|
11
|
+
spec.homepage = "https://github.com/usepropeller/motion-screenshots"
|
12
|
+
spec.license = "MIT"
|
13
|
+
|
14
|
+
files = []
|
15
|
+
files << 'README.md'
|
16
|
+
files.concat(Dir.glob('lib/**/*.rb'))
|
17
|
+
files << 'motion-screenshots.gemspec'
|
18
|
+
spec.files = files
|
19
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
20
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
21
|
+
spec.require_paths = ["lib"]
|
22
|
+
|
23
|
+
spec.add_dependency "motion-cocoapods", "~> 1.4.0"
|
24
|
+
|
25
|
+
spec.add_development_dependency "rake"
|
26
|
+
end
|
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
|
+
version: 0.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Clay Allsopp
|
@@ -48,6 +48,7 @@ files:
|
|
48
48
|
- README.md
|
49
49
|
- lib/motion/motion-screenshots.rb
|
50
50
|
- lib/motion-screenshots.rb
|
51
|
+
- motion-screenshots.gemspec
|
51
52
|
homepage: https://github.com/usepropeller/motion-screenshots
|
52
53
|
licenses:
|
53
54
|
- MIT
|