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

Commit

Permalink
Merge pull request #67 from csciuto/master
Browse files Browse the repository at this point in the history
4.0.0: Upgrading dependencies for Rails 5 support
  • Loading branch information
csciuto committed Aug 15, 2017
2 parents 3abe8f9 + 78b9da2 commit 29f386a
Show file tree
Hide file tree
Showing 17 changed files with 227 additions and 226 deletions.
8 changes: 3 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- 1.9.2
- jruby-19mode
- 2.2.0
- 2.3.0
- 2.4.0
before_install:
- gem update bundler
#script: rspec spec
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,15 @@ The Ruby SDK for AppConnect allows you to leverage the AppConnect v2 APIs.

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

Requirements
====
The Constant Contact Ruby SDK requires Ruby 2.2+.

Installation
====
Via bundler:
```ruby
gem 'constantcontact', '~> 3.0.0'
gem 'constantcontact', '~> 4.0.0'
```
Otherwise:
```bash
Expand Down
9 changes: 4 additions & 5 deletions constantcontact.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

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

s.add_runtime_dependency("rest-client", '~> 1.6', '>= 1.6.7')
s.add_runtime_dependency("json", '~> 1.8', '>= 1.8.1')
s.add_runtime_dependency('mime-types', '~> 2.4', '>= 2.4.1')
s.add_development_dependency("rspec", '~> 2.14')
s.add_runtime_dependency("rest-client", '~> 2.0')
s.add_runtime_dependency("json", '~> 2.1')
s.add_development_dependency("rspec", '~> 3.6')
end
2 changes: 1 addition & 1 deletion lib/constantcontact/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
module ConstantContact
module SDK
# Gem version
VERSION = "3.0.0"
VERSION = "4.0.0"
end
end
Loading

0 comments on commit 29f386a

Please sign in to comment.