Skip to content
This repository was archived by the owner on Apr 18, 2023. It is now read-only.

Commit 6c6de3c

Browse files
committed
initial
0 parents  commit 6c6de3c

File tree

146 files changed

+6371
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

146 files changed

+6371
-0
lines changed

Diff for: .gitignore

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile '~/.gitignore_global'
6+
7+
# Ignore bundler config.
8+
/.bundle
9+
10+
# Ignore all logfiles and tempfiles.
11+
/log/*
12+
!/log/.keep
13+
/tmp
14+
15+
config/secret_token.yml

Diff for: Gemfile

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
source 'https://rubygems.org'
2+
gem 'rails', '4.2.8'
3+
gem 'mysql2'
4+
gem 'sass-rails', '~> 5.0'
5+
gem 'uglifier', '>= 1.3.0'
6+
gem 'coffee-rails', '~> 4.1.0'
7+
gem 'jquery-rails'
8+
gem 'haml', '~> 4.0.5'
9+
gem 'nifty-utils'
10+
gem 'nilify_blanks', '~> 1.1.0'
11+
gem 'authie'
12+
gem 'annotate', '~> 2.6.5'
13+
gem 'kaminari', '~> 0.16.1'
14+
gem 'chronic', '~> 0.10.2'
15+
gem 'dynamic_form'
16+
gem 'bcrypt', '~> 3.1.7'
17+
gem 'rails_env_config', group: :development
18+
gem 'nifty-dialog'
19+
gem 'puma'

Diff for: Gemfile.lock

+164
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,164 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actionmailer (4.2.8)
5+
actionpack (= 4.2.8)
6+
actionview (= 4.2.8)
7+
activejob (= 4.2.8)
8+
mail (~> 2.5, >= 2.5.4)
9+
rails-dom-testing (~> 1.0, >= 1.0.5)
10+
actionpack (4.2.8)
11+
actionview (= 4.2.8)
12+
activesupport (= 4.2.8)
13+
rack (~> 1.6)
14+
rack-test (~> 0.6.2)
15+
rails-dom-testing (~> 1.0, >= 1.0.5)
16+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
17+
actionview (4.2.8)
18+
activesupport (= 4.2.8)
19+
builder (~> 3.1)
20+
erubis (~> 2.7.0)
21+
rails-dom-testing (~> 1.0, >= 1.0.5)
22+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
23+
activejob (4.2.8)
24+
activesupport (= 4.2.8)
25+
globalid (>= 0.3.0)
26+
activemodel (4.2.8)
27+
activesupport (= 4.2.8)
28+
builder (~> 3.1)
29+
activerecord (4.2.8)
30+
activemodel (= 4.2.8)
31+
activesupport (= 4.2.8)
32+
arel (~> 6.0)
33+
activesupport (4.2.8)
34+
i18n (~> 0.7)
35+
minitest (~> 5.1)
36+
thread_safe (~> 0.3, >= 0.3.4)
37+
tzinfo (~> 1.1)
38+
annotate (2.6.10)
39+
activerecord (>= 3.2, <= 4.3)
40+
rake (~> 10.4)
41+
arel (6.0.4)
42+
authie (3.0.0)
43+
bcrypt (3.1.10)
44+
builder (3.2.3)
45+
chronic (0.10.2)
46+
coffee-rails (4.1.0)
47+
coffee-script (>= 2.2.0)
48+
railties (>= 4.0.0, < 5.0)
49+
coffee-script (2.4.1)
50+
coffee-script-source
51+
execjs
52+
coffee-script-source (1.9.1.1)
53+
concurrent-ruby (1.0.5)
54+
dynamic_form (1.1.4)
55+
erubis (2.7.0)
56+
execjs (2.5.2)
57+
globalid (0.4.0)
58+
activesupport (>= 4.2.0)
59+
haml (4.0.6)
60+
tilt
61+
i18n (0.8.1)
62+
jquery-rails (4.0.3)
63+
rails-dom-testing (~> 1.0)
64+
railties (>= 4.2.0)
65+
thor (>= 0.14, < 2.0)
66+
json (2.1.0)
67+
kaminari (0.16.3)
68+
actionpack (>= 3.0.0)
69+
activesupport (>= 3.0.0)
70+
loofah (2.0.3)
71+
nokogiri (>= 1.5.9)
72+
mail (2.6.4)
73+
mime-types (>= 1.16, < 4)
74+
mime-types (3.1)
75+
mime-types-data (~> 3.2015)
76+
mime-types-data (3.2016.0521)
77+
mini_portile2 (2.1.0)
78+
minitest (5.10.1)
79+
mysql2 (0.3.18)
80+
nifty-dialog (1.1.0)
81+
nifty-utils (1.1.7)
82+
nilify_blanks (1.1.0)
83+
activerecord (>= 3.0.0)
84+
activesupport (>= 3.0.0)
85+
nokogiri (1.7.1)
86+
mini_portile2 (~> 2.1.0)
87+
puma (3.8.2)
88+
rack (1.6.5)
89+
rack-test (0.6.3)
90+
rack (>= 1.0)
91+
rails (4.2.8)
92+
actionmailer (= 4.2.8)
93+
actionpack (= 4.2.8)
94+
actionview (= 4.2.8)
95+
activejob (= 4.2.8)
96+
activemodel (= 4.2.8)
97+
activerecord (= 4.2.8)
98+
activesupport (= 4.2.8)
99+
bundler (>= 1.3.0, < 2.0)
100+
railties (= 4.2.8)
101+
sprockets-rails
102+
rails-deprecated_sanitizer (1.0.3)
103+
activesupport (>= 4.2.0.alpha)
104+
rails-dom-testing (1.0.8)
105+
activesupport (>= 4.2.0.beta, < 5.0)
106+
nokogiri (~> 1.6)
107+
rails-deprecated_sanitizer (>= 1.0.1)
108+
rails-html-sanitizer (1.0.3)
109+
loofah (~> 2.0)
110+
rails_env_config (1.0.0)
111+
railties (4.2.8)
112+
actionpack (= 4.2.8)
113+
activesupport (= 4.2.8)
114+
rake (>= 0.8.7)
115+
thor (>= 0.18.1, < 2.0)
116+
rake (10.5.0)
117+
sass (3.4.23)
118+
sass-rails (5.0.6)
119+
railties (>= 4.0.0, < 6)
120+
sass (~> 3.1)
121+
sprockets (>= 2.8, < 4.0)
122+
sprockets-rails (>= 2.0, < 4.0)
123+
tilt (>= 1.1, < 3)
124+
sprockets (3.7.1)
125+
concurrent-ruby (~> 1.0)
126+
rack (> 1, < 3)
127+
sprockets-rails (3.2.0)
128+
actionpack (>= 4.0)
129+
activesupport (>= 4.0)
130+
sprockets (>= 3.0.0)
131+
thor (0.19.4)
132+
thread_safe (0.3.6)
133+
tilt (2.0.7)
134+
tzinfo (1.2.3)
135+
thread_safe (~> 0.1)
136+
uglifier (2.7.1)
137+
execjs (>= 0.3.0)
138+
json (>= 1.8.0)
139+
140+
PLATFORMS
141+
ruby
142+
143+
DEPENDENCIES
144+
annotate (~> 2.6.5)
145+
authie
146+
bcrypt (~> 3.1.7)
147+
chronic (~> 0.10.2)
148+
coffee-rails (~> 4.1.0)
149+
dynamic_form
150+
haml (~> 4.0.5)
151+
jquery-rails
152+
kaminari (~> 0.16.1)
153+
mysql2
154+
nifty-dialog
155+
nifty-utils
156+
nilify_blanks (~> 1.1.0)
157+
puma
158+
rails (= 4.2.8)
159+
rails_env_config
160+
sass-rails (~> 5.0)
161+
uglifier (>= 1.3.0)
162+
163+
BUNDLED WITH
164+
1.14.5

Diff for: MIT-LICENCE

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Copyright 2017 Adam Cooke.
2+
3+
Permission is hereby granted, free of charge, to any person obtaining
4+
a copy of this software and associated documentation files (the
5+
"Software"), to deal in the Software without restriction, including
6+
without limitation the rights to use, copy, modify, merge, publish,
7+
distribute, sublicense, and/or sell copies of the Software, and to
8+
permit persons to whom the Software is furnished to do so, subject to
9+
the following conditions:
10+
11+
The above copyright notice and this permission notice shall be
12+
included in all copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Diff for: Procfile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: bundle exec puma -C config/puma.rb

Diff for: Procfile.options

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
app_name: budgets
2+
log_root: log
3+
pid_root: tmp/pids
4+
processes:
5+
web:
6+
restart_mode: usr2

Diff for: README.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Budgets
2+
3+
Budgets is a small Rails application that helps manage your finances.
4+
5+
![Screenshot](https://share.adam.ac/17/ZZ7D901Ewb.png)
6+
7+
## Installation
8+
9+
1. `git clone https://github.com/adamcooke/budgets`
10+
2. `cd budgets`
11+
3. `bundle install`
12+
4. Update `config/database.yml` with appropriate connection details.
13+
5. `bundle exec rake db:schema:load`
14+
6. `procodile start`

Diff for: Rakefile

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Add your own tasks in files placed in lib/tasks ending in .rake,
2+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3+
4+
require File.expand_path('../config/application', __FILE__)
5+
6+
Rails.application.load_tasks

Diff for: app/assets/images/.keep

Whitespace-only changes.

Diff for: app/assets/images/dropdown.svg

+11
Loading

Diff for: app/assets/images/pig.svg

+34
Loading

Diff for: app/assets/images/recur.svg

+18
Loading

0 commit comments

Comments
 (0)