faction 1.0.0 → 1.0.1

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: a931eff98f4c85176316bb01e874a499ff64119e
4
- data.tar.gz: 33ad1322fefac0622f9043cca4eece16092eb8ab
3
+ metadata.gz: 1f1ca35d8a221707263110bcca33049c689ed3eb
4
+ data.tar.gz: e1d09d37d9586b529cfcd542a886cec014b295bd
5
5
  SHA512:
6
- metadata.gz: 104284e288f39af5d3f9e2d4ce787c2834914de352b92cfa91b0ceaffafc2c35f88c90274c07a3a6056d11523ef942545ac9d8acf4b86fa89b7685801122ee25
7
- data.tar.gz: 6d08fdedba41b27d5273a693ffebbaad304fbeee69a283180a4edcdbbf6a3ccee6571a64764faf0e389c4a927ba60d6aa07b69b299c10707c23873810dfa17a4
6
+ metadata.gz: 0b16390ecd4f8b9c3e8081d368c78d22b9268c490d92ee565631f9a3be8b8ca26854bfe0b2a5991528c2aac5ef7896c1bb0080f46e0fbb0115163b6a73156078
7
+ data.tar.gz: 9a46d4663ca5882da3edbad675ffb079cdae9964dced03d976218840cf6642d442bd0a0bb6d5b988dfde8f141e59cdb48cb734cb6cdb2c2ed06944e47566959f
@@ -1,4 +1,4 @@
1
- Copyright (c) 2013 Olli Helenius
1
+ Copyright (c) 2013 Onesto Services Oy
2
2
 
3
3
  MIT License
4
4
 
data/README.md CHANGED
@@ -39,3 +39,7 @@ end
39
39
  3. Commit your changes (`git commit -am 'Add some feature'`)
40
40
  4. Push to the branch (`git push origin my-new-feature`)
41
41
  5. Create new Pull Request
42
+
43
+ ## License
44
+
45
+ Faction is released under the [MIT License](http://opensource.org/licenses/MIT).
@@ -80,7 +80,7 @@ module Faction #:nodoc:
80
80
  authenticated_crowd_call(:authenticate_principal,
81
81
  { 'auth:application' => app_name,
82
82
  'auth:name' => name,
83
- 'auth:credential' => {'auth:credential' => password},
83
+ 'auth:credential' => {'auth:credential' => password, 'auth:encryptedCredential' => false},
84
84
  'auth:validationFactors' => convert_validation_factors(validation_factors)})
85
85
  end
86
86
 
@@ -1,3 +1,3 @@
1
1
  module Faction
2
- VERSION = '1.0.0'
2
+ VERSION = '1.0.1'
3
3
  end
metadata CHANGED
@@ -1,55 +1,55 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: faction
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Olli Helenius
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-05-15 00:00:00.000000000 Z
11
+ date: 2014-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.3'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.3'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - '>='
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - '>='
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: savon
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - <
45
+ - - "<"
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0.8'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - <
52
+ - - "<"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0.8'
55
55
  description: A simple Savon-based client for Atlassian Crowd SOAP API
@@ -59,7 +59,7 @@ executables: []
59
59
  extensions: []
60
60
  extra_rdoc_files: []
61
61
  files:
62
- - .gitignore
62
+ - ".gitignore"
63
63
  - Gemfile
64
64
  - LICENSE.txt
65
65
  - README.md
@@ -78,17 +78,17 @@ require_paths:
78
78
  - lib
79
79
  required_ruby_version: !ruby/object:Gem::Requirement
80
80
  requirements:
81
- - - '>='
81
+ - - ">="
82
82
  - !ruby/object:Gem::Version
83
83
  version: '0'
84
84
  required_rubygems_version: !ruby/object:Gem::Requirement
85
85
  requirements:
86
- - - '>='
86
+ - - ">="
87
87
  - !ruby/object:Gem::Version
88
88
  version: '0'
89
89
  requirements: []
90
90
  rubyforge_project:
91
- rubygems_version: 2.0.3
91
+ rubygems_version: 2.2.2
92
92
  signing_key:
93
93
  specification_version: 4
94
94
  summary: A simple Savon-based client for Atlassian Crowd SOAP API