Sha256: 983a74439edbdb086d7207277165f66d8f4de93d20bd0dbd1b8318f55c2456da

Contents?: true

Size: 1.19 KB

Versions: 4

Compression:

Stored size: 1.19 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "google_authentication"
  gem.homepage = "http://github.com/fabn/google_authentication"
  gem.license = "MIT"
  gem.summary = %Q{Authenticate users through Google in your app}
  gem.description = %Q{Authenticate users through Google in your app using devise and omniauth}
  gem.email = "f.napoleoni@gmail.com"
  gem.authors = ["Fabio Napoleoni"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/**/*_spec.rb']
end

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

require 'cucumber/rake/task'
Cucumber::Rake::Task.new(:features)

task :default => :spec

require 'yard'
YARD::Rake::YardocTask.new

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
google_authentication-0.2.0 Rakefile
google_authentication-0.1.2 Rakefile
google_authentication-0.1.1 Rakefile
google_authentication-0.1.0 Rakefile