Skip to content

Commit d70db77

Browse files
committed
initial app:
* users (authlogic) * authorizations * nodes pretty much working.
0 parents  commit d70db77

Some content is hidden

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

74 files changed

+1782
-0
lines changed

.gitignore

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# See http://help.github.com/ignore-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 the default SQLite database.
11+
/db/*.sqlite3
12+
13+
# Ignore all logfiles and tempfiles.
14+
/log/*.log
15+
/tmp
16+
17+
*~
18+
\#*
19+
.#*

Gemfile

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
source 'http://rubygems.org'
2+
3+
gem 'rails', '3.1.3'
4+
5+
# Bundle edge Rails instead:
6+
# gem 'rails', :git => 'git://github.com/rails/rails.git'
7+
8+
gem 'sqlite3'
9+
10+
11+
# Gems used only for assets and not required
12+
# in production environments by default.
13+
group :assets do
14+
gem 'sass-rails', '~> 3.1.5'
15+
gem 'coffee-rails', '~> 3.1.1'
16+
gem 'uglifier', '>= 1.0.3'
17+
end
18+
19+
gem 'jquery-rails'
20+
21+
gem 'authlogic'
22+
23+
gem 'haml'
24+
gem 'formtastic'
25+
26+
# To use ActiveModel has_secure_password
27+
# gem 'bcrypt-ruby', '~> 3.0.0'
28+
29+
# Use unicorn as the web server
30+
# gem 'unicorn'
31+
32+
# Deploy with Capistrano
33+
# gem 'capistrano'
34+
35+
# To use debugger
36+
# gem 'ruby-debug19', :require => 'ruby-debug'
37+

Gemfile.lock

+123
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
GEM
2+
remote: http://rubygems.org/
3+
specs:
4+
actionmailer (3.1.3)
5+
actionpack (= 3.1.3)
6+
mail (~> 2.3.0)
7+
actionpack (3.1.3)
8+
activemodel (= 3.1.3)
9+
activesupport (= 3.1.3)
10+
builder (~> 3.0.0)
11+
erubis (~> 2.7.0)
12+
i18n (~> 0.6)
13+
rack (~> 1.3.5)
14+
rack-cache (~> 1.1)
15+
rack-mount (~> 0.8.2)
16+
rack-test (~> 0.6.1)
17+
sprockets (~> 2.0.3)
18+
activemodel (3.1.3)
19+
activesupport (= 3.1.3)
20+
builder (~> 3.0.0)
21+
i18n (~> 0.6)
22+
activerecord (3.1.3)
23+
activemodel (= 3.1.3)
24+
activesupport (= 3.1.3)
25+
arel (~> 2.2.1)
26+
tzinfo (~> 0.3.29)
27+
activeresource (3.1.3)
28+
activemodel (= 3.1.3)
29+
activesupport (= 3.1.3)
30+
activesupport (3.1.3)
31+
multi_json (~> 1.0)
32+
arel (2.2.3)
33+
authlogic (3.1.3)
34+
activerecord (>= 3.0.0)
35+
activesupport (>= 3.0.0)
36+
builder (3.0.3)
37+
coffee-rails (3.1.1)
38+
coffee-script (>= 2.2.0)
39+
railties (~> 3.1.0)
40+
coffee-script (2.2.0)
41+
coffee-script-source
42+
execjs
43+
coffee-script-source (1.3.3)
44+
erubis (2.7.0)
45+
execjs (1.4.0)
46+
multi_json (~> 1.0)
47+
formtastic (2.0.2)
48+
rails (~> 3.0)
49+
haml (3.1.6)
50+
hike (1.2.1)
51+
i18n (0.6.1)
52+
jquery-rails (2.1.2)
53+
railties (>= 3.1.0, < 5.0)
54+
thor (~> 0.14)
55+
json (1.7.5)
56+
mail (2.3.3)
57+
i18n (>= 0.4.0)
58+
mime-types (~> 1.16)
59+
treetop (~> 1.4.8)
60+
mime-types (1.19)
61+
multi_json (1.3.6)
62+
polyglot (0.3.3)
63+
rack (1.3.6)
64+
rack-cache (1.2)
65+
rack (>= 0.4)
66+
rack-mount (0.8.3)
67+
rack (>= 1.0.0)
68+
rack-ssl (1.3.2)
69+
rack
70+
rack-test (0.6.1)
71+
rack (>= 1.0)
72+
rails (3.1.3)
73+
actionmailer (= 3.1.3)
74+
actionpack (= 3.1.3)
75+
activerecord (= 3.1.3)
76+
activeresource (= 3.1.3)
77+
activesupport (= 3.1.3)
78+
bundler (~> 1.0)
79+
railties (= 3.1.3)
80+
railties (3.1.3)
81+
actionpack (= 3.1.3)
82+
activesupport (= 3.1.3)
83+
rack-ssl (~> 1.3.2)
84+
rake (>= 0.8.7)
85+
rdoc (~> 3.4)
86+
thor (~> 0.14.6)
87+
rake (0.9.2.2)
88+
rdoc (3.12)
89+
json (~> 1.4)
90+
sass (3.2.1)
91+
sass-rails (3.1.6)
92+
actionpack (~> 3.1.0)
93+
railties (~> 3.1.0)
94+
sass (>= 3.1.10)
95+
tilt (~> 1.3.2)
96+
sprockets (2.0.4)
97+
hike (~> 1.2)
98+
rack (~> 1.0)
99+
tilt (~> 1.1, != 1.3.0)
100+
sqlite3 (1.3.6)
101+
thor (0.14.6)
102+
tilt (1.3.3)
103+
treetop (1.4.10)
104+
polyglot
105+
polyglot (>= 0.3.1)
106+
tzinfo (0.3.33)
107+
uglifier (1.3.0)
108+
execjs (>= 0.3.0)
109+
multi_json (~> 1.0, >= 1.0.2)
110+
111+
PLATFORMS
112+
ruby
113+
114+
DEPENDENCIES
115+
authlogic
116+
coffee-rails (~> 3.1.1)
117+
formtastic
118+
haml
119+
jquery-rails
120+
rails (= 3.1.3)
121+
sass-rails (~> 3.1.5)
122+
sqlite3
123+
uglifier (>= 1.0.3)

0 commit comments

Comments
 (0)