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
.container-attorney | |
@include outer-container | |
@include media($small) | |
@include media($large) | |
@include media($tablet) | |
@include media($screen) | |
@include media($l-screen) | |
.attorney-motto | |
p |
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
@import "neat-helpers" | |
$column: 90px | |
$gutter: 30px | |
$grid-columns: 36 | |
$max-width: 2000px | |
$visual-grid-color: red | |
$visual-grid-opacity: 0.3 | |
$visual-grid: false |
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
.container.practice-areas | |
@include outer-container | |
section.practice-list | |
@include media($small) | |
@include span-columns(10) | |
@include shift(1) | |
letter-spacing: 2px | |
line-height: 1.2em | |
@include media($large) | |
@include media($tablet) |
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
mindblown@ ~/expect3/Projects/lawyer_template (master) $ zeus test spec/controllers/sessions_controller_spec.rb | |
.*.** | |
Pending: (Failures listed here are expected and do not affect your suite's status) | |
1) SessionsController GET new redirects to admin panel if user is authenticated | |
# Temporarily skipped with xit | |
# ./spec/controllers/sessions_controller_spec.rb:10 | |
2) SessionsController GET new POST create with valid credentials it redirects to admin panel |
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
require 'rails_helper' | |
describe Admin::PanelController do | |
describe "GET index" do | |
context "user has access" do | |
it "renders admin panel" do | |
set_user_session("admin") | |
get :index |
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
1) Main Scroller creates a line | |
Failure/Error: click_button 'create a new slider' | |
Capybara::ElementNotFound: | |
Unable to find button "create a new slider" | |
# /Users/mindblown/.rvm/gems/ruby-2.3.0/gems/capybara-2.8.1/lib/capybara/node/finders.rb:44:in `block in find' | |
# /Users/mindblown/.rvm/gems/ruby-2.3.0/gems/capybara-2.8.1/lib/capybara/node/base.rb:85:in `synchronize' | |
# /Users/mindblown/.rvm/gems/ruby-2.3.0/gems/capybara-2.8.1/lib/capybara/node/finders.rb:33:in `find' | |
# /Users/mindblown/.rvm/gems/ruby-2.3.0/gems/capybara-2.8.1/lib/capybara/node/actions.rb:57:in `click_button' | |
# /Users/mindblown/.rvm/gems/ruby-2.3.0/gems/capybara-2.8.1/lib/capybara/session.rb:735:in `block (2 levels) in <class:Session>' |
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
.container.footer | |
@include outer-container | |
padding-bottom: 30px | |
background: image-url("footer-background.jpg") | |
background-size: cover | |
color: white |
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
ndblown/.rvm/gems/ruby-2.3.0/bin/rails:22:in `<main>': undefined method `activate_bin_path' for Gem:Module (NoMethodError) | |
from /Users/mindblown/.rvm/gems/ruby-2.3.0/bin/ruby_executable_hooks:15:in `eval' | |
from /Users/mindblown/.rvm/gems/ruby-2.3.0/bin/ruby_executable_hooks:15:in `<main>' | |
mindblown@ ~/exp |
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
= f.select :navigation_link_id, @navigation_links.collect { |p| [p.name, p.id ] } << ["Top", nil] |
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
.form-group | |
= f.label "Parent", class: "col-lg-2 col-md-2 col-sm-12 control-label" | |
.col-lg-10.col-md-10 | |
= f.select(:navigation_link_id, options_for_select((@top_level_links.collect { |p| [ p.name, p.id ] } << ["Top", nil]).reverse, selected: navigation_link.parent_id)) |
OlderNewer