paid_up 0.9.5 → 0.9.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/app/views/paid_up/features/_table.html.haml +1 -1
- data/config/locales/en.yml +1 -0
- data/paid_up.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee9477be50728962bc7551a9719f433460c82ec7
|
4
|
+
data.tar.gz: 988d4fb1f64e168c124df2ca020643853469c0c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8dce6c230a30056d9f48d987e8f3d941832942902c6bcfab1cc4b3647f30f7a9c813d0255d2c257ade7e5bc7ce1b90bbd2baf2bcac94aadf8c50226494a89632
|
7
|
+
data.tar.gz: 28ceddf0435a3371f48571bad18d9c781bec8620a34e63a949cdca5f4c532a02e759bb87790d6babf53831e0246af86b4ef070d092e0e1aadca8530ad0e97328
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.9.
|
1
|
+
0.9.6
|
@@ -8,7 +8,7 @@
|
|
8
8
|
%th= :subscribe.l
|
9
9
|
- for plan in plans
|
10
10
|
%tr{ class: highlight_plan == plan ? 'info' : ''}
|
11
|
-
%td= plan.title
|
11
|
+
%td= :title_plan.l title: plan.title
|
12
12
|
%td= plan_charge_human plan, user_signed_in? ? current_user.stripe_data.discount : nil
|
13
13
|
- for feature in features
|
14
14
|
%td= feature_display feature, plan
|
data/config/locales/en.yml
CHANGED
@@ -81,6 +81,7 @@ en:
|
|
81
81
|
subscription_plan_pricing: 'Subscription Plan Pricing'
|
82
82
|
switch_plans: "Switch Plans"
|
83
83
|
thank_you: "Thank You"
|
84
|
+
title_plan: "%{title} Plan"
|
84
85
|
to_disable_this_message_subscribe: "To disable this message, please <a href='%{subscribe_link}'>Choose a Plan</a>."
|
85
86
|
to_enable_paid_features_subscribe: "To enable the paid features previously associated with your account, please <a href='%{subscribe_link}'>Choose a Plan</a>."
|
86
87
|
trial_period: "Trial Period"
|
data/paid_up.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: paid_up 0.9.
|
5
|
+
# stub: paid_up 0.9.6 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "paid_up"
|
9
|
-
s.version = "0.9.
|
9
|
+
s.version = "0.9.6"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib"]
|