This file contains hidden or 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
// JavaScript Document | |
//NIVO SLIDER PLUGIN | |
/* | |
* jQuery Nivo Slider v2.7.1 | |
* http://nivo.dev7studios.com | |
* | |
* Copyright 2011, Gilbert Pellegrom | |
* Free to use and abuse under the MIT license. |
This file contains hidden or 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
class CreateSubscription | |
def self.call(plan, email_address, token) | |
user, raw_token = CreateUser.call(email_address) | |
subscription = Subscription.new( | |
plan: plan, | |
user: user | |
) | |
begin |