forked from pelle/ezcrypto
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from appfolio/skRenameEzCryptoGem
Sk rename ez crypto gem
- Loading branch information
Showing
23 changed files
with
224 additions
and
669 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
version: 2.1 | ||
commands: | ||
bundle_install_and_test: | ||
steps: | ||
- checkout | ||
- run: bundle install | ||
- run: bundle exec appraisal install | ||
- run: bundle exec appraisal rake test | ||
|
||
jobs: | ||
test-ruby-253: | ||
docker: | ||
- image: circleci/ruby:2.5.3 | ||
steps: | ||
- bundle_install_and_test | ||
|
||
test-ruby-263: | ||
docker: | ||
- image: circleci/ruby:2.6.3 | ||
steps: | ||
- bundle_install_and_test | ||
|
||
workflows: | ||
rc: | ||
jobs: | ||
- test-ruby-253: | ||
context: appfolio_test_context | ||
- test-ruby-263: | ||
context: appfolio_test_context |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,24 @@ | ||
doc | ||
# Because this is a gem, ignore Gemfile.lock: | ||
|
||
Gemfile.lock | ||
gemfiles/*.gemfile.lock | ||
|
||
# And because this is Ruby, ignore the following | ||
# (source: https://github.com/github/gitignore/blob/master/Ruby.gitignore): | ||
|
||
*.gem | ||
*.rbc | ||
.bundle | ||
.config | ||
lib/bundler/man | ||
pkg | ||
*.log | ||
.DS_Store | ||
log | ||
rdoc | ||
tmp | ||
|
||
# YARD artifacts | ||
.yardoc | ||
_yardoc | ||
doc/ | ||
|
||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ruby-2.6.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
case(RUBY_VERSION) | ||
when '2.5.3', '2.6.3' then | ||
appraise "ruby-#{RUBY_VERSION}_rails521" do | ||
gem 'rails', '5.2.1' | ||
end | ||
else | ||
raise "Unsupported Ruby version #{RUBY_VERSION}" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
source 'http://rubygems.org' | ||
|
||
gemspec | ||
|
||
source 'https://gemini.atl.appfolio.net' do | ||
gem 'af_gems', '~> 7.1' | ||
end | ||
|
||
group :development, :test do | ||
gem 'minitest', '~> 5.8' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
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 'af_gems/gem_tasks' | ||
require 'af_gems/appraisal' | ||
|
||
Rake::TestTask.new(:test) do |test| | ||
test.libs << 'test' | ||
test.pattern = 'test/**/*_test.rb' | ||
test.verbose = true | ||
end | ||
|
||
namespace :test do | ||
AfGems::RubyAppraisalTask.new(:all, [ 'ruby-2.5.3', 'ruby-2.6.3']) | ||
end | ||
|
||
task :default => :test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,67 +1,79 @@ | ||
# frozen_string_literal: true | ||
|
||
lib = File.expand_path('lib', __dir__) | ||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
require 'ezcrypto/version' | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "ezcrypto" | ||
s.version = "0.7.2" | ||
s.date = "2009-3-10" | ||
s.summary = "EzCrypto - Simplified Crypto Library" | ||
s.email = "pelle@stakeventures.com" | ||
s.homepage = "http://ezcrypto.rubyforge.org" | ||
s.description = "EzCrypto is an easy to use wrapper around the poorly documented OpenSSL ruby library." | ||
s.has_rdoc = true | ||
s.authors = ["Pelle Braendgaard", "Micah Wedemeyer"] | ||
s.files = [ "rakefile", | ||
"README.rdoc", | ||
"README_ACTIVE_CRYPTO", | ||
"README_DIGITAL_SIGNATURES", | ||
"MIT-LICENSE", | ||
"CHANGELOG", | ||
"init.rb", | ||
"lib/active_crypto.rb", | ||
"lib/ezcrypto.rb", | ||
"lib/ezsig.rb", | ||
"lib/trusted.pem", | ||
"test/active_crypto_test.rb", | ||
"test/association_key_holder_test.rb", | ||
"test/database.yml", | ||
"test/digest_test.rb", | ||
"test/dsakey.pem", | ||
"test/dsapubkey.pem", | ||
"test/dsig_test.rb", | ||
"test/encrypt_test.rb", | ||
"test/ezcrypto_test.rb", | ||
"test/key_holder_test.rb", | ||
"test/protectedsigner.pem", | ||
"test/sf_intermediate.crt", | ||
"test/store", | ||
"test/test_helper.rb", | ||
"test/testchild.pem", | ||
"test/testchild.req", | ||
"test/testpub.pem", | ||
"test/testsigner.cert", | ||
"test/testsigner.pem", | ||
"test/valicert_class2_root.crt", | ||
"test/agree2.com.cert"] | ||
s.extra_rdoc_files = ["CHANGELOG", "README.rdoc","README_ACTIVE_CRYPTO","README_DIGITAL_SIGNATURES"] | ||
s.test_files = ["test/active_crypto_test.rb", | ||
"test/association_key_holder_test.rb", | ||
"test/database.yml", | ||
"test/digest_test.rb", | ||
"test/dsakey.pem", | ||
"test/dsapubkey.pem", | ||
"test/dsig_test.rb", | ||
"test/encrypt_test.rb", | ||
"test/ezcrypto_test.rb", | ||
"test/key_holder_test.rb", | ||
"test/protectedsigner.pem", | ||
"test/sf_intermediate.crt", | ||
"test/store", | ||
"test/test_helper.rb", | ||
"test/testchild.pem", | ||
"test/testchild.req", | ||
"test/testpub.pem", | ||
"test/testsigner.cert", | ||
"test/testsigner.pem", | ||
"test/valicert_class2_root.crt", | ||
"test/agree2.com.cert"] | ||
|
||
s.name = 'ezcrypto' | ||
s.version = EzCrypto::VERSION | ||
s.summary = 'EzCrypto - Simplified Crypto Library' | ||
s.email = 'pelle@stakeventures.com' | ||
s.homepage = 'http://ezcrypto.rubyforge.org' | ||
s.description = 'EzCrypto is an easy to use wrapper around the poorly documented OpenSSL ruby library.' | ||
s.authors = ['Pelle Braendgaard', 'Micah Wedemeyer'] | ||
s.metadata['allowed_push_host'] = 'https://gemini.atl.appfolio.net' | ||
s.files = %w[ | ||
rakefile | ||
README.rdoc | ||
README_ACTIVE_CRYPTO | ||
README_DIGITAL_SIGNATURES | ||
MIT-LICENSE | ||
CHANGELOG | ||
init.rb | ||
lib/active_crypto.rb | ||
lib/ezcrypto.rb | ||
lib/ezsig.rb | ||
lib/trusted.pem | ||
test/active_crypto_test.rb | ||
test/association_key_holder_test.rb | ||
test/database.yml | ||
test/digest_test.rb | ||
test/dsakey.pem | ||
test/dsapubkey.pem | ||
test/dsig_test.rb | ||
test/encrypt_test.rb | ||
test/ezcrypto_test.rb | ||
test/key_holder_test.rb | ||
test/protectedsigner.pem | ||
test/sf_intermediate.crt | ||
test/store | ||
test/test_helper.rb | ||
test/testchild.pem | ||
test/testchild.req | ||
test/testpub.pem | ||
test/testsigner.cert | ||
test/testsigner.pem | ||
test/valicert_class2_root.crt | ||
test/agree2.com.cert | ||
] | ||
s.extra_rdoc_files = %w[ | ||
CHANGELOG | ||
README.rdoc | ||
README_ACTIVE_CRYPTO | ||
README_DIGITAL_SIGNATURES | ||
] | ||
s.test_files = %w[ | ||
test/active_crypto_test.rb | ||
test/association_key_holder_test.rb | ||
test/database.yml | ||
test/digest_test.rb | ||
test/dsakey.pem | ||
test/dsapubkey.pem | ||
test/dsig_test.rb | ||
test/encrypt_test.rb | ||
test/ezcrypto_test.rb | ||
test/key_holder_test.rb | ||
test/protectedsigner.pem | ||
test/sf_intermediate.crt | ||
test/store | ||
test/test_helper.rb | ||
test/testchild.pem | ||
test/testchild.req | ||
test/testpub.pem | ||
test/testsigner.cert | ||
test/testsigner.pem | ||
test/valicert_class2_root.crt | ||
test/agree2.com.cert | ||
] | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "http://rubygems.org" | ||
|
||
gem "rails", "5.2.1" | ||
|
||
group :development, :test do | ||
gem "minitest", "~> 5.8" | ||
end | ||
|
||
source "https://gemini.atl.appfolio.net" do | ||
gem "af_gems", "~> 7.1" | ||
end | ||
|
||
gemspec path: "../" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "http://rubygems.org" | ||
|
||
gem "rails", "5.2.1" | ||
|
||
group :development, :test do | ||
gem "minitest", "~> 5.8" | ||
end | ||
|
||
source "https://gemini.atl.appfolio.net" do | ||
gem "af_gems", "~> 7.1" | ||
end | ||
|
||
gemspec path: "../" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module EzCrypto | ||
VERSION = '0.7.3-appfolio.1'.freeze | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.