Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
cbb8029
basic devise setup
cadyherron Apr 1, 2016
a38dbd9
sign-in working
samok13 Apr 1, 2016
cc95484
dropdown is there, awwww yeah
cadyherron Apr 1, 2016
6a215b9
working on getting a user boards
samok13 Apr 1, 2016
b941c44
can kind of create a new board
cadyherron Apr 1, 2016
8fdd805
working delete board
samok13 Apr 1, 2016
34b3a9b
adding new board + redirect
samok13 Apr 1, 2016
69ee4ba
at a crossroads, need to figure out if we're looping or making anothe…
cadyherron Apr 1, 2016
e1d02a4
better api call, trying to find single board now
cadyherron Apr 3, 2016
0dcc504
okay now we have current board and current lists
cadyherron Apr 3, 2016
a742d21
getting started on lists
cadyherron Apr 4, 2016
c1d41c4
can create a list now based on current board
cadyherron Apr 4, 2016
795dbd4
figuring out lists across controllers
cadyherron Apr 4, 2016
c471b8f
more service-y
cadyherron Apr 4, 2016
5ff6afd
introducing xeditable
cadyherron Apr 4, 2016
ba6bc47
need to refactor to go any further
cadyherron Apr 4, 2016
3d4e37d
figured out multi-view, some validations and edit in place
cadyherron Apr 4, 2016
aa25bdc
styling and debugging
cadyherron Apr 4, 2016
da08407
cleanup
cadyherron Apr 4, 2016
68ad52c
putting cards in place
cadyherron Apr 4, 2016
a074051
ready to tackle modals
cadyherron Apr 4, 2016
306c555
basic modal is working
cadyherron Apr 5, 2016
5628d65
youuuuuuuuuuuu sneaky scope
cadyherron Apr 5, 2016
ce25851
figured out new vs. edit for cards
cadyherron Apr 5, 2016
27f225a
still broken...
cadyherron Apr 5, 2016
16e61fa
don't copy and paste, kids
cadyherron Apr 5, 2016
f0ab544
let's try a little refactor here
cadyherron Apr 5, 2016
8375d99
squashed list update bug
cadyherron Apr 5, 2016
f63c15b
cleanup, more includes
cadyherron Apr 5, 2016
9ccdc9f
ooooh yeah, data-dismiss
cadyherron Apr 5, 2016
c6a4978
editing boards in place not quite working
cadyherron Apr 5, 2016
7c66e01
can edit boards in place
cadyherron Apr 14, 2016
222c2ec
styling
cadyherron Apr 14, 2016
40b19f9
precompile
cadyherron Apr 14, 2016
2de1f5e
Update README.md
cadyherron Apr 14, 2016
119199b
Update README.md
cadyherron Apr 14, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile '~/.gitignore_global'

# Ignore bundler config.
/.bundle

# Ignore all logfiles and tempfiles.
/log/*
!/log/.keep
/tmp
69 changes: 69 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
source 'https://rubygems.org'


# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.6'
# Use postgresql as the database for Active Record
gem 'pg', '~> 0.15'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby

# Use jquery as the JavaScript library
gem 'jquery-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc

# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'

# Use Unicorn as the app server
# gem 'unicorn'

# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development

gem 'faker'

gem 'bootstrap-sass'

gem 'devise'

gem 'angularjs-rails'
gem 'angular_rails_csrf'


source "https://rails-assets.org" do
gem "rails-assets-angular-devise"
end

group :production do
gem 'rails_12factor' # heroku
end

group :development do
gem 'guard-rspec', require: false # rspec
end

group :test do
gem 'capybara'
gem 'launchy'
end

group :development, :test do
gem 'jazz_hands', github: 'nixme/jazz_hands', branch: 'bring-your-own-debugger'
gem 'pry-byebug'
gem 'better_errors'
gem 'binding_of_caller' # goes with better_errors
gem 'rspec-rails'
gem 'factory_girl_rails', '~> 4.0'
gem 'letter_opener'
end

Loading