Skip to content
This repository has been archived by the owner on Jul 6, 2020. It is now read-only.

Commit

Permalink
DESTRUCTIVE COMMIT
Browse files Browse the repository at this point in the history
  - cleaned-up the house for draft 09 code
  • Loading branch information
DBA committed Jul 16, 2010
1 parent 9bd745c commit bba05bc
Show file tree
Hide file tree
Showing 13 changed files with 50 additions and 514 deletions.
6 changes: 5 additions & 1 deletion Gemfile
@@ -1,4 +1,8 @@
source :gemcutter

gem 'rspec', '>= 2.0.0.beta'
gem 'activesupport', '>= 3.0.0.beta'

group :test do
gem 'ruby-debug19'
gem 'rspec', '>= 2.0.0.beta'
end
2 changes: 1 addition & 1 deletion MIT-LICENSE
@@ -1,4 +1,4 @@
Copyright (c) 2010 Alexander Flatter
Copyright (c) 2010 Alexander Flatter, Diogo Almeida and Miguel Teixeira

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
19 changes: 19 additions & 0 deletions oauth2-server/LICENSE
@@ -0,0 +1,19 @@
Copyright (c) 2010 Alexander Flatter, Diogo Almeida and Miguel Teixeira

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
12 changes: 6 additions & 6 deletions oauth2-server/lib/oauth2/server.rb
@@ -1,11 +1,11 @@
require 'oauth2/core'

module OAuth2

module Server
autoload :Flows, 'oauth2/server/flows'
autoload :Rails, 'oauth2/server/rails'
autoload :Request, 'oauth2/server/request'
# autoload :Flows, 'oauth2/server/flows'
# autoload :Rails, 'oauth2/server/rails'
# autoload :Request, 'oauth2/server/request'
end
end

end
13 changes: 0 additions & 13 deletions oauth2-server/lib/oauth2/server/flows.rb

This file was deleted.

78 changes: 0 additions & 78 deletions oauth2-server/lib/oauth2/server/flows/web_server.rb

This file was deleted.

141 changes: 0 additions & 141 deletions oauth2-server/lib/oauth2/server/request.rb

This file was deleted.

18 changes: 9 additions & 9 deletions oauth2-server/oauth2-server.gemspec
@@ -1,23 +1,23 @@
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)

Gem::Specification.new do |s|
s.name = "oauth2-server"
s.version = '0.1.4'
s.version = '1.0.0.beta.1'
s.platform = Gem::Platform::RUBY
s.authors = ["Alexander Flatter"]
s.email = ["aflatter@farbenmeer.net"]
s.homepage = "http://github.com/aflatter/oauth2-ruby"
s.authors = ["Alexander Flatter", "Diogo Almeida", "Miguel Teixeira"]
s.email = ["aflatter@farbenmeer.net", "diogo.almeida@gnomeslab.com", "miguel.teixeira@gnomeslab.com"]
s.homepage = ["http://github.com/aflatter/oauth2-ruby", "http://gnomeslab.com/"]
s.summary = ""
s.description = ""

s.required_rubygems_version = ">= 1.3.6"

s.add_dependency(%q<oauth2-core>, [">= 0.1.4"])

s.add_development_dependency "rspec"

s.files = Dir.glob("{bin,lib}/**/*") + %w(LICENSE README.md)
s.require_path = 'lib'
end
60 changes: 0 additions & 60 deletions oauth2-server/spec/server/flows/web_server_spec.rb

This file was deleted.

0 comments on commit bba05bc

Please sign in to comment.