-
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.
- Loading branch information
1 parent
4eee335
commit 92d44ec
Showing
405 changed files
with
118,185 additions
and
9 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,41 @@ | ||
name: Ruby Release | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
permissions: | ||
id-token: write | ||
contents: write | ||
strategy: | ||
matrix: | ||
ruby-version: [ "2.7", "3.0", "3.1" ] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: ${{ matrix.ruby-version }} | ||
- run: bundle install | ||
release: | ||
name: Release | ||
needs: build | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Create tag from commit | ||
uses: christophebedard/tag-version-commit@v1 | ||
id: tag_version | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
version_regex: '([0-9]+\.[0-9]+\.[0-9]+)' | ||
- name: Create a GitHub release | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
tag: ${{ steps.tag_version.outputs.tag }} | ||
name: Release ${{ steps.tag_version.outputs.tag }} | ||
- name: Publish | ||
uses: rubygems/release-gem@v1 |
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,48 @@ | ||
# Generated by: https://openapi-generator.tech | ||
# | ||
|
||
*.gem | ||
*.rbc | ||
/.config | ||
/coverage/ | ||
/InstalledFiles | ||
/pkg/ | ||
/spec/reports/ | ||
/spec/examples.txt | ||
/test/tmp/ | ||
/test/version_tmp/ | ||
/tmp/ | ||
|
||
## Specific to RubyMotion: | ||
.dat* | ||
.repl_history | ||
build/ | ||
|
||
## Documentation cache and generated files: | ||
/.yardoc/ | ||
/_yardoc/ | ||
/doc/ | ||
/rdoc/ | ||
|
||
## Environment normalization: | ||
/.bundle/ | ||
/vendor/bundle | ||
/lib/bundler/man/ | ||
|
||
# for a library or gem, you might want to ignore these files since the code is | ||
# intended to run in multiple environments; otherwise, check them in: | ||
# Gemfile.lock | ||
# .ruby-version | ||
# .ruby-gemset | ||
|
||
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: | ||
.rvmrc | ||
|
||
# Open API Generator | ||
.rubocop.yml | ||
.travis.yml | ||
.gitlab-ci.yml | ||
.openapi-generator | ||
.openapi-generator-ignore | ||
.rspec | ||
git_push.sh |
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,30 @@ | ||
# Constant Contact Ruby API Client | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/) and this project adheres to [Semantic Versioning](https://semver.org/). | ||
|
||
## 1.0.85 - 2024-10-01 | ||
|
||
## 1.0.83 - 2024-10-01 | ||
|
||
## 1.0.82 - 2024-09-30 | ||
|
||
## 1.0.81 - 2024-09-30 | ||
|
||
## 1.0.77 - 2024-09-30 | ||
|
||
## 1.0.76 - 2024-09-30 | ||
|
||
## 1.0.74 - 2024-09-23 | ||
|
||
## 1.0.73 - 2024-09-20 | ||
|
||
## 1.0.71 - 2024-09-19 | ||
|
||
## 1.0.69 - 2024-05-21 | ||
|
||
## 1.0.68 - 2024-05-08 | ||
|
||
## 1.0.67 - 2024-04-24 | ||
|
||
## 1.0.63 - 2024-03-29 |
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,9 @@ | ||
source 'https://rubygems.org' | ||
|
||
gemspec | ||
|
||
group :development, :test do | ||
gem 'rake', '~> 13.0.1' | ||
gem 'pry-byebug' | ||
gem 'rubocop', '~> 0.66.0' | ||
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
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,10 @@ | ||
require "bundler/gem_tasks" | ||
|
||
begin | ||
require 'rspec/core/rake_task' | ||
|
||
RSpec::Core::RakeTask.new(:spec) | ||
task default: :spec | ||
rescue LoadError | ||
# no rspec available | ||
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,39 @@ | ||
# -*- encoding: utf-8 -*- | ||
|
||
=begin | ||
#Constant Contact API v3 | ||
#Swagger build version 3.0.2475 | ||
The version of the OpenAPI document: 1.0.87 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
OpenAPI Generator version: 7.2.0 | ||
=end | ||
|
||
$:.push File.expand_path("../lib", __FILE__) | ||
require "constant_contact_client/version" | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "constant_contact_client" | ||
s.version = ConstantContactClient::VERSION | ||
s.platform = Gem::Platform::RUBY | ||
s.authors = ["Constant Contact"] | ||
s.email = ["[email protected]"] | ||
s.homepage = "https://v3.developer.constantcontact.com/" | ||
s.summary = "Constant Contact API v3 Ruby Gem" | ||
s.description = "Swagger build version 3.0.2475" | ||
s.license = "BSD 3-Clause" | ||
s.required_ruby_version = ">= 2.7" | ||
s.metadata = {} | ||
|
||
s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1' | ||
|
||
s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0' | ||
|
||
s.files = `find *`.split("\n").uniq.sort.select { |f| !f.empty? } | ||
s.test_files = `find spec/*`.split("\n") | ||
s.executables = [] | ||
s.require_paths = ["lib"] | ||
end |
Oops, something went wrong.