releasing gem v0.1.0
This commit is contained in:
parent
b1d3d66e4a
commit
28eaf1bc99
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
*.gem
|
3
CHANGELOG.rdoc
Normal file
3
CHANGELOG.rdoc
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
*0.1.0* (Nov 16th, 2009)
|
||||||
|
|
||||||
|
* initial release
|
12
README.rdoc
12
README.rdoc
|
@ -7,12 +7,18 @@ This assumes you already have an authentication solution (such as Authlogic) whi
|
||||||
|
|
||||||
== Installation
|
== Installation
|
||||||
|
|
||||||
Install it as a Rails plugin.
|
You can set it up as a gem in your environment.rb file.
|
||||||
|
|
||||||
|
config.gem "cancan", :source => "http://gemcutter.org"
|
||||||
|
|
||||||
|
And then install the gem.
|
||||||
|
|
||||||
|
gem install cancan
|
||||||
|
|
||||||
|
Alternatively you can install it as a Rails plugin.
|
||||||
|
|
||||||
script/plugin install git://github.com/ryanb/cancan.git
|
script/plugin install git://github.com/ryanb/cancan.git
|
||||||
|
|
||||||
It will be available as a gem soon.
|
|
||||||
|
|
||||||
|
|
||||||
== Setup
|
== Setup
|
||||||
|
|
||||||
|
|
22
cancan.gemspec
Normal file
22
cancan.gemspec
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
Gem::Specification.new do |s|
|
||||||
|
s.name = "cancan"
|
||||||
|
s.summary = "Simple authorization solution for Rails."
|
||||||
|
s.description = "Simple authorization solution for Rails which is completely decoupled from the user's roles. All permissions are stored in a single location for convenience."
|
||||||
|
s.homepage = "http://github.com/ryanb/cancan"
|
||||||
|
|
||||||
|
s.version = "0.1.0"
|
||||||
|
s.date = "2009-11-16"
|
||||||
|
|
||||||
|
s.authors = ["Ryan Bates"]
|
||||||
|
s.email = "ryan@railscasts.com"
|
||||||
|
|
||||||
|
s.require_paths = ["lib"]
|
||||||
|
s.files = Dir["lib/**/*"] + Dir["spec/**/*"] + ["LICENSE", "README.rdoc", "Rakefile", "CHANGELOG.rdoc", "init.rb"]
|
||||||
|
s.extra_rdoc_files = ["README.rdoc", "CHANGELOG.rdoc", "LICENSE"]
|
||||||
|
|
||||||
|
s.has_rdoc = true
|
||||||
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "CanCan", "--main", "README.rdoc"]
|
||||||
|
|
||||||
|
s.rubygems_version = "1.3.4"
|
||||||
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2")
|
||||||
|
end
|
Loading…
Reference in New Issue
Block a user