Sha256: acf5f133662dde1b1d393a832334dd27af2a92e680c81ca36b9795ca6cd01561
Contents?: true
Size: 896 Bytes
Versions: 6
Compression:
Stored size: 896 Bytes
Contents
require 'rubygems' require 'date' require 'spec/rake/spectask' GEM = "rails_warden" AUTHORS = ["Daniel Neighman"] EMAIL = "has.sox@gmail.com" HOMEPAGE = "http://github.com/hassox/rails_warden" SUMMARY = "A gem that provides authenitcation via the Warden framework" begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = GEM gem.email = EMAIL gem.has_rdoc = true gem.extra_rdoc_files = ["README.textile", "LICENSE", 'TODO'] gem.summary = SUMMARY gem.description = SUMMARY gem.authors = AUTHORS gem.email = EMAIL gem.homepage = HOMEPAGE gem.rubyforge_project = "warden" end rescue LoadError puts "Jeweler (or a dependency) not available. Install with: sudo gem install jeweler" end task :default => :spec desc "Run specs" Spec::Rake::SpecTask.new do |t| t.spec_files = FileList['spec/**/*_spec.rb'] t.spec_opts = %w(-fs --color) end
Version data entries
6 entries across 6 versions & 2 rubygems
Version | Path |
---|---|
hassox-rails_warden-0.2.4 | Rakefile |
rails_warden-0.5.0 | Rakefile |
rails_warden-0.3.0 | Rakefile |
rails_warden-0.2.6 | Rakefile |
rails_warden-0.2.5 | Rakefile |
rails_warden-0.2.4 | Rakefile |