Sha256: bf61c8a1ec43e5296de88c1f126eb662d54517f41e139416c60aa7ea65bedda1

Contents?: true

Size: 879 Bytes

Versions: 2

Compression:

Stored size: 879 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

2 entries across 2 versions & 1 rubygems

Version Path
entrance-0.2.2 entrance.gemspec
entrance-0.2.1 entrance.gemspec