phcmembers 1.5.0 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 50ab070e33349ae6e0c31c384ef89fe3208b8713
4
- data.tar.gz: 327967080b9669db2b4c325e97d67e327415f17d
3
+ metadata.gz: 57013bc76ba4278952b41a4bf480b00c489cb6c9
4
+ data.tar.gz: 37f26ace33ab42867fe05abdc168f8fb788861f3
5
5
  SHA512:
6
- metadata.gz: 714f6d6a3229d98c79e65921b17cb2f1ae849d616b175d7e8867df41ec3df5d72a5d0e03dfae0d1ff1f488d63408a230d09b6ef82fedc0f8e36c99106de5e065
7
- data.tar.gz: 9def50ba9258497d9df8c900a586ea075cec74e33f81d33369ac57161d1ac57fd3f5b9054ee12a2f6e60b73a6791ca95d2e8e8296ab0dae344f5f64bbb17cb83
6
+ metadata.gz: 1e95fd88de180490ac66735b21bc8dacd51b2627ec301168d29b0609dce9a419f309e98e1a2f3225537a095ff3a4e386f56fde2936c9676cb67b7ca8b3003411
7
+ data.tar.gz: d6894eecd3c5143b4736f81d8beab72b5a1cc7913d1fe1db80d536ab5c844c8e090d05de7efdca9ab11ada641f462bfd53b61df83d24e8c6610f5a3dbca2f881
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![Gem Version](https://badge.fury.io/rb/phcmembers.svg)](https://badge.fury.io/rb/phcmembers)
4
4
 
5
5
  ### PHC-Members (Membership & Directory Engine) Documentation
6
- PHC-Members is a membership and web directory engine for ruby on rails apps.
6
+ PHC-Press is an open source membership and listing directory engine purpose built for PHCMembers application.
7
7
 
8
8
  - Fast setup of mebership and directory modules.
9
9
  - Directory and listings manager with a directory API.
@@ -13,7 +13,7 @@ PHC-Members is a membership and web directory engine for ruby on rails apps.
13
13
 
14
14
  #### Step 1 - Add PHC-Members to your gemfile
15
15
 
16
- gem 'phcmembers', '~> 1.0', '>= 1.0.1'
16
+ gem 'phcmembers', '~> 1.5'
17
17
  bundle exec install
18
18
 
19
19
  #### Step 2 - Add database migration files
@@ -0,0 +1,56 @@
1
+ @import "adminlte";
2
+
3
+ /* Removing stupid default logo font */
4
+ body {
5
+ .header {
6
+ .logo {
7
+ font-family: 'Source Sans Pro', sans-serif;
8
+ }
9
+ }
10
+ }
11
+
12
+ .btn.pull-right {
13
+ margin-left: 8px;
14
+ }
15
+
16
+ .spinner {
17
+ position: fixed;
18
+ top: 150px;
19
+ right: 0px;
20
+ border: 1px solid rgba(0, 0, 0, 0.701961);
21
+ background-color: #fff;
22
+ border-top-left-radius: 5px;
23
+ border-top-right-radius: 0px;
24
+ border-bottom-right-radius: 0px;
25
+ border-bottom-left-radius: 5px;
26
+ padding: 10px 15px;
27
+ font-size: 16px;
28
+ z-index: 999999;
29
+ /* cursor: pointer; */
30
+ color: #dddddd;
31
+ }
32
+
33
+ i.glyphicon-sort {
34
+ cursor: pointer;
35
+ }
36
+
37
+ .thumbnail {
38
+ padding: 0;
39
+ border-radius: 0;
40
+ }
41
+
42
+ .btn {
43
+ border-radius: 1px;
44
+ }
45
+
46
+ .box {
47
+ border-radius: 1px;
48
+ }
49
+
50
+ .label {
51
+ border-radius: 0.05em;
52
+ }
53
+
54
+ .box-header a.btn {
55
+ color: #fff;
56
+ }
@@ -0,0 +1,15 @@
1
+ require_dependency "phcmembers/application_controller"
2
+
3
+ module Phcmembers
4
+ class Api::CatsapiController < ApplicationController
5
+
6
+ # Only Responds to API Requests
7
+ respond_to :json
8
+
9
+ # Directory Category API
10
+ def index
11
+ @directory_categories = Directory::Category.order('catname ASC')
12
+ end
13
+
14
+ end
15
+ end
@@ -0,0 +1,16 @@
1
+ require_dependency "phcmembers/application_controller"
2
+
3
+ module Phcmembers
4
+ class Api::ListapiController < ApplicationController
5
+
6
+ # Only Responds to API Requests
7
+ respond_to :json
8
+
9
+ # Directory Listing API
10
+ def index
11
+ category = Directory::Category.find(params[:category_id])
12
+ @directory_catlists = category.catlists.scoped_to(current_account)
13
+ end
14
+
15
+ end
16
+ end
@@ -0,0 +1,26 @@
1
+ module NavHelper
2
+ def nav_link(page, &link_text)
3
+ class_name = request.env['PATH_INFO'].match(page) ? 'active' : nil
4
+
5
+ content_tag(:li, class: class_name) do
6
+ link_to page do
7
+ link_text.call
8
+ end
9
+ end
10
+ end
11
+
12
+ def treeview_link(text, &links)
13
+ content = link_to('#') do
14
+ content_tag(:span, text) <<
15
+ content_tag(:i, '', class: "fa pull-right fa-angle-left")
16
+ end
17
+
18
+ content << content_tag(:ul, class: 'treeview-menu') do
19
+ links.call
20
+ end
21
+
22
+ content_tag :li, class: 'treeview' do
23
+ content
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,8 @@
1
+ module Phcmembers
2
+ class Api::Category < ActiveRecord::Base
3
+
4
+ # Model Relationship
5
+ has_many :catlists, class_name: 'Directory::Catlist'
6
+
7
+ end
8
+ end
@@ -0,0 +1,9 @@
1
+ module Phcmembers
2
+ class Api::Catlist < ActiveRecord::Base
3
+
4
+ # Model Relationship
5
+ belongs_to :category, class_name: 'Directory::Category'
6
+ belongs_to :listing, class_name: 'Members::Listing'
7
+
8
+ end
9
+ end
@@ -0,0 +1,133 @@
1
+ <header class="header">
2
+ <a href="#" class="logo">
3
+ <!-- Add the class icon to your logo image or logo icon to add the margining -->
4
+ AdminLTE
5
+ </a>
6
+ <!-- Header Navbar: style can be found in header.less -->
7
+ <nav class="navbar navbar-static-top" role="navigation">
8
+ <!-- Sidebar toggle button-->
9
+ <a href="#" class="navbar-btn sidebar-toggle" data-toggle="offcanvas" role="button">
10
+ <span class="sr-only">Toggle navigation</span>
11
+ <span class="icon-bar"></span>
12
+ <span class="icon-bar"></span>
13
+ <span class="icon-bar"></span>
14
+ </a>
15
+ <div class="navbar-right">
16
+ <ul class="nav navbar-nav">
17
+ <li class="dropdown messages-menu">
18
+ <a href="#" class="dropdown-toggle" data-toggle="dropdown">
19
+ <i class="fa fa-envelope"></i>
20
+ <span class="label label-success">4</span>
21
+ </a>
22
+ <ul class="dropdown-menu">
23
+ <li class="header">You have 4 messages</li>
24
+ <li>
25
+ <!-- inner menu: contains the actual data -->
26
+ <ul class="menu">
27
+ <li><!-- start message -->
28
+ <a href="#">
29
+ <div class="pull-left">
30
+ <img src="/img/avatar3.png" class="img-circle" alt="User Image"/>
31
+ </div>
32
+ <h4>
33
+ Support Team
34
+ <small><i class="fa fa-clock-o"></i> 5 mins</small>
35
+ </h4>
36
+ <p>Why not buy a new awesome theme?</p>
37
+ </a>
38
+ </li><!-- end message -->
39
+ <li>
40
+ <a href="#">
41
+ <div class="pull-left">
42
+ <img src="/img/avatar2.png" class="img-circle" alt="user image"/>
43
+ </div>
44
+ <h4>
45
+ AdminLTE Design Team
46
+ <small><i class="fa fa-clock-o"></i> 2 hours</small>
47
+ </h4>
48
+ <p>Why not buy a new awesome theme?</p>
49
+ </a>
50
+ </li>
51
+ <li>
52
+ <a href="#">
53
+ <div class="pull-left">
54
+ <img src="/img/avatar.png" class="img-circle" alt="user image"/>
55
+ </div>
56
+ <h4>
57
+ Developers
58
+ <small><i class="fa fa-clock-o"></i> Today</small>
59
+ </h4>
60
+ <p>Why not buy a new awesome theme?</p>
61
+ </a>
62
+ </li>
63
+ <li>
64
+ <a href="#">
65
+ <div class="pull-left">
66
+ <img src="/img/avatar2.png" class="img-circle" alt="user image"/>
67
+ </div>
68
+ <h4>
69
+ Sales Department
70
+ <small><i class="fa fa-clock-o"></i> Yesterday</small>
71
+ </h4>
72
+ <p>Why not buy a new awesome theme?</p>
73
+ </a>
74
+ </li>
75
+ <li>
76
+ <a href="#">
77
+ <div class="pull-left">
78
+ <img src="/img/avatar.png" class="img-circle" alt="user image"/>
79
+ </div>
80
+ <h4>
81
+ Reviewers
82
+ <small><i class="fa fa-clock-o"></i> 2 days</small>
83
+ </h4>
84
+ <p>Why not buy a new awesome theme?</p>
85
+ </a>
86
+ </li>
87
+ </ul>
88
+ </li>
89
+ <li class="footer"><a href="#">See All Messages</a></li>
90
+ </ul>
91
+ </li>
92
+ <!-- User Account: style can be found in dropdown.less -->
93
+ <li class="dropdown user user-menu">
94
+ <a href="#" class="dropdown-toggle" data-toggle="dropdown">
95
+ <i class="glyphicon glyphicon-user"></i>
96
+ <span>Jane Doe <i class="caret"></i></span>
97
+ </a>
98
+ <ul class="dropdown-menu">
99
+ <!-- User image -->
100
+ <li class="user-header bg-light-blue">
101
+ <img src="/img/avatar3.png" class="img-circle" alt="User Image" />
102
+ <p>
103
+ Jane Doe - Web Developer
104
+ <small>Member since Nov. 2012</small>
105
+ </p>
106
+ </li>
107
+ <!-- Menu Body -->
108
+ <li class="user-body">
109
+ <div class="col-xs-4 text-center">
110
+ <a href="#">Followers</a>
111
+ </div>
112
+ <div class="col-xs-4 text-center">
113
+ <a href="#">Sales</a>
114
+ </div>
115
+ <div class="col-xs-4 text-center">
116
+ <a href="#">Friends</a>
117
+ </div>
118
+ </li>
119
+ <!-- Menu Footer-->
120
+ <li class="user-footer">
121
+ <div class="pull-left">
122
+ <a href="#" class="btn btn-default btn-flat">Profile</a>
123
+ </div>
124
+ <div class="pull-right">
125
+ <a href="#" class="btn btn-default btn-flat">Sign out</a>
126
+ </div>
127
+ </li>
128
+ </ul>
129
+ </li>
130
+ </ul>
131
+ </div>
132
+ </nav>
133
+ </header>
@@ -0,0 +1,39 @@
1
+ <section class="sidebar">
2
+ <!-- Sidebar user panel -->
3
+ <div class="user-panel">
4
+ <div class="pull-left image">
5
+ <img src="/img/avatar3.png" class="img-circle" alt="User Image" />
6
+ </div>
7
+ <div class="pull-left info">
8
+ <p>Hello, Jane</p>
9
+
10
+ <a href="#"><i class="fa fa-circle text-success"></i> Online</a>
11
+ </div>
12
+ </div>
13
+ <!-- search form -->
14
+ <form action="#" method="get" class="sidebar-form">
15
+ <div class="input-group">
16
+ <input type="text" name="q" class="form-control" placeholder="Search..."/>
17
+ <span class="input-group-btn">
18
+ <button type='submit' name='search' id='search-btn' class="btn btn-flat"><i class="fa fa-search"></i></button>
19
+ </span>
20
+ </div>
21
+ </form>
22
+ <!-- /.search form -->
23
+ <!-- sidebar menu: : style can be found in sidebar.less -->
24
+ <ul class="sidebar-menu">
25
+ <%= nav_link root_path do %>
26
+ <i class="fa fa-dashboard"></i> <span>Dashboard</span>
27
+ <% end %>
28
+ <%= treeview_link 'Lots of links here' do %>
29
+ <%= nav_link "#" do %>
30
+ <i class="fa fa-angle-double-right"></i>
31
+ One Way
32
+ <% end %>
33
+ <%= nav_link "#" do %>
34
+ <i class="fa fa-angle-double-right"></i>
35
+ Another
36
+ <% end %>
37
+ <% end %>
38
+ </ul>
39
+ </section>
@@ -0,0 +1,49 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
+ <meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
7
+ <meta name="description" content="">
8
+ <meta name="author" content="">
9
+ <title>AdminLTE::Dashboard</title>
10
+
11
+ <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
12
+ <!--[if lt IE 9]>
13
+ <%= javascript_include_tag "https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js", "https://oss.maxcdn.com/respond/1.4.2/respond.min.js" %>
14
+ <![endif]-->
15
+
16
+ <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
17
+ <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
18
+ <%= csrf_meta_tags %>
19
+ </head>
20
+ <body class="skin-blue">
21
+
22
+ <%= render "layouts/application_header" %>
23
+
24
+ <div class="wrapper row-offcanvas row-offcanvas-left">
25
+ <aside class="left-side sidebar-offcanvas">
26
+ <%= render "layouts/application_sidebar" %>
27
+ </aside>
28
+ <aside class="right-side">
29
+ <%= yield(:content_header) %>
30
+
31
+ <% flash.each do |name, msg| %>
32
+ <div class="pad margin no-print">
33
+ <%= content_tag :div, :class => "alert alert-#{ name == :error ? "danger" : "success" } alert-dismissable", :role => "alert" do %>
34
+ <button type="button" class="close" data-dismiss="alert" aria-hidden="true">x</button>
35
+ <%= msg %>
36
+ <% end %>
37
+ </div>
38
+ <% end %>
39
+
40
+ <%= yield %>
41
+ </aside>
42
+ </div>
43
+
44
+ <div class="spinner no-print hidden">
45
+ <img src="/img/ajax-loader.gif" alt="">
46
+ </div>
47
+
48
+ </body>
49
+ </html>
@@ -0,0 +1,2 @@
1
+ object @directory_categories
2
+ attributes :id, :catname
@@ -0,0 +1,6 @@
1
+ object @directory_catlists
2
+ attributes :id, :category_id, :listing_id
3
+
4
+ child(:listing) {
5
+ attributes :mlcontactname, :mlcompanyname, :mladdressl1, :mladdressl2, :mlcity, :mlprovince, :mlcountry, :mlpostalcode, :mlphone, :mlwebsite, :mlemail
6
+ }
@@ -12,6 +12,10 @@ module Phcmembers
12
12
  require 'font-awesome-rails'
13
13
  require 'gravtastic'
14
14
 
15
+ # API Dependencies
16
+ require 'rabl'
17
+ require 'oj'
18
+
15
19
  # Isolate Namespace for PHC Members
16
20
  isolate_namespace Phcmembers
17
21
 
@@ -27,7 +31,7 @@ module Phcmembers
27
31
  g.fixture_replacement :factory_girl, dir: "spec/factories"
28
32
  end
29
33
 
30
- # Load Helper Files (Prevents Problems)
34
+ # Load Helper Files
31
35
  config.to_prepare do
32
36
  ApplicationController.helper(ApplicationHelper)
33
37
  end
@@ -1,3 +1,3 @@
1
1
  module Phcmembers
2
- VERSION = "1.5.0"
2
+ VERSION = "1.6.0"
3
3
  end
@@ -0,0 +1,9 @@
1
+ <%% content_for :content_header do %>
2
+ <section class="content-header">
3
+ <h1><%= class_name %> <small>#<%= @action %></small></h1>
4
+ </section>
5
+ <%% end %>
6
+
7
+ <section class="content invoice">
8
+ <p>Find me in <%= @path %></p>
9
+ </section>
@@ -0,0 +1,30 @@
1
+ <section class="content invoice">
2
+ <div class="row">
3
+ <div class="col-md-10">
4
+ <%%= form_for(@<%= singular_table_name %>, :html => { :role => "form" }) do |f| %>
5
+ <%% if @<%= singular_table_name %>.errors.any? %>
6
+ <div class="alert alert-danger alert-dismissable" role="alert">
7
+ <button type="button" class="close" data-dismiss="alert" aria-hidden="true">x</button>
8
+ <h4><%%= pluralize(@<%= singular_table_name %>.errors.count, "error") %> prohibited this <%= singular_table_name %> from being saved:</h4>
9
+
10
+ <ul>
11
+ <%% @<%= singular_table_name %>.errors.full_messages.each do |msg| %>
12
+ <li><%%= msg %></li>
13
+ <%% end %>
14
+ </ul>
15
+ </div>
16
+ <%% end %>
17
+
18
+ <% attributes.each do |attribute| -%>
19
+ <div class="form-group">
20
+ <%%= f.label :<%= attribute.name %> %>
21
+ <%%= f.<%= attribute.field_type %> :<%= attribute.name %>, :class => "form-control" %>
22
+ </div>
23
+ <% end -%>
24
+ <div class="form-group">
25
+ <%%= f.submit :class => "btn btn-primary" %>
26
+ </div>
27
+ <%% end %>
28
+ </div>
29
+ </div>
30
+ </section>
@@ -0,0 +1,15 @@
1
+ <%% content_for :content_header do %>
2
+ <section class="content-header">
3
+ <h1>
4
+ Editing <small><%%= link_to <%=singular_table_name %>, @<%= singular_table_name %> %></small>
5
+
6
+ <ol class="breadcrumb">
7
+ <li><a href="/"><i class="fa fa-dashboard"></i> Home</a></li>
8
+ <li><%%= link_to "<%= plural_table_name.capitalize %>", <%= plural_table_name %>_path %></li>
9
+ <li class="active">Edit</li>
10
+ </ol>
11
+ </h1>
12
+ </section>
13
+ <%% end %>
14
+
15
+ <%%= render 'form' %>
@@ -0,0 +1,52 @@
1
+ <%% content_for :content_header do %>
2
+ <section class="content-header">
3
+ <h1>Listing <small><%= plural_table_name %></small></h1>
4
+
5
+ <ol class="breadcrumb">
6
+ <li><a href="/"><i class="fa fa-dashboard"></i> Home</a></li>
7
+ <li class="active"><%= plural_table_name %></li>
8
+ </ol>
9
+ </section>
10
+ <%% end %>
11
+
12
+ <section class="content">
13
+ <div class="row">
14
+ <div class="col-xs-12">
15
+ <div class="box box-primary">
16
+ <div class="box-header">
17
+ <div class="box-tools pull-right">
18
+ <%%= link_to new_<%= singular_table_name %>_path(@<%= singular_table_name %>), :class => 'btn btn-success' do %>
19
+ <span class="glyphicon glyphicon-plus"></span>
20
+ New <%= human_name %>
21
+ <%% end %>
22
+ </div>
23
+ </div>
24
+ <div class="box-body table-responsive">
25
+ <table class="table table-hover">
26
+ <thead>
27
+ <tr>
28
+ <% attributes.each do |attribute| -%>
29
+ <th><%= attribute.human_name %></th>
30
+ <% end -%>
31
+ <th></th>
32
+ <th></th>
33
+ <th></th>
34
+ </tr>
35
+ </thead>
36
+ <tbody>
37
+ <%%= content_tag_for(:tr, @<%= plural_table_name %>) do |<%= singular_table_name %>| %>
38
+ <% attributes.each do |attribute| -%>
39
+ <td><%%= <%= singular_table_name %>.<%= attribute.name %> %></td>
40
+ <% end -%>
41
+ <td><%%= link_to 'Show', <%= singular_table_name %> %></td>
42
+ <td><%%= link_to 'Edit', edit_<%= singular_table_name %>_path(<%= singular_table_name %>) %></td>
43
+ <td><%%= link_to 'Destroy', <%= singular_table_name %>, method: :delete, data: { confirm: 'Are you sure?' } %></td>
44
+ <%% end %>
45
+ </tbody>
46
+ </table>
47
+ </div>
48
+ </div>
49
+ </div>
50
+ </div>
51
+ </section>
52
+
@@ -0,0 +1,13 @@
1
+ <%% content_for :content_header do %>
2
+ <section class="content-header">
3
+ <h1>New <small><%= singular_table_name %></small></h1>
4
+
5
+ <ol class="breadcrumb">
6
+ <li><a href="/"><i class="fa fa-dashboard"></i> Home</a></li>
7
+ <li><%%= link_to "<%= plural_table_name %>", <%= plural_table_name %>_path %></li>
8
+ <li class="active">New</li>
9
+ </ol>
10
+ </section>
11
+ <%% end %>
12
+
13
+ <%%= render 'form' %>
@@ -0,0 +1,38 @@
1
+ <%% content_for :content_header do %>
2
+ <section class="content-header">
3
+ <h1>Show <small><%= singular_table_name %></small></h1>
4
+
5
+ <ol class="breadcrumb">
6
+ <li><a href="/"><i class="fa fa-dashboard"></i> Home</a></li>
7
+ <li><%%= link_to "<%= plural_table_name.capitalize %>", <%= plural_table_name %>_path %></li>
8
+ <li class="active">Show</li>
9
+ </ol>
10
+ </section>
11
+ <%% end %>
12
+
13
+ <section class="content">
14
+ <div class="row">
15
+ <div class="col-md-12">
16
+ <div class="box box-primary">
17
+ <div class="box-header">
18
+ <div class="box-tools pull-right">
19
+ <%%= link_to edit_<%= singular_table_name %>_path(@<%= singular_table_name %>), :class => 'btn btn-primary' do %>
20
+ <span class="glyphicon glyphicon-pencil"></span>
21
+ Edit
22
+ <%% end %>
23
+ </div>
24
+ </div>
25
+ <div class="box-body">
26
+ <dl class="dl-horizontal">
27
+ <%- attributes.each do |attribute| -%>
28
+ <dt><%= attribute.human_name %>:</dt>
29
+ <dd><%%= @<%= singular_table_name %>.<%= attribute.name %> %></dd>
30
+
31
+ <%- end -%>
32
+ </dl>
33
+ </div>
34
+ </div>
35
+ </div>
36
+ </div>
37
+ </section>
38
+
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phcmembers
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - BradPotts
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-13 00:00:00.000000000 Z
11
+ date: 2016-03-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -98,6 +98,20 @@ dependencies:
98
98
  - - "~>"
99
99
  - !ruby/object:Gem::Version
100
100
  version: '4.5'
101
+ - !ruby/object:Gem::Dependency
102
+ name: adminlte-generators
103
+ requirement: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - "~>"
106
+ - !ruby/object:Gem::Version
107
+ version: 0.2.4
108
+ type: :runtime
109
+ prerelease: false
110
+ version_requirements: !ruby/object:Gem::Requirement
111
+ requirements:
112
+ - - "~>"
113
+ - !ruby/object:Gem::Version
114
+ version: 0.2.4
101
115
  - !ruby/object:Gem::Dependency
102
116
  name: sass-rails
103
117
  requirement: !ruby/object:Gem::Requirement
@@ -158,6 +172,40 @@ dependencies:
158
172
  - - ">="
159
173
  - !ruby/object:Gem::Version
160
174
  version: 2.5.2
175
+ - !ruby/object:Gem::Dependency
176
+ name: oj
177
+ requirement: !ruby/object:Gem::Requirement
178
+ requirements:
179
+ - - "~>"
180
+ - !ruby/object:Gem::Version
181
+ version: '2.14'
182
+ - - ">="
183
+ - !ruby/object:Gem::Version
184
+ version: 2.14.6
185
+ type: :runtime
186
+ prerelease: false
187
+ version_requirements: !ruby/object:Gem::Requirement
188
+ requirements:
189
+ - - "~>"
190
+ - !ruby/object:Gem::Version
191
+ version: '2.14'
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ version: 2.14.6
195
+ - !ruby/object:Gem::Dependency
196
+ name: rabl
197
+ requirement: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - "~>"
200
+ - !ruby/object:Gem::Version
201
+ version: 0.12.0
202
+ type: :runtime
203
+ prerelease: false
204
+ version_requirements: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - "~>"
207
+ - !ruby/object:Gem::Version
208
+ version: 0.12.0
161
209
  - !ruby/object:Gem::Dependency
162
210
  name: figaro
163
211
  requirement: !ruby/object:Gem::Requirement
@@ -316,10 +364,10 @@ dependencies:
316
364
  - - "~>"
317
365
  - !ruby/object:Gem::Version
318
366
  version: '2.52'
319
- description: PHC-Members is a membership and web directory engine for ruby on rails
320
- apps setup for use with Devise User.
367
+ description: PHC-Press is an open source membership and listing directory engine purpose
368
+ built for PHCMembers application.
321
369
  email:
322
- - bradley.j.potts@gmail.com
370
+ - info@phcnetworks.net
323
371
  executables: []
324
372
  extensions: []
325
373
  extra_rdoc_files: []
@@ -333,6 +381,7 @@ files:
333
381
  - app/assets/javascripts/phcmembers/members/contacts.js
334
382
  - app/assets/javascripts/phcmembers/members/listings.js
335
383
  - app/assets/javascripts/phcmembers/members/mains.js
384
+ - app/assets/stylesheets/adminlte_overrides.scss
336
385
  - app/assets/stylesheets/phcmembers/_custom.scss
337
386
  - app/assets/stylesheets/phcmembers/_variables.scss
338
387
  - app/assets/stylesheets/phcmembers/application.css.scss
@@ -342,18 +391,23 @@ files:
342
391
  - app/assets/stylesheets/phcmembers/members/listings.scss
343
392
  - app/assets/stylesheets/phcmembers/members/mains.scss
344
393
  - app/assets/stylesheets/scaffolds.scss
394
+ - app/controllers/phcmembers/api/catsapi_controller.rb
395
+ - app/controllers/phcmembers/api/listapi_controller.rb
345
396
  - app/controllers/phcmembers/application_controller.rb
346
397
  - app/controllers/phcmembers/directory/categories_controller.rb
347
398
  - app/controllers/phcmembers/directory/catlists_controller.rb
348
399
  - app/controllers/phcmembers/members/contacts_controller.rb
349
400
  - app/controllers/phcmembers/members/listings_controller.rb
350
401
  - app/controllers/phcmembers/members/mains_controller.rb
402
+ - app/helpers/nav_helper.rb
351
403
  - app/helpers/phcmembers/application_helper.rb
352
404
  - app/helpers/phcmembers/directory/categories_helper.rb
353
405
  - app/helpers/phcmembers/directory/catlists_helper.rb
354
406
  - app/helpers/phcmembers/members/contacts_helper.rb
355
407
  - app/helpers/phcmembers/members/listings_helper.rb
356
408
  - app/helpers/phcmembers/members/mains_helper.rb
409
+ - app/models/phcmembers/api/category.rb
410
+ - app/models/phcmembers/api/catlist.rb
357
411
  - app/models/phcmembers/directory.rb
358
412
  - app/models/phcmembers/directory/category.rb
359
413
  - app/models/phcmembers/directory/catlist.rb
@@ -361,11 +415,16 @@ files:
361
415
  - app/models/phcmembers/members/contact.rb
362
416
  - app/models/phcmembers/members/listing.rb
363
417
  - app/models/phcmembers/members/main.rb
418
+ - app/views/layouts/_application_header.html.erb
419
+ - app/views/layouts/_application_sidebar.html.erb
420
+ - app/views/layouts/application.html.erb
364
421
  - app/views/layouts/phcmembers/application.html.erb
365
422
  - app/views/layouts/phcmembers/directory/directory_all.html.erb
366
423
  - app/views/layouts/phcmembers/members/members_all.html.erb
367
424
  - app/views/layouts/phcnotifi/components/_notifications.html.erb
368
425
  - app/views/layouts/phcnotifi/components/_validations.html.erb
426
+ - app/views/phcmembers/api/catsapi/index.json.rabl
427
+ - app/views/phcmembers/api/listapi/index.json.rabl
369
428
  - app/views/phcmembers/directory/categories/_form.html.erb
370
429
  - app/views/phcmembers/directory/categories/edit.html.erb
371
430
  - app/views/phcmembers/directory/categories/index.html.erb
@@ -401,7 +460,13 @@ files:
401
460
  - lib/phcmembers/engine.rb
402
461
  - lib/phcmembers/version.rb
403
462
  - lib/tasks/phcmembers_tasks.rake
404
- homepage: http://phcmembers.com
463
+ - lib/templates/erb/controller/view.html.erb
464
+ - lib/templates/erb/scaffold/_form.html.erb
465
+ - lib/templates/erb/scaffold/edit.html.erb
466
+ - lib/templates/erb/scaffold/index.html.erb
467
+ - lib/templates/erb/scaffold/new.html.erb
468
+ - lib/templates/erb/scaffold/show.html.erb
469
+ homepage: http://phcnetworks.net/engine-yard
405
470
  licenses:
406
471
  - GPL-3.0
407
472
  metadata: {}