Sha256: eee33bb40e08e49de773f0a0dc041b86780601bc3e19ec19bf3d4a3b80c44cc9

Contents?: true

Size: 878 Bytes

Versions: 1

Compression:

Stored size: 878 Bytes

Contents

# -*- encoding: utf-8 -*-
require File.expand_path("../lib/entrance/version", __FILE__)

Gem::Specification.new do |s|
  s.name        = "entrance"
  s.version     = Entrance::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ['Tomás Pollak']
  s.email       = ['tomas@forkhq.com']
  s.homepage    = "https://github.com/tomas/entrance"
  s.summary     = "Lean authentication alternative for Rails and Sinatra."
  s.description = "Doesn't fiddle with your controllers and routes."

  s.required_rubygems_version = ">= 1.3.6"
  s.rubyforge_project         = "entrance"
  
  s.add_runtime_dependency "bcrypt", "~> 3.0"
  s.add_runtime_dependency "activesupport", "> 3.0"

  s.files        = `git ls-files`.split("\n")
  s.executables  = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
  s.require_path = 'lib'
  # s.bindir       = 'bin'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
entrance-0.2.0 entrance.gemspec