yopass 3.0.1 → 3.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 86167315bba55c7415e507e000b9ccc6074deb94
4
- data.tar.gz: 7bd8e5b564f344bf5c333de0c9600eb8b4701fe6
3
+ metadata.gz: 38bfd21b1769567fd8eedf1cff9e720cf91d28a7
4
+ data.tar.gz: aaf9271845e4fdc9ec7ea78b6c35f88fb09d74b0
5
5
  SHA512:
6
- metadata.gz: bb29c321265cda60aad9d4fb5223352edfd27d6177152a931bf1e2e11516c20e1a761f3fc2089c2b3acb6dbb1b582338ca72aa7d1113de00822659396b3cf918
7
- data.tar.gz: b60d9be97b500d94239b6861a4326606d9e2f9ddac3450328391c4d422c29cd3b018475690199e04ba9d05c0fed1261800cfcdf0ddffff9940333a4504aa0fb5
6
+ metadata.gz: 98a41f020a094716e60006051d39b8fe4b471b9b20cd61ad4abdaf4df34a918409a1f1811add8d9e8b748c0a6cc0245609b073526e5968c25c64806052d3601c
7
+ data.tar.gz: 665e693f4b1736b22cd7e8d910ce89bf7c014f49dccdb5ab1bc5196b7e960a326389aff7c9bd21cdab7f8c2dc195993d8390312d45385445aa9abf57b0030913
data/.gemspec CHANGED
@@ -1,7 +1,7 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  Gem::Specification.new do |s|
3
3
  s.name = 'yopass'
4
- s.version = '3.0.1'
4
+ s.version = '3.0.3'
5
5
  s.author = 'Johan Haals'
6
6
  s.email = 'johan@haals.se'
7
7
  s.homepage = 'https://github.com/jhaals/yopass'
data/.gitignore CHANGED
@@ -2,3 +2,4 @@
2
2
  .bundle
3
3
  vendor
4
4
  coverage
5
+ Gemfile.lock
@@ -1,4 +1,13 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 1.9.3
4
- - 2.0.0
3
+ - 1.9.3
4
+ - 2.0.0
5
+ deploy:
6
+ provider: rubygems
7
+ gemspec: .gemspec
8
+ api_key:
9
+ secure: ko/Qz+/kwTBggJxw24IwYzpHoFUTT3LqyxOGkpuMj2BaQ994LNiZP7vaKx1THXc3b7FhRGKmi6KJaiO31wKQqXH13+azkZ777RuEC0Mz9rYLBcOcCFeniOcbLqCgLmFhroG0GhWz/tdP5xSw5bw+6kRO8SjBjyyrDSdrzbz0phw=
10
+ gem: yopass
11
+ on:
12
+ tags: true
13
+ repo: jhaals/yopass
data/Gemfile CHANGED
@@ -1,14 +1,3 @@
1
1
  # Generated from /Users/jhaals/src/yopass/.gemspec
2
2
  source :gemcutter
3
- gem "encryptor", "~> 1.3"
4
- gem "memcached", "~> 1.8"
5
- gem "rack", "~> 1.5"
6
- gem "sinatra", "~> 1.4"
7
- gem "sinatra-contrib", "~> 1.4"
8
- gem "thin", "~> 1.6"
9
- gem "yopass", :path => '.'
10
-
11
- group :development do
12
- gem "rake", "~> 10.4"
13
- gem "rspec", "~> 3.0"
14
- end
3
+ gemspec
data/README.md CHANGED
@@ -6,7 +6,7 @@ The sole purpose of yopass is to minimize the amount of passwords floating aroun
6
6
 
7
7
  You can easily integrate yopass into other systems using it's API and host it yourself.
8
8
 
9
- __[Demo site available here](http://yopass.jhaals.se)__
9
+ __[Demo site available here](https://yopass.se)__
10
10
 
11
11
  * AES-256 encryption
12
12
  * Secrets can only be viewed once
@@ -24,7 +24,7 @@ app.controller('ViewController', function($scope, $routeParams, $http) {
24
24
  .success(function(data, status, headers, config) {
25
25
  $scope.error = false;
26
26
  $scope.invalidPassword = false;
27
- $scope.secret = data.secret
27
+ $scope.secret = data.secret;
28
28
  })
29
29
  .error(function(data, status, headers, config) {
30
30
  if(status == 401) {
@@ -32,7 +32,7 @@ app.controller('ViewController', function($scope, $routeParams, $http) {
32
32
  return;
33
33
  }
34
34
  $scope.invalidPassword = false;
35
- $scope.error = data.message
35
+ $scope.error = false;
36
36
  });
37
37
  };
38
38
  if ($routeParams.decryption_key) {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yopass
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Johan Haals
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-13 00:00:00.000000000 Z
11
+ date: 2015-02-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: encryptor
@@ -125,7 +125,6 @@ files:
125
125
  - ".travis.yml"
126
126
  - Dockerfile
127
127
  - Gemfile
128
- - Gemfile.lock
129
128
  - LICENSE
130
129
  - README.md
131
130
  - Rakefile
@@ -1,61 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- yopass (3.0.0)
5
- encryptor (~> 1.3)
6
- memcached (~> 1.8)
7
- rack (>= 1.5.0, < 1.6)
8
- sinatra (~> 1.4)
9
- sinatra-contrib (~> 1.4)
10
-
11
- GEM
12
- remote: http://rubygems.org/
13
- specs:
14
- backports (3.6.4)
15
- diff-lcs (1.2.5)
16
- encryptor (1.3.0)
17
- memcached (1.8.0)
18
- multi_json (1.10.1)
19
- rack (1.5.2)
20
- rack-protection (1.5.3)
21
- rack
22
- rack-test (0.6.3)
23
- rack (>= 1.0)
24
- rake (10.4.2)
25
- rspec (3.1.0)
26
- rspec-core (~> 3.1.0)
27
- rspec-expectations (~> 3.1.0)
28
- rspec-mocks (~> 3.1.0)
29
- rspec-core (3.1.7)
30
- rspec-support (~> 3.1.0)
31
- rspec-expectations (3.1.2)
32
- diff-lcs (>= 1.2.0, < 2.0)
33
- rspec-support (~> 3.1.0)
34
- rspec-mocks (3.1.3)
35
- rspec-support (~> 3.1.0)
36
- rspec-support (3.1.2)
37
- sinatra (1.4.5)
38
- rack (~> 1.4)
39
- rack-protection (~> 1.4)
40
- tilt (~> 1.3, >= 1.3.4)
41
- sinatra-contrib (1.4.2)
42
- backports (>= 2.0)
43
- multi_json
44
- rack-protection
45
- rack-test
46
- sinatra (~> 1.4.0)
47
- tilt (~> 1.3)
48
- tilt (1.4.1)
49
-
50
- PLATFORMS
51
- ruby
52
-
53
- DEPENDENCIES
54
- encryptor (~> 1.3)
55
- memcached (~> 1.8)
56
- rack (~> 1.5)
57
- rake (~> 10.4)
58
- rspec (~> 3.0)
59
- sinatra (~> 1.4)
60
- sinatra-contrib (~> 1.4)
61
- yopass!