paid_up 0.6.0 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 335fab8dafdbcbe809d161bb38022878df8db297
4
- data.tar.gz: a9b3666398fdc7294d684cc0eaf8dc6ad2004aec
3
+ metadata.gz: a3736c40c6a7426775e2a9f4279e680265118201
4
+ data.tar.gz: c40691d952a2c45d47ae8299b1a055400e44f1df
5
5
  SHA512:
6
- metadata.gz: 005b35eed037a4782e448a36b059d09e23be1cf8ce641f8814ae0727e368e5a3a490267691a377b07a1cbe0fb92c324ae2832999dc10cedd9ed1ef8f5a7f7db6
7
- data.tar.gz: 3996a7ea5cc9658a376d2e3f64fedaff54ae56fe91f6780a7399179c0e7a5d9448d785f5e46a7c7e202d0cbac2a1003fa1d3988f57c5b798d0cdb0656ee40971
6
+ metadata.gz: c08a8754a83d622cb1beec7153670f55e6ae282f861ac32c8e5a6fade596ff29a162fa47bbfc73050ecba590fd960fee12f79ee585e6da3b1ee946f39575983a
7
+ data.tar.gz: 612bb6218ea8bfb8e9050586ee9f72d36e304cc7987be3dd8e508a36dbe22af81a613dc9bc62d580dc036e01679ea65f7dbe6c8db64b35453c3c7d9bf38c52f8
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.6.0
1
+ 0.6.1
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.6.0 ruby lib
5
+ # stub: paid_up 0.6.1 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "paid_up"
9
- s.version = "0.6.0"
9
+ s.version = "0.6.1"
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"]
@@ -148,7 +148,6 @@ Gem::Specification.new do |s|
148
148
  "spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456.ttf",
149
149
  "spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2",
150
150
  "spec/dummy/public/favicon.ico",
151
- "spec/factories/feature.rb",
152
151
  "spec/factories/plan.rb",
153
152
  "spec/factories/plan_feature_setting.rb",
154
153
  "spec/factories/user.rb",
@@ -1,6 +1,6 @@
1
1
  FactoryGirl.define do
2
2
  factory :plan, class: 'PaidUp::Plan' do
3
- name 'Plan Name'
3
+ title 'Plan Title'
4
4
  description 'This is the description'
5
5
  sort_order 0
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paid_up
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Karen Lundgren
@@ -414,7 +414,6 @@ files:
414
414
  - spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456.ttf
415
415
  - spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2
416
416
  - spec/dummy/public/favicon.ico
417
- - spec/factories/feature.rb
418
417
  - spec/factories/plan.rb
419
418
  - spec/factories/plan_feature_setting.rb
420
419
  - spec/factories/user.rb
@@ -1,7 +0,0 @@
1
- FactoryGirl.define do
2
- factory :feature, class: 'PaidUp::Feature' do
3
- name 'Feature Name'
4
- description 'This is the description'
5
- setting_type 'boolean'
6
- end
7
- end