repo_name
stringlengths
6
97
path
stringlengths
3
341
text
stringlengths
8
1.02M
ipublic/marketplace
app/models/integrations/generate_notice.rb
class Integrations::GenerateNotice include Mongoid::Document end
ipublic/marketplace
spec/factories/notices_ui_lien_notices.rb
<reponame>ipublic/marketplace<gh_stars>0 FactoryBot.define do factory :notices_ui_lien_notice, class: 'Notices::UiLienNotice' do end end
ipublic/marketplace
app/models/parties/person_name.rb
<filename>app/models/parties/person_name.rb module Parties class PersonName include Mongoid::Document embedded_in :person_party, class_name: "Parties::PersonParty" field :first_name, type: String field :middle_name, type: String field :last_name, type: String field :name_pfx, type: Str...
ipublic/marketplace
spec/factories/financial_accounts_financial_accounts.rb
FactoryBot.define do factory :financial_accounts_financial_account, class: 'FinancialAccounts::FinancialAccount' do end end
ipublic/marketplace
app/models/integrations/get_priority_mail_receipt.rb
<filename>app/models/integrations/get_priority_mail_receipt.rb<gh_stars>0 class Integrations::GetPriorityMailReceipt include Mongoid::Document end
ipublic/marketplace
app/models/determinations/group_health_insurance_eligibility_determination.rb
class Determinations::GroupHealthInsuranceEligibilityDetermination include Mongoid::Document end
ipublic/marketplace
app/models/determinations/individual_ui_liability_determination.rb
<filename>app/models/determinations/individual_ui_liability_determination.rb class Determinations::IndividualUiLiabilityDetermination include Mongoid::Document end
ipublic/marketplace
spec/factories/subscriptions_features.rb
FactoryBot.define do factory :subscriptions_feature, class: 'Subscriptions::Feature' do end end
ipublic/marketplace
spec/factories/sagas_sagas.rb
<filename>spec/factories/sagas_sagas.rb<gh_stars>0 FactoryBot.define do factory :sagas_saga, class: 'Sagas::Saga' do end end
ipublic/marketplace
app/jobs/application_job.rb
<reponame>ipublic/marketplace class ApplicationJob < ActiveJob::Base before_enqueue do |job| puts "Before job is enqueued" end after_enqueue do |job| puts "After job is enqueued" end before_perform do |job| puts "Before job is performed" end after_perform do |job| puts "After job is p...
ipublic/marketplace
spec/factories/dispatcher_workers_echo_workers.rb
<gh_stars>0 FactoryBot.define do factory :dispatcher_workers_echo_worker, class: 'Dispatcher::Workers::EchoWorker' do end end
ipublic/marketplace
app/models/integrations/get_offers_in_compromise.rb
<gh_stars>0 class Integrations::GetOffersInCompromise include Mongoid::Document end
ipublic/marketplace
config/initializers/dispatcher.rb
require 'sneakers' require 'sneakers/metrics/logging_metrics' # Mongoid extension to support GlobalID # JSON adapter for # config.acapi.publish_amqp_events = :log # or true in production env # config.acapi.app_id = "enroll" # ExchangeType # Process # RoutingSlip - has_many Tasks # ID # Task # TaskHost # T...
ipublic/marketplace
spec/factories/products_products.rb
FactoryBot.define do factory :products_product, class: 'Products::Product' do end end
ipublic/marketplace
app/models/products/individual_health_insurance.rb
<filename>app/models/products/individual_health_insurance.rb class Products::IndividualHealthInsurance include Mongoid::Document end
ipublic/marketplace
app/models/parties/party_relationship.rb
module Parties class PartyRelationship include Mongoid::Document include Mongoid::Timestamps # embedded_in :party_role, # class_name: "Parties::PartyRole" belongs_to :party_relationship_kind, class_name: 'Parties::PartyRelationshipKind' has_many :party_roles, ...
ipublic/marketplace
app/models/financial_accounts/financial_transaction_kind.rb
<filename>app/models/financial_accounts/financial_transaction_kind.rb class FinancialAccounts::FinancialTransactionKind include Mongoid::Document end
ipublic/marketplace
app/models/determinations/pfl_contribution_rate_determination.rb
class Determinations::PflContributionRateDetermination include Mongoid::Document end
ipublic/marketplace
app/models/integrations/ui_iceasa.rb
# ICESA Record format used by DC DOES Unemployment Insurance group module Integrations class UiIceasa include Mongoid::Document def dsl # Record Length: 275 chars # Deliminiators: CRLF (0D0A in hex) at end of each record - positions 276 & 277 Slither.define :simple, :by_bytes => false do |d| d.temp...
ipublic/marketplace
spec/factories/parties_person_parties.rb
FactoryBot.define do factory :parties_person_party, class: 'Parties::PersonParty' do end end
ipublic/marketplace
spec/factories/financial_accounts_financial_transactions.rb
FactoryBot.define do factory :financial_accounts_financial_transaction, class: 'FinancialAccounts::FinancialTransaction' do end end
ipublic/marketplace
spec/factories/fees_administrative_fees.rb
FactoryBot.define do factory :fees_administrative_fee, class: 'Fees::AdministrativeFee' do end end
ipublic/marketplace
app/models/subscriptions/subscribe.rb
<reponame>ipublic/marketplace module Subscriptions class Subscribe include EventSource::Command # Attributes to track in the event and update the model attributes :tenant_id, :feature_id, :metadata private # Use #build_event to hook into event source framework def build_event Subscrib...
ipublic/marketplace
spec/factories/wages_nonexempt_wage_entries.rb
FactoryBot.define do factory :wages_nonexempt_wage_entry, class: 'Wages::NonexemptWageEntry' do end end
ipublic/marketplace
spec/factories/taxes_paid_family_leave_taxes.rb
<gh_stars>0 FactoryBot.define do factory :taxes_paid_family_leave_tax, class: 'Taxes::PaidFamilyLeaveTax' do end end
ipublic/marketplace
app/models/dispatcher/tasks/edi_rx_task.rb
class Dispatcher::Tasks::EdiRxTask include Mongoid::Document end
ipublic/marketplace
spec/factories/dispatcher_activities_group_terminate_activities.rb
FactoryBot.define do factory :dispatcher_activities_group_terminate_activity, class: 'Dispatcher::Activities::GroupTerminateActivity' do end end
ipublic/marketplace
app/models/employers/employer_factory.rb
module Employers class EmployerFactory def self.call(contact_info:, employer_info:, address_info:) employer = Parties::OrganizationParty.new(legal_name: employer_info.legal_name, fein: employer_info.fein, entity_kind: employer_info.kind.to_sym, is_foreign_entity: false) contact = Parties::PersonParty.ne...
ipublic/marketplace
spec/factories/fees_interest_fees.rb
FactoryBot.define do factory :fees_interest_fee, class: 'Fees::InterestFee' do end end
ipublic/marketplace
app/models/wages/wage_report_factory.rb
module Wages class WageReportFactory attr_accessor :wage_report, :current_report def self.call(organization_party, report_timespan, args) new(organization_party, args).wage_report end def initialize @organization_party = organization_party @wage_report = organization_party.wage_re...
ipublic/marketplace
spec/factories/products_unemployment_insurances.rb
<reponame>ipublic/marketplace FactoryBot.define do factory :products_unemployment_insurance, class: 'Products::UnemploymentInsurance' do end end
ipublic/marketplace
app/models/permission.rb
<reponame>ipublic/marketplace class Permission include Mongoid::Document embeds_many :filter_tokens field :role_name, type: String end
ipublic/marketplace
db/seedfiles/bakery_cupcake_seed.rb
<gh_stars>0 puts "*"*80 puts "Populating Bakery Cupcake Data" puts "*"*80 cupcake_count = 50_000 # cupcake_count = 50 cupcake_collection_name = "bakery_cupcakes" cupcake_collection = Mongoid.default_client.collections.select { |col| col.name == cupcake_collection_name } if cupcake_collection.present? puts " Droppi...
ipublic/marketplace
db/seeds.rb
<reponame>ipublic/marketplace<filename>db/seeds.rb puts "*"*80 puts "Purging Database and Removing Indexes" system "rake db:mongoid:purge" system "rake db:mongoid:remove_indexes" puts "*"*80 puts "*"*80 puts "Start of seed data" puts "*"*80 puts "*"*80 puts "Loading Timespans" # (Timespans::YEAR_MINIMUM..Timespans::Y...
ipublic/marketplace
app/controllers/wage_reports_controller.rb
<reponame>ipublic/marketplace class WageReportsController < ApplicationController layout 'two_column' before_action :authenticate_user! def index @organization = Parties::OrganizationParty.find(params[:employer_id]) @all_quarters = Timespans::Timespan.all_quarters @current_quarters = Wages::WageRepo...
ipublic/marketplace
spec/factories/determinations_pfl_liability_determinations.rb
<filename>spec/factories/determinations_pfl_liability_determinations.rb FactoryBot.define do factory :determinations_pfl_liability_determination, class: 'Determinations::PflLiabilityDetermination' do end end
ipublic/marketplace
app/models/financial_accounts/financial_transaction.rb
<reponame>ipublic/marketplace module FinancialAccounts class FinancialTransaction include Mongoid::Document # TODO Make transaction immutable belongs_to :financial_account, class_name: 'FinancialAccounts::FinancialAccount' field :title, type: String field :memo, type: String f...
ipublic/marketplace
spec/factories/fees_penalty_fees.rb
<gh_stars>0 FactoryBot.define do factory :fees_penalty_fee, class: 'Fees::PenaltyFee' do end end
ipublic/marketplace
app/models/integrations/post_party_update.rb
<filename>app/models/integrations/post_party_update.rb<gh_stars>0 class Integrations::PostPartyUpdate include Mongoid::Document end
ipublic/marketplace
spec/factories/subscriptions_subscribes.rb
<reponame>ipublic/marketplace FactoryBot.define do factory :subscriptions_subscribe, class: 'Subscriptions::Subscribe' do end end
ipublic/marketplace
spec/factories/quanta_timespans.rb
<reponame>ipublic/marketplace FactoryBot.define do factory :quanta_timespan, class: 'Quanta::Timespan' do end end
ipublic/marketplace
app/models/products/group_dental_insurance.rb
class Products::GroupDentalInsurance include Mongoid::Document end
ipublic/marketplace
app/models/wages/wage_report_service.rb
<reponame>ipublic/marketplace module Wages class WageReportService attr_reader :wage_report, :business_policy def initialize(wage_report) @wage_report = wage_report end def open_case end def determine_ui_contribution_rate end end end
ipublic/marketplace
app/models/sagas/routing_slip.rb
class Sagas::RoutingSlip attr_reader :completed_worklogs, :next_work_item # completed_worklogs = Stack.new #worklog stack # next_work_item = WorkItemQueue.new # work_item queue def initialize(work_items = []) raise ArgumentError.new "expected array" unless work_items.is_a? Array work_items.each { |work_ite...
ipublic/marketplace
spec/factories/dispatcher_workflows.rb
<filename>spec/factories/dispatcher_workflows.rb FactoryBot.define do factory :dispatcher_workflow, class: 'Dispatcher::Workflow' do end end
ipublic/marketplace
app/controllers/settings_controller.rb
<gh_stars>0 class SettingsController < ApplicationController layout 'two_column' before_action :authenticate_user! def home @roles = Role.all end def get_roles @roles = Role.all render json: @roles end def get_keys @keys = FilterToken.all render json: @keys end def get_permissi...
ipublic/marketplace
app/models/dispatcher/activities/group_reinstate_activity.rb
class Dispatcher::Activities::GroupReinstateActivity include Mongoid::Document end
ipublic/marketplace
app/models/products/paid_family_leave.rb
<reponame>ipublic/marketplace<filename>app/models/products/paid_family_leave.rb class Products::PaidFamilyLeave include Mongoid::Document end
ipublic/marketplace
spec/factories/determinations_pfl_contribution_rate_determinations.rb
<reponame>ipublic/marketplace FactoryBot.define do factory :determinations_pfl_contribution_rate_determination, class: 'Determinations::PflContributionRateDetermination' do end end
ipublic/marketplace
app/models/determinations/determination.rb
<filename>app/models/determinations/determination.rb module Determinations class Determination include Mongoid::Document belongs_to :effective_period field :determined_at, type: Time has_many :timespans, class_name: 'TimeSpans:Timespan' end end
ipublic/marketplace
app/models/financial_accounts/party_ledger_account_balance.rb
class FinancialAccounts::PartyLedgerAccountBalance include Mongoid::Document end
ipublic/marketplace
app/models/wages/wage_report.rb
module Wages TAXABLE_WAGES_MAXIMUM = 9_000 class WageReport include Mongoid::Document include Mongoid::Timestamps SUBMISSION_KINDS = [:original, :amended, :estimated] FILING_METHOD_KINDS = [:upload, :manual_entry, :no_wages] STATUS_KINDS = [:processed, :submitted, :terminated] # attr_...
ipublic/marketplace
config/routes.rb
Rails.application.routes.draw do namespace :api do namespace :v3 do get 'cupcakes/index' end end get 'subscriptions/index' get 'subscriptions/create' get 'subscriptions/new' get 'subscriptions/show' get 'subscriptions/update' devise_for :users get 'pages/home' get 'settings/home' m...
ipublic/marketplace
app/models/notices/ui_blocked_claim_ineligible_notice.rb
<reponame>ipublic/marketplace class Notices::UiBlockedClaimIneligibleNotice include Mongoid::Document end
ipublic/marketplace
spec/factories/timespans_timespans.rb
<gh_stars>0 FactoryBot.define do factory :timespans_timespan, class: 'Timespans::Timespan' do end end
ipublic/marketplace
app/models/document.rb
<reponame>ipublic/marketplace<filename>app/models/document.rb class Document include Mongoid::Document include Mongoid::Timestamps ACCESS_RIGHTS = [:public, :pii_restricted] TYPE_KINDS = [:collection, :dataset, :event, :image, :interactive_resource, :se...
ipublic/marketplace
spec/factories/fees_premium_fees.rb
<filename>spec/factories/fees_premium_fees.rb FactoryBot.define do factory :fees_premium_fee, class: 'Fees::PremiumFee' do end end
ipublic/marketplace
app/models/integrations/file_lien.rb
class Integrations::FileLien include Mongoid::Document end
ipublic/marketplace
spec/factories/notices_notices.rb
<reponame>ipublic/marketplace FactoryBot.define do factory :notices_notice, class: 'Notices::Notice' do end end
ipublic/marketplace
spec/factories/integrations_post_party_updates.rb
FactoryBot.define do factory :integrations_post_party_update, class: 'Integrations::PostPartyUpdate' do end end
ipublic/marketplace
spec/factories/financial_accounts_financial_transaction_kinds.rb
FactoryBot.define do factory :financial_accounts_financial_transaction_kind, class: 'FinancialAccounts::FinancialTransactionKind' do end end
ipublic/marketplace
spec/models/roles/relationship_role_factory_spec.rb
require 'rails_helper' RSpec.describe Roles::RelationshipRoleFactory, type: :model, dbclean: :after_each do let(:band_battle_party_relationship_kind_key) { :band_battle } let(:hero_party_role_kind_key) { :hero } let(:evil_ex_party_role_kind_key) { :evil_ex } let(:hero_current_first_name) { 'Scott' } le...
ipublic/marketplace
config/deploy.rb
<reponame>ipublic/marketplace<filename>config/deploy.rb server '172.30.0.41', port: 22, roles: [:web, :app, :db], primary: true set :repo_url, '<EMAIL>:ipublic/marketplace.git' set :application, 'marketplace' set :user, 'nginx' set :puma_threads, [4, 16] set :puma_workers, 2 # Don't change...
ipublic/marketplace
spec/factories/subscriptions_tenants.rb
FactoryBot.define do factory :subscriptions_tenant, class: 'Subscriptions::Tenant' do end end
ipublic/marketplace
spec/factories/taxes_unemployment_insurance_taxes.rb
FactoryBot.define do factory :taxes_unemployment_insurance_tax, class: 'Taxes::UnemploymentInsuranceTax' do end end
ipublic/marketplace
spec/factories/determinations_group_ui_liability_determinations.rb
<filename>spec/factories/determinations_group_ui_liability_determinations.rb FactoryBot.define do factory :determinations_group_ui_liability_determination, class: 'Determinations::GroupUiLiabilityDetermination' do end end
ipublic/marketplace
spec/factories/integrations_redetermine_ui_contribution_rates.rb
<filename>spec/factories/integrations_redetermine_ui_contribution_rates.rb<gh_stars>0 FactoryBot.define do factory :integrations_redetermine_ui_contribution_rate, class: 'Integrations::RedetermineUiContributionRate' do end end
ipublic/marketplace
app/models/financial_accounts/party_ledger.rb
<filename>app/models/financial_accounts/party_ledger.rb module FinancialAccounts class PartyLedger include Mongoid::Document field :total_due, type: BigDecimal belongs_to :party, class_name: 'Parties::Party' has_many :financial_accounts, class_name: 'FinancialAccounts::FinancialAccoun...
ipublic/marketplace
app/jobs/generate_notice_job.rb
class GenerateNoticeJob < ApplicationJob queue_as :default # exchange_name :GenerateNotice def perform(*args) # Do something later puts 'Perform a job' Sneakers.logger.info "Hello World!" end end
ipublic/marketplace
spec/factories/sagas_routing_slips.rb
FactoryBot.define do factory :sagas_routing_slip, class: 'Sagas::RoutingSlip' do end end
ipublic/marketplace
lib/marketplace.rb
<filename>lib/marketplace.rb module Marketplace # Namespaced nested exception. Wraps any underlying exception that may have # resulted from a different failure # For example on how to construct Exception test, see: # https://gist.github.com/avdi/772356 class Error < StandardError attr_reader :original def ...
ipublic/marketplace
config/initializers/flipper.rb
require 'flipper' # require 'mongo' require 'flipper/adapters/mongo.rb' # host = Mongoid::Config.clients[:default][:hosts].first # database_name = Mongoid.client(:default).database.name # flipper_client = Mongo::Client.new([ host ], :database => database_name) # feature_collection = flipper_client[:my_flipper_setting...
ipublic/marketplace
app/models/bakery/sprinkle.rb
<gh_stars>0 # frozen_string_literal: true module Bakery class Sprinkle include Mongoid::Document embedded_in :cupcake, class_name: 'Bakery::Cupcake' COLOR_KINDS = %w[ red white blue yellow green pink orange purple black ].freeze SHAPE_KINDS = %w[ star circle diamond square hexagon ].freeze fiel...
ipublic/marketplace
app/models/determinations/ui_determination_service.rb
<filename>app/models/determinations/ui_determination_service.rb module Determinations class UiDeterminationService include ActiveSupport::Configurable attr_accessor :party def initialize(party: nil) @party = party @active_role_keys = @party.active_party_role_keys end def initial_liab...
ipublic/marketplace
spec/factories/notices_ui_contribution_rate_notices.rb
FactoryBot.define do factory :notices_ui_contribution_rate_notice, class: 'Notices::UiContributionRateNotice' do end end
ipublic/marketplace
app/models/integrations/import_wage_report.rb
class Integrations::ImportWageReport include Mongoid::Document end
ipublic/marketplace
app/helpers/api/v3/cupcakes_helper.rb
<gh_stars>0 module Api::V3::CupcakesHelper end
ipublic/marketplace
spec/factories/determinations_determinations.rb
FactoryBot.define do factory :determinations_determination, class: 'Determinations::Determination' do end end
ipublic/marketplace
app/models/products/group_health_insurance.rb
<gh_stars>0 class Products::GroupHealthInsurance include Mongoid::Document end
ipublic/marketplace
app/models/notices/ui_contribution_rate_notice.rb
<reponame>ipublic/marketplace class Notices::UiContributionRateNotice include Mongoid::Document end
ipublic/marketplace
app/controllers/api/v3/cupcakes_controller.rb
module Api::V3 class CupcakesController < ApplicationController # before_action :bake_cupcakes def index @view_size = 20 @view_number ||= 1 @page_number = @view_number + 1 @offset = (@view_number * @view_size) @cupcake_count = Bakery::Cupcake.all.size @cupcakes = Bakery::...
ipublic/marketplace
lib/dispatcher/sneakers_boot.rb
<filename>lib/dispatcher/sneakers_boot.rb<gh_stars>0 require 'sneakers' require 'redis' require 'json' $redis = Redis.new class Processor include Sneakers::Worker from_queue :logs def work(msg) err = JSON.parse(msg) if err["type"] == "error" $redis.incr "processor:#{err["error"]}" end a...
ipublic/marketplace
app/models/employers/employer_service.rb
module Employers class EmployerService attr_accessor :factory def initialize(attrs={}) @factory = Employers::EmployerFactory end def save(form) model_attributes = form_params_to_attributes(form) objects = factory.call(model_attributes.except(:id)) store(form, objects) end...
ipublic/marketplace
app/models/eligibility_policies/eligibility_policy.rb
<gh_stars>0 module EligibilityPolicies class EligibilityPolicy include Mongoid::Document include Mongoid::Timestamps belongs_to :party_relationship_kinds, class_name: 'Parties::PartyRelationshipKind' end end
ipublic/marketplace
app/models/dispatcher/activities/group_terminate_activity.rb
<reponame>ipublic/marketplace<filename>app/models/dispatcher/activities/group_terminate_activity.rb class Dispatcher::Activities::GroupTerminateActivity include Mongoid::Document end
ipublic/marketplace
spec/models/parties/party_spec.rb
require 'rails_helper' RSpec.describe Parties::Party, type: :model do it { is_expected.to be_mongoid_document } it { is_expected.to have_timestamps } it { is_expected.to have_fields(:party_id, :registered_on, :profile_source, :contact_method)} it { is_expected.to embed_many(:documents)} it { is_expected.t...
ipublic/marketplace
app/models/subscriptions/subscribed.rb
<filename>app/models/subscriptions/subscribed.rb module Subscriptions class Subscribed < EventSource::EventStream data_attributes :tenant_id, :feature_id # Use #apply to update the source model record def apply(subscription) subscription.tenant_id = tenant_id subscription.feature_id ...
ipublic/marketplace
app/models/comment.rb
<gh_stars>0 class Comment include Mongoid::Document include Mongoid::Timestamps PRIORITY_KINDS = [:low, :normal, :high] embedded_in :commentable, polymorphic: true field :title, type: String field :content, type: String field :priority, type: String, default: :normal field :is_high_p...
ipublic/marketplace
app/models/financial_accounts/financial_account.rb
<reponame>ipublic/marketplace module FinancialAccounts class FinancialAccount include Mongoid::Document include Mongoid::Timestamps field :title, type: String field :opened_on, type: Date, default: ->{ TimeKeeper.date_of_record } belongs_to :party_ledger, class_name: 'FinancialAcc...
ipublic/marketplace
spec/models/timespans/timespan_spec.rb
require 'rails_helper' RSpec.describe Timespans::Timespan, type: :model, dbclean: :after_each do let(:this_year) { Date.today.year } let(:begin_on) { Date.new(this_year, 1, 1) } let(:end_on) { Date.new(this_year, 12, 31) } let(:title) { this_year.to_s } let(:params) do { title: title, beg...
ipublic/marketplace
spec/factories/integrations_assign_ui_cases.rb
FactoryBot.define do factory :integrations_assign_ui_case, class: 'Integrations::AssignUiCase' do end end
ipublic/marketplace
spec/factories/parties_organization_parties.rb
<gh_stars>0 FactoryBot.define do factory :parties_organization_party, class: 'Parties::OrganizationParty' do end end
ipublic/marketplace
spec/controllers/employers_controller_spec.rb
require 'rails_helper' RSpec.describe EmployersController, type: :controller do describe "POST #create" do let(:contact_info) do { :first_name => 'Silky', :last_name => 'Johnston', :dob => '09/22/1981', :email => '<EMAIL>', :area_code => '202', :number => '222-2222' ...
ipublic/marketplace
app/models/integrations/get_financial_transaction.rb
<reponame>ipublic/marketplace class Integrations::GetFinancialTransaction include Mongoid::Document end
ipublic/marketplace
app/models/wages/wage_entry.rb
<reponame>ipublic/marketplace module Wages class WageEntry include Mongoid::Document include Mongoid::Timestamps SUBMISSION_KINDS = [:original, :amended] AMEND_REASONS = ["Select Amendment Reason", "Wages Reported to Another State", "Wages Reported as Net Inst...
ipublic/marketplace
spec/factories/roles_role_factories.rb
FactoryBot.define do factory :roles_role_factory, class: 'Roles::RoleFactory' do end end
ipublic/marketplace
app/models/fees/unemployment_insurance_tax.rb
<gh_stars>0 class Fees::UnemploymentInsuranceTax include Mongoid::Document end
ipublic/marketplace
spec/factories/parties_organization_party_services.rb
<filename>spec/factories/parties_organization_party_services.rb FactoryBot.define do factory :parties_organization_party_service, class: 'Parties::OrganizationPartyService' do end end
ipublic/marketplace
app/models/employers/employer_form.rb
<reponame>ipublic/marketplace module Employers class AddressInfoForm include Virtus.model attribute :kind, String attribute :address_1, String attribute :address_2, String attribute :city, String attribute :state, String attribute :zip, String attribute :area_code, Integer attribu...
ipublic/marketplace
app/helpers/api/v3/echo_helper.rb
module Api::V3::EchoHelper end