Skip to content
This repository has been archived by the owner on Aug 28, 2023. It is now read-only.

link gem to Travis ci #27

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
language: ruby
rvm:
- 2.2.0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, I meant adding multiple Rubies to test 😉 So we should at least test 2.1 and 2.2

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Totally missed that one. Sorted now

notifications:
campfire:
rooms:
- secure: "Dy/OtCgChcv+AS6zrPce4vvJGUJstUSi8eE2s5x6ruDy2ZTNSHo0ITGPRQPYuM75hlUxhJLvJLEsbG/llldl96wihq2q2KeSb20Pzuma+TVe9B4QYIjodrTeudmFrrgWV3IpuXnrwkZeZJywBFM5kXWRIvROCK7aRNKTBWzsI/Y="
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,7 @@ group :development do
gem 'vcr'
gem 'webmock'
end

group :test do
gem 'rake'
end
1 change: 1 addition & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ DEPENDENCIES
crack (> 0.1.7)
httparty (>= 0.13.1)
jeweler (> 1.4)
rake
rspec
vcr
webmock
6 changes: 5 additions & 1 deletion README.rdoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
= madmimi
= madmimi {<img src="https://travis-ci.org/madmimi/madmimi-gem.svg?branch=master" alt="Build Status" />}[https://travis-ci.org/madmimi/madmimi-gem]

The power of Mad Mimi in your Ruby application. Deliver emails, track statistics, and manage your subscriber base with ease.

Expand Down Expand Up @@ -64,6 +64,10 @@ You can set +verify_ssl+ to either true or false in initializer, if you wish ver

mimi.list_members('Test List', 2, 50) # get audience members on the 2nd page in specific list (50 members per page)

mimi.list_size('Test List') # get audience count in a specific list

mimi.list_size_since('Test List', 'unix timestamp') # get the count of audience members added to a specific list since a specified date

mimi.suppressed?('[email protected]') # check if audience member is suppressed

mimi.suppress_email('[email protected]') # move email to suppressed list
Expand Down