Skip to content

Commit

Permalink
Release of first version
Browse files Browse the repository at this point in the history
  • Loading branch information
vovimayhem committed Mar 2, 2019
1 parent 7eac555 commit 51b71bb
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
3 changes: 3 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,6 @@ Gemfile.lock
# Ignore docker stuff:
/Dockerfile
/docker-compose.yml

# Ignore gem builds
/authegy-*.gem
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,6 @@ spec/dummy/node_modules/
spec/dummy/yarn-error.log
spec/dummy/storage/
spec/dummy/tmp/

# Ignore gem builds
/authegy-*.gem
15 changes: 8 additions & 7 deletions authegy.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ Gem::Specification.new do |spec|
' role-based authorization.'
spec.description = 'Opinionated app strategy used for authentication &' \
' role-based authorization.'
spec.homepage = 'https://github.com/vovimayhem/authegy'
spec.homepage = 'https://github.com/vovimayhem/authegy-gem'
spec.license = 'MIT'

# Prevent pushing this gem to RubyGems.org. To allow pushes either set the
# 'allowed_push_host' to allow pushing to a single host or delete this section
# to allow pushing to any host.
if spec.respond_to?(:metadata)
spec.metadata['allowed_push_host'] = 'http://rubygems.org'
spec.metadata['allowed_push_host'] = 'https://rubygems.org'

spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/vovimayhem/authegy'
Expand All @@ -34,11 +34,12 @@ Gem::Specification.new do |spec|
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added
# into git.
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
end
spec.files = Dir[
"{app,config,lib}/**/*",
"CHANGELOG.md",
"MIT-LICENSE",
"README.md"
]

spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
Expand Down
2 changes: 1 addition & 1 deletion lib/authegy/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Authegy
VERSION = '0.1.0'
VERSION = '0.0.1'.freeze
end

0 comments on commit 51b71bb

Please sign in to comment.