second_curtain 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- M2Y3OThiZGFkNWNiNzI5ZDNjMDA4ZDIxMWNjNjNlZWM5OGNiY2JmMQ==
5
- data.tar.gz: !binary |-
6
- ZGE0NzZjZTZkMGZhNWEwOWYxM2FlYzVmYzRlNDgxZDA4MDIxNmI5ZQ==
2
+ SHA1:
3
+ metadata.gz: 48a1957b68a022234c2ab0848298f999ac720993
4
+ data.tar.gz: 6a169fbb1aaed392b8fe5049b2e71dd9698157d2
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- MGE5NjE1MjNkMDk0YTE5NWZjOTY4ZTg0MDk3MTgzMDUwNDcxYzc5NzVhM2Jm
10
- ZjU5ZjFmYjBjZTQ3NDFhNzJlZDYxYjgyZGNkZWZmY2JkZjg4Mjk5MGQzMWMx
11
- NDJjNjI4Y2YwYTM1NjkwNThmOTYyYmIwOTk1ZDQ0YTMzOGQzNDA=
12
- data.tar.gz: !binary |-
13
- M2FiZDIwMTk3OTJhY2UyNGJiZjQyODIyZDU5MDU2ZTI3YTRiNWZmYTIxY2Yy
14
- YWVjYjcxOTM2ZTJhODI3YmZlMmVlZWY5YzU2ZDJlM2QzODcwYmIyNjZlMmY5
15
- YmI1MmQxYTNiMGRlYTVhZTFmYzc1ZDA5YjVjMTBkYjYxYWEyNWU=
6
+ metadata.gz: ea38a0d0c42093cc9f8adcd459c210d3ab7f91b708cac7071617b04ffa1ecac8abb23eb3c3aecca0b616aca3d99eb58dd5cfd13ce1a53729c31821f171fc5717
7
+ data.tar.gz: a453eeadc5dc7d77a78f74959304a4bc7212b0da29c7a81ce6f56407f140f5940d5f68a7742a8c947740b53db5a28635fe1b806c41c42a664268f0d4bc5b2b69
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.2.4
2
+
3
+ - Fixes problem with missing `aws-sdk` gem. [@ashfurrow](http://github.com/AshFurrow)
4
+
1
5
  ## 0.2.3
2
6
 
3
7
  - Changed gemspec syntax. [@ashfurrow](http://github.com/AshFurrow)
@@ -1,4 +1,4 @@
1
- require 'aws-sdk'
1
+ require 'aws-sdk-v1'
2
2
  require 'date'
3
3
  require 'pathname'
4
4
  require 'uri'
@@ -1,4 +1,4 @@
1
- require 'aws-sdk'
1
+ require 'aws-sdk-v1'
2
2
  require 'second_curtain/upload'
3
3
  require 'second_curtain/web_preview'
4
4
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'second_curtain'
3
- s.version = '0.2.3'
3
+ s.version = '0.2.4'
4
4
  s.licenses = ['MIT']
5
5
  s.summary = "Upload failing iOS snapshot tests cases to S3."
6
6
  s.description =
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: second_curtain
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ash Furrow
@@ -9,37 +9,37 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-08-27 00:00:00.000000000 Z
12
+ date: 2014-09-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: aws-sdk-v1
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - ~>
18
+ - - "~>"
19
19
  - !ruby/object:Gem::Version
20
20
  version: '1.52'
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
- - - ~>
25
+ - - "~>"
26
26
  - !ruby/object:Gem::Version
27
27
  version: '1.52'
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: mustache
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - ~>
32
+ - - "~>"
33
33
  - !ruby/object:Gem::Version
34
34
  version: '0.99'
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
- - - ~>
39
+ - - "~>"
40
40
  - !ruby/object:Gem::Version
41
41
  version: '0.99'
42
- description: ! "\n If you're using the cool FBSnapshotTestCase to test your iOS view
42
+ description: "\n If you're using the cool FBSnapshotTestCase to test your iOS view
43
43
  logic, awesome! Even better if you have continuous integration, like on Travis,
44
44
  to automate running those tests!\n\n Wouldn't it be awesome if we could upload
45
45
  the failing test snapshots somewhere, so we can see exactly what's wrong? That's
@@ -50,8 +50,8 @@ executables:
50
50
  extensions: []
51
51
  extra_rdoc_files: []
52
52
  files:
53
- - .gitignore
54
- - .travis.yml
53
+ - ".gitignore"
54
+ - ".travis.yml"
55
55
  - CHANGELOG
56
56
  - Demo/Demo.xcodeproj/project.pbxproj
57
57
  - Demo/Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata
@@ -384,17 +384,17 @@ require_paths:
384
384
  - lib
385
385
  required_ruby_version: !ruby/object:Gem::Requirement
386
386
  requirements:
387
- - - ! '>='
387
+ - - ">="
388
388
  - !ruby/object:Gem::Version
389
389
  version: '0'
390
390
  required_rubygems_version: !ruby/object:Gem::Requirement
391
391
  requirements:
392
- - - ! '>='
392
+ - - ">="
393
393
  - !ruby/object:Gem::Version
394
394
  version: '0'
395
395
  requirements: []
396
396
  rubyforge_project:
397
- rubygems_version: 2.4.1
397
+ rubygems_version: 2.2.2
398
398
  signing_key:
399
399
  specification_version: 4
400
400
  summary: Upload failing iOS snapshot tests cases to S3.