├── .bowerrc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .rubocop.yml ├── .rubocop_todo.yml ├── Gemfile ├── LICENSE.md ├── README.md ├── Rakefile ├── add-to-org.gemspec ├── bower.json ├── lib ├── add-to-org.rb └── add-to-org │ ├── helpers.rb │ ├── version.rb │ └── views │ ├── error.erb │ ├── forbidden.erb │ ├── layout.erb │ └── success.erb ├── script ├── bootstrap ├── cibuild ├── release └── server └── spec ├── add-to-org-helpers_spec.rb ├── add-to-org_spec.rb ├── fixtures ├── emails.json └── invalid_emails.json └── spec_helper.rb /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "lib/add-to-org/public/vendor" 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/Rakefile -------------------------------------------------------------------------------- /add-to-org.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/add-to-org.gemspec -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/bower.json -------------------------------------------------------------------------------- /lib/add-to-org.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/lib/add-to-org.rb -------------------------------------------------------------------------------- /lib/add-to-org/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/lib/add-to-org/helpers.rb -------------------------------------------------------------------------------- /lib/add-to-org/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module AddToOrg 4 | VERSION = '3.0.3' 5 | end 6 | -------------------------------------------------------------------------------- /lib/add-to-org/views/error.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/lib/add-to-org/views/error.erb -------------------------------------------------------------------------------- /lib/add-to-org/views/forbidden.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/lib/add-to-org/views/forbidden.erb -------------------------------------------------------------------------------- /lib/add-to-org/views/layout.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/lib/add-to-org/views/layout.erb -------------------------------------------------------------------------------- /lib/add-to-org/views/success.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/lib/add-to-org/views/success.erb -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | bundle install 4 | -------------------------------------------------------------------------------- /script/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/script/cibuild -------------------------------------------------------------------------------- /script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/script/release -------------------------------------------------------------------------------- /script/server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | bundle exec rackup 4 | -------------------------------------------------------------------------------- /spec/add-to-org-helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/spec/add-to-org-helpers_spec.rb -------------------------------------------------------------------------------- /spec/add-to-org_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/spec/add-to-org_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/emails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/spec/fixtures/emails.json -------------------------------------------------------------------------------- /spec/fixtures/invalid_emails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/spec/fixtures/invalid_emails.json -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benbalter/add-to-org/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------