simple_oauth 0.1.3 → 0.1.4

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.
data/.gemtest ADDED
File without changes
data/.gitignore CHANGED
@@ -1,6 +1,7 @@
1
1
  *.rbc
2
2
  .DS_Store
3
3
  .bundle
4
+ Gemfile.lock
4
5
  coverage
5
6
  pkg
6
7
  rdoc
@@ -2,7 +2,7 @@ module SimpleOAuth
2
2
  module Version
3
3
  MAJOR = 0 unless defined? ::SimpleOAuth::Version::MAJOR
4
4
  MINOR = 1 unless defined? ::SimpleOAuth::Version::MINOR
5
- PATCH = 3 unless defined? ::SimpleOAuth::Version::PATCH
5
+ PATCH = 4 unless defined? ::SimpleOAuth::Version::PATCH
6
6
  STRING = [MAJOR, MINOR, PATCH].join('.') unless defined? ::SimpleOAuth::Version::STRING
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,13 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_oauth
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
5
- prerelease: false
6
- segments:
7
- - 0
8
- - 1
9
- - 3
10
- version: 0.1.3
4
+ prerelease:
5
+ version: 0.1.4
11
6
  platform: ruby
12
7
  authors:
13
8
  - Steve Richert
@@ -15,22 +10,19 @@ autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
12
 
18
- date: 2010-11-30 00:00:00 -08:00
13
+ date: 2011-02-03 00:00:00 -05:00
19
14
  default_executable:
20
15
  dependencies:
21
16
  - !ruby/object:Gem::Dependency
17
+ name: mocha
18
+ prerelease: false
22
19
  requirement: &id001 !ruby/object:Gem::Requirement
23
20
  none: false
24
21
  requirements:
25
22
  - - ">="
26
23
  - !ruby/object:Gem::Version
27
- hash: 3
28
- segments:
29
- - 0
30
24
  version: "0"
31
25
  type: :development
32
- name: mocha
33
- prerelease: false
34
26
  version_requirements: *id001
35
27
  description: Simply builds and verifies OAuth headers
36
28
  email: steve.richert@gmail.com
@@ -41,9 +33,9 @@ extensions: []
41
33
  extra_rdoc_files:
42
34
  - README.rdoc
43
35
  files:
36
+ - .gemtest
44
37
  - .gitignore
45
38
  - Gemfile
46
- - Gemfile.lock
47
39
  - LICENSE
48
40
  - README.rdoc
49
41
  - Rakefile
@@ -71,25 +63,17 @@ required_ruby_version: !ruby/object:Gem::Requirement
71
63
  requirements:
72
64
  - - ">="
73
65
  - !ruby/object:Gem::Version
74
- hash: 3
75
- segments:
76
- - 0
77
66
  version: "0"
78
67
  required_rubygems_version: !ruby/object:Gem::Requirement
79
68
  none: false
80
69
  requirements:
81
70
  - - ">="
82
71
  - !ruby/object:Gem::Version
83
- hash: 23
84
- segments:
85
- - 1
86
- - 3
87
- - 6
88
72
  version: 1.3.6
89
73
  requirements: []
90
74
 
91
75
  rubyforge_project:
92
- rubygems_version: 1.3.7
76
+ rubygems_version: 1.5.0
93
77
  signing_key:
94
78
  specification_version: 3
95
79
  summary: Simply builds and verifies OAuth headers
data/Gemfile.lock DELETED
@@ -1,18 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- simple_oauth (0.1.3)
5
-
6
- GEM
7
- remote: http://rubygems.org/
8
- specs:
9
- mocha (0.9.10)
10
- rake
11
- rake (0.8.7)
12
-
13
- PLATFORMS
14
- ruby
15
-
16
- DEPENDENCIES
17
- mocha
18
- simple_oauth!