azure-acs 0.1.0 → 0.1.1

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.
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ NjllMGVlN2QxZmMxZjgyZmE1MzEwYTY3OGJlOTM0NTBiYmZhOWY1Yg==
5
+ data.tar.gz: !binary |-
6
+ OGNkYWJjY2VhYmUwYzFjMmMwNGRjMmMwZDJjZTM5MjU4MWIzY2ViYQ==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ YmRkMDAwY2RlNDZiNTAyOTUzMTAwODMzODVjNTQ4NjUwYWU2OTU0MDU4MGE4
10
+ ZDlkZDkxZGNhOWE2M2I1YmZhNWMxMjYwZWI4NzkwZjRiNDhmNzNiMGIxYzg2
11
+ YjBjMmI2NDJjZTJlNTc0Y2E5YzUzY2JjOTBmYmE1MTBjYmVjMzk=
12
+ data.tar.gz: !binary |-
13
+ NmEzNjNmNjEwYzgzOWMzN2JkMjQxYWYxNGY3M2RjYTBiNGZmOWE2Nzk0Zjcx
14
+ NTA5NTEyMjIxMjU5YmIwZTQwYzQ5YWY2ODdmMDY2NDEyZTZhYjdjMzllYzA5
15
+ M2EzNzAyOWY0NmExMzBkZWJhMDU1NGZhZjdjMWUzNDE3OWVlMGI=
data/.gitignore CHANGED
@@ -9,3 +9,4 @@
9
9
  #Other
10
10
  .DS_Store
11
11
  *.gem
12
+ Gemfile.lock
@@ -0,0 +1,8 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.2
4
+ - 1.9.3
5
+ - 2.0.0
6
+ - rbx-19mode
7
+ - jruby-19mode
8
+ script: bundle exec rspec spec
data/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Azure-ACS #
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/azure-acs.png)](http://badge.fury.io/rb/azure-acs)
4
+ [![Code Climate](https://codeclimate.com/github/kbeckman/azure-acs.png)](https://codeclimate.com/github/kbeckman/azure-acs)
5
+ [![Build Status](https://travis-ci.org/kbeckman/azure-acs.png?branch=development)](https://travis-ci.org/kbeckman/azure-acs)
6
+
3
7
  Azure-ACS is a lightweight Ruby client library that exposes some some of the access control features
4
8
  of Microsoft's [Windows Azure Active Directory](http://www.windowsazure.com/en-us/solutions/identity/)
5
9
  (formerly Access Control Service).
@@ -11,7 +11,7 @@ Gem::Specification.new do |gem|
11
11
  gem.email = ['kbeckman.c4sc@gmail.com']
12
12
  gem.homepage = 'https://github.com/kbeckman/azure-acs'
13
13
 
14
- gem.add_runtime_dependency 'typhoeus', '~> 0.4.2'
14
+ gem.add_runtime_dependency 'typhoeus'
15
15
 
16
16
  gem.add_development_dependency 'rspec'
17
17
 
@@ -1,5 +1,5 @@
1
1
  module Azure
2
2
  module Acs
3
- VERSION = '0.1.0'
3
+ VERSION = '0.1.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,36 +1,32 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: azure-acs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
5
- prerelease:
4
+ version: 0.1.1
6
5
  platform: ruby
7
6
  authors:
8
7
  - Keith Beckman
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-06-13 00:00:00.000000000 Z
11
+ date: 2013-08-07 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: typhoeus
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ~>
17
+ - - ! '>='
20
18
  - !ruby/object:Gem::Version
21
- version: 0.4.2
19
+ version: '0'
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ~>
24
+ - - ! '>='
28
25
  - !ruby/object:Gem::Version
29
- version: 0.4.2
26
+ version: '0'
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: rspec
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
31
  - - ! '>='
36
32
  - !ruby/object:Gem::Version
@@ -38,7 +34,6 @@ dependencies:
38
34
  type: :development
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
38
  - - ! '>='
44
39
  - !ruby/object:Gem::Version
@@ -51,8 +46,8 @@ extensions: []
51
46
  extra_rdoc_files: []
52
47
  files:
53
48
  - .gitignore
49
+ - .travis.yml
54
50
  - Gemfile
55
- - Gemfile.lock
56
51
  - LICENSE.txt
57
52
  - README.md
58
53
  - Rakefile
@@ -64,27 +59,26 @@ files:
64
59
  - spec/spec_helper.rb
65
60
  homepage: https://github.com/kbeckman/azure-acs
66
61
  licenses: []
62
+ metadata: {}
67
63
  post_install_message:
68
64
  rdoc_options: []
69
65
  require_paths:
70
66
  - lib
71
67
  required_ruby_version: !ruby/object:Gem::Requirement
72
- none: false
73
68
  requirements:
74
69
  - - ! '>='
75
70
  - !ruby/object:Gem::Version
76
71
  version: '0'
77
72
  required_rubygems_version: !ruby/object:Gem::Requirement
78
- none: false
79
73
  requirements:
80
74
  - - ! '>='
81
75
  - !ruby/object:Gem::Version
82
76
  version: '0'
83
77
  requirements: []
84
78
  rubyforge_project:
85
- rubygems_version: 1.8.25
79
+ rubygems_version: 2.0.6
86
80
  signing_key:
87
- specification_version: 3
81
+ specification_version: 4
88
82
  summary: Azure Active Directory ACS Ruby client library.
89
83
  test_files:
90
84
  - spec/azure-acs/idp_feed_spec.rb
@@ -1,30 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- azure-acs (0.1.0)
5
- typhoeus (~> 0.4.2)
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- diff-lcs (1.1.3)
11
- ffi (1.9.0)
12
- mime-types (1.23)
13
- rspec (2.12.0)
14
- rspec-core (~> 2.12.0)
15
- rspec-expectations (~> 2.12.0)
16
- rspec-mocks (~> 2.12.0)
17
- rspec-core (2.12.2)
18
- rspec-expectations (2.12.1)
19
- diff-lcs (~> 1.1.3)
20
- rspec-mocks (2.12.2)
21
- typhoeus (0.4.2)
22
- ffi (~> 1.0)
23
- mime-types (~> 1.18)
24
-
25
- PLATFORMS
26
- ruby
27
-
28
- DEPENDENCIES
29
- azure-acs!
30
- rspec