Skip to content
This repository was archived by the owner on Dec 16, 2021. It is now read-only.

Commit 78b9da2

Browse files
author
Corey Sciuto
committed
4.0.0: Upgrading dependencies for Rails 5 support
1 parent 3abe8f9 commit 78b9da2

17 files changed

+227
-226
lines changed

.travis.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
language: ruby
22
rvm:
3-
- 2.1.0
4-
- 2.0.0
5-
- 1.9.3
6-
- 1.9.2
7-
- jruby-19mode
3+
- 2.2.0
4+
- 2.3.0
5+
- 2.4.0
86
before_install:
97
- gem update bundler
108
#script: rspec spec

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,15 @@ The Ruby SDK for AppConnect allows you to leverage the AppConnect v2 APIs.
55

66
[![Build Status](https://travis-ci.org/constantcontact/ruby-sdk.png)](https://travis-ci.org/constantcontact/ruby-sdk)
77

8+
Requirements
9+
====
10+
The Constant Contact Ruby SDK requires Ruby 2.2+.
11+
812
Installation
913
====
1014
Via bundler:
1115
```ruby
12-
gem 'constantcontact', '~> 3.0.0'
16+
gem 'constantcontact', '~> 4.0.0'
1317
```
1418
Otherwise:
1519
```bash

constantcontact.gemspec

+4-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
55

66
Gem::Specification.new do |s|
77
s.name = "constantcontact"
8-
s.version = '3.0.0'
8+
s.version = '4.0.0'
99
s.platform = Gem::Platform::RUBY
1010
s.authors = ["ConstantContact"]
1111
s.homepage = "http://www.constantcontact.com"
@@ -24,8 +24,7 @@ Gem::Specification.new do |s|
2424
s.require_paths = [ "lib" ]
2525
s.test_files = Dir['spec/**/*_spec.rb']
2626

27-
s.add_runtime_dependency("rest-client", '~> 1.6', '>= 1.6.7')
28-
s.add_runtime_dependency("json", '~> 1.8', '>= 1.8.1')
29-
s.add_runtime_dependency('mime-types', '~> 2.4', '>= 2.4.1')
30-
s.add_development_dependency("rspec", '~> 2.14')
27+
s.add_runtime_dependency("rest-client", '~> 2.0')
28+
s.add_runtime_dependency("json", '~> 2.1')
29+
s.add_development_dependency("rspec", '~> 3.6')
3130
end

lib/constantcontact/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
module ConstantContact
88
module SDK
99
# Gem version
10-
VERSION = "3.0.0"
10+
VERSION = "4.0.0"
1111
end
1212
end

0 commit comments

Comments
 (0)