Skip to content

Commit

Permalink
1.0.87
Browse files Browse the repository at this point in the history
  • Loading branch information
Constant-Contact-Public-API committed Oct 1, 2024
1 parent 4eee335 commit 92d44ec
Show file tree
Hide file tree
Showing 405 changed files with 118,185 additions and 9 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/ruby.yml
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
48 changes: 48 additions & 0 deletions .gitignore
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
30 changes: 30 additions & 0 deletions CHANGELOG.md
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
9 changes: 9 additions & 0 deletions Gemfile
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
15 changes: 8 additions & 7 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
BSD 3-Clause License

Copyright (c) 2024, Constant Contact
Copyright (c) 2022, Constant-Contact-Public-API
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Expand All @@ -25,4 +26,4 @@ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
203 changes: 201 additions & 2 deletions README.md

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions Rakefile
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
39 changes: 39 additions & 0 deletions constant_contact_client.gemspec
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
Loading

0 comments on commit 92d44ec

Please sign in to comment.