iceauth 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (80) hide show
  1. data/.gitignore +4 -0
  2. data/.rvmrc +55 -0
  3. data/Gemfile +4 -0
  4. data/Rakefile +1 -0
  5. data/iceauth.gemspec +24 -0
  6. data/lib/generators/iceauth/.DS_Store +0 -0
  7. data/lib/generators/iceauth/USAGE +7 -0
  8. data/lib/generators/iceauth/iceauth_generator.rb +25 -0
  9. data/lib/generators/iceauth/templates/app/assets/images/rails.png +0 -0
  10. data/lib/generators/iceauth/templates/app/assets/stylesheets/application.css +9 -0
  11. data/lib/generators/iceauth/templates/app/assets/stylesheets/pages.css.scss +170 -0
  12. data/lib/generators/iceauth/templates/app/controllers/application_controller.rb +5 -0
  13. data/lib/generators/iceauth/templates/app/controllers/pages_controller.rb +22 -0
  14. data/lib/generators/iceauth/templates/app/controllers/sessions_controller.rb +24 -0
  15. data/lib/generators/iceauth/templates/app/controllers/users_controller.rb +52 -0
  16. data/lib/generators/iceauth/templates/app/helpers/.DS_Store +0 -0
  17. data/lib/generators/iceauth/templates/app/helpers/sessions_helper.rb +39 -0
  18. data/lib/generators/iceauth/templates/app/layouts/_footer.html.haml +7 -0
  19. data/lib/generators/iceauth/templates/app/layouts/_header.html.haml.tt +14 -0
  20. data/lib/generators/iceauth/templates/app/layouts/_javascripts.html.haml +2 -0
  21. data/lib/generators/iceauth/templates/app/layouts/_stylesheets.html.haml +4 -0
  22. data/lib/generators/iceauth/templates/app/layouts/application.html.haml.tt +16 -0
  23. data/lib/generators/iceauth/templates/app/models/.gitkeep +0 -0
  24. data/lib/generators/iceauth/templates/app/models/user.rb +53 -0
  25. data/lib/generators/iceauth/templates/app/views/layouts/_footer.html.haml +7 -0
  26. data/lib/generators/iceauth/templates/app/views/layouts/_header.html.haml.tt +14 -0
  27. data/lib/generators/iceauth/templates/app/views/layouts/_javascripts.html.haml +2 -0
  28. data/lib/generators/iceauth/templates/app/views/layouts/_stylesheets.html.haml +4 -0
  29. data/lib/generators/iceauth/templates/app/views/layouts/application.html.haml.tt +16 -0
  30. data/lib/generators/iceauth/templates/app/views/pages/about.html.haml.tt +3 -0
  31. data/lib/generators/iceauth/templates/app/views/pages/contact.html.haml.tt +3 -0
  32. data/lib/generators/iceauth/templates/app/views/pages/help.html.haml.tt +3 -0
  33. data/lib/generators/iceauth/templates/app/views/pages/home.html.haml.tt +7 -0
  34. data/lib/generators/iceauth/templates/app/views/sessions/new.html.haml +23 -0
  35. data/lib/generators/iceauth/templates/app/views/shared/_error_messages.html.haml +10 -0
  36. data/lib/generators/iceauth/templates/app/views/users/_fields.html.haml +27 -0
  37. data/lib/generators/iceauth/templates/app/views/users/edit.html.haml +7 -0
  38. data/lib/generators/iceauth/templates/app/views/users/new.html.haml +7 -0
  39. data/lib/generators/iceauth/templates/spec/controllers/pages_controller_spec.rb.tt +68 -0
  40. data/lib/generators/iceauth/templates/spec/controllers/sessions_controller_spec.rb +88 -0
  41. data/lib/generators/iceauth/templates/spec/controllers/users_controller_spec.rb +266 -0
  42. data/lib/generators/iceauth/templates/spec/factories.rb +16 -0
  43. data/lib/generators/iceauth/templates/spec/models/user_spec.rb +192 -0
  44. data/lib/generators/iceauth/templates/spec/spec_helper.rb +50 -0
  45. data/lib/generators/iceauth/templates/vendor/.DS_Store +0 -0
  46. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/.gitkeep +0 -0
  47. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/awesome-buttons.css +114 -0
  48. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/ie.css +36 -0
  49. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/buttons/icons/cross.png +0 -0
  50. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/buttons/icons/key.png +0 -0
  51. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/buttons/icons/tick.png +0 -0
  52. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/buttons/readme.txt +32 -0
  53. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/buttons/screen.css +97 -0
  54. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/fancy-type/readme.txt +14 -0
  55. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/fancy-type/screen.css +71 -0
  56. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/link-icons/icons/doc.png +0 -0
  57. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/link-icons/icons/email.png +0 -0
  58. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/link-icons/icons/external.png +0 -0
  59. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/link-icons/icons/feed.png +0 -0
  60. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/link-icons/icons/im.png +0 -0
  61. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/link-icons/icons/lock.png +0 -0
  62. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/link-icons/icons/pdf.png +0 -0
  63. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/link-icons/icons/visited.png +0 -0
  64. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/link-icons/icons/xls.png +0 -0
  65. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/link-icons/readme.txt +18 -0
  66. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/link-icons/screen.css +42 -0
  67. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/rtl/readme.txt +10 -0
  68. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/rtl/screen.css +110 -0
  69. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/print.css +29 -0
  70. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/screen.css +265 -0
  71. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/src/forms.css +82 -0
  72. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/src/grid.css +280 -0
  73. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/src/grid.png +0 -0
  74. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/src/ie.css +79 -0
  75. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/src/print.css +92 -0
  76. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/src/reset.css +65 -0
  77. data/lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/src/typography.css +123 -0
  78. data/lib/iceauth/version.rb +3 -0
  79. data/lib/iceauth.rb +5 -0
  80. metadata +124 -0
@@ -0,0 +1,79 @@
1
+ /* --------------------------------------------------------------
2
+
3
+ ie.css
4
+
5
+ Contains every hack for Internet Explorer,
6
+ so that our core files stay sweet and nimble.
7
+
8
+ -------------------------------------------------------------- */
9
+
10
+ /* Make sure the layout is centered in IE5 */
11
+ body { text-align: center; }
12
+ .container { text-align: left; }
13
+
14
+ /* Fixes IE margin bugs */
15
+ * html .column, * html .span-1, * html .span-2,
16
+ * html .span-3, * html .span-4, * html .span-5,
17
+ * html .span-6, * html .span-7, * html .span-8,
18
+ * html .span-9, * html .span-10, * html .span-11,
19
+ * html .span-12, * html .span-13, * html .span-14,
20
+ * html .span-15, * html .span-16, * html .span-17,
21
+ * html .span-18, * html .span-19, * html .span-20,
22
+ * html .span-21, * html .span-22, * html .span-23,
23
+ * html .span-24 { display:inline; overflow-x: hidden; }
24
+
25
+
26
+ /* Elements
27
+ -------------------------------------------------------------- */
28
+
29
+ /* Fixes incorrect styling of legend in IE6. */
30
+ * html legend { margin:0px -8px 16px 0; padding:0; }
31
+
32
+ /* Fixes wrong line-height on sup/sub in IE. */
33
+ sup { vertical-align:text-top; }
34
+ sub { vertical-align:text-bottom; }
35
+
36
+ /* Fixes IE7 missing wrapping of code elements. */
37
+ html>body p code { *white-space: normal; }
38
+
39
+ /* IE 6&7 has problems with setting proper <hr> margins. */
40
+ hr { margin:-8px auto 11px; }
41
+
42
+ /* Explicitly set interpolation, allowing dynamically resized images to not look horrible */
43
+ img { -ms-interpolation-mode:bicubic; }
44
+
45
+ /* Clearing
46
+ -------------------------------------------------------------- */
47
+
48
+ /* Makes clearfix actually work in IE */
49
+ .clearfix, .container { display:inline-block; }
50
+ * html .clearfix,
51
+ * html .container { height:1%; }
52
+
53
+
54
+ /* Forms
55
+ -------------------------------------------------------------- */
56
+
57
+ /* Fixes padding on fieldset */
58
+ fieldset { padding-top:0; }
59
+ legend { margin-top:-0.2em; margin-bottom:1em; margin-left:-0.5em; }
60
+
61
+ /* Makes classic textareas in IE 6 resemble other browsers */
62
+ textarea { overflow:auto; }
63
+
64
+ /* Makes labels behave correctly in IE 6 and 7 */
65
+ label { vertical-align:middle; position:relative; top:-0.25em; }
66
+
67
+ /* Fixes rule that IE 6 ignores */
68
+ input.text, input.title, textarea { background-color:#fff; border:1px solid #bbb; }
69
+ input.text:focus, input.title:focus { border-color:#666; }
70
+ input.text, input.title, textarea, select { margin:0.5em 0; }
71
+ input.checkbox, input.radio { position:relative; top:.25em; }
72
+
73
+ /* Fixes alignment of inline form elements */
74
+ form.inline div, form.inline p { vertical-align:middle; }
75
+ form.inline input.checkbox, form.inline input.radio,
76
+ form.inline input.button, form.inline button {
77
+ margin:0.5em 0;
78
+ }
79
+ button, input.button { position:relative;top:0.25em; }
@@ -0,0 +1,92 @@
1
+ /* --------------------------------------------------------------
2
+
3
+ print.css
4
+ * Gives you some sensible styles for printing pages.
5
+ * See Readme file in this directory for further instructions.
6
+
7
+ Some additions you'll want to make, customized to your markup:
8
+ #header, #footer, #navigation { display:none; }
9
+
10
+ -------------------------------------------------------------- */
11
+
12
+ body {
13
+ line-height: 1.5;
14
+ font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
15
+ color:#000;
16
+ background: none;
17
+ font-size: 10pt;
18
+ }
19
+
20
+
21
+ /* Layout
22
+ -------------------------------------------------------------- */
23
+
24
+ .container {
25
+ background: none;
26
+ }
27
+
28
+ hr {
29
+ background:#ccc;
30
+ color:#ccc;
31
+ width:100%;
32
+ height:2px;
33
+ margin:2em 0;
34
+ padding:0;
35
+ border:none;
36
+ }
37
+ hr.space {
38
+ background: #fff;
39
+ color: #fff;
40
+ visibility: hidden;
41
+ }
42
+
43
+
44
+ /* Text
45
+ -------------------------------------------------------------- */
46
+
47
+ h1,h2,h3,h4,h5,h6 { font-family: "Helvetica Neue", Arial, "Lucida Grande", sans-serif; }
48
+ code { font:.9em "Courier New", Monaco, Courier, monospace; }
49
+
50
+ a img { border:none; }
51
+ p img.top { margin-top: 0; }
52
+
53
+ blockquote {
54
+ margin:1.5em;
55
+ padding:1em;
56
+ font-style:italic;
57
+ font-size:.9em;
58
+ }
59
+
60
+ .small { font-size: .9em; }
61
+ .large { font-size: 1.1em; }
62
+ .quiet { color: #999; }
63
+ .hide { display:none; }
64
+
65
+
66
+ /* Links
67
+ -------------------------------------------------------------- */
68
+
69
+ a:link, a:visited {
70
+ background: transparent;
71
+ font-weight:700;
72
+ text-decoration: underline;
73
+ }
74
+
75
+ /*
76
+ This has been the source of many questions in the past. This
77
+ snippet of CSS appends the URL of each link within the text.
78
+ The idea is that users printing your webpage will want to know
79
+ the URLs they go to. If you want to remove this functionality,
80
+ comment out this snippet and make sure to re-compress your files.
81
+ */
82
+ a:link:after, a:visited:after {
83
+ content: " (" attr(href) ")";
84
+ font-size: 90%;
85
+ }
86
+
87
+ /* If you're having trouble printing relative links, uncomment and customize this:
88
+ (note: This is valid CSS3, but it still won't go through the W3C CSS Validator) */
89
+
90
+ /* a[href^="/"]:after {
91
+ content: " (http://www.yourdomain.com" attr(href) ") ";
92
+ } */
@@ -0,0 +1,65 @@
1
+ /* --------------------------------------------------------------
2
+
3
+ reset.css
4
+ * Resets default browser CSS.
5
+
6
+ -------------------------------------------------------------- */
7
+
8
+ html {
9
+ margin:0;
10
+ padding:0;
11
+ border:0;
12
+ }
13
+
14
+ body, div, span, object, iframe,
15
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre,
16
+ a, abbr, acronym, address, code,
17
+ del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
18
+ fieldset, form, label, legend,
19
+ table, caption, tbody, tfoot, thead, tr, th, td,
20
+ article, aside, dialog, figure, footer, header,
21
+ hgroup, nav, section {
22
+ margin: 0;
23
+ padding: 0;
24
+ border: 0;
25
+ font-size: 100%;
26
+ font: inherit;
27
+ vertical-align: baseline;
28
+ }
29
+
30
+ /* This helps to make newer HTML5 elements behave like DIVs in older browers */
31
+ article, aside, details, figcaption, figure, dialog,
32
+ footer, header, hgroup, menu, nav, section {
33
+ display:block;
34
+ }
35
+
36
+ /* Line-height should always be unitless! */
37
+ body {
38
+ line-height: 1.5;
39
+ background: white;
40
+ }
41
+
42
+ /* Tables still need 'cellspacing="0"' in the markup. */
43
+ table {
44
+ border-collapse: separate;
45
+ border-spacing: 0;
46
+ }
47
+ /* float:none prevents the span-x classes from breaking table-cell display */
48
+ caption, th, td {
49
+ text-align: left;
50
+ font-weight: normal;
51
+ float:none !important;
52
+ }
53
+ table, th, td {
54
+ vertical-align: middle;
55
+ }
56
+
57
+ /* Remove possible quote marks (") from <q>, <blockquote>. */
58
+ blockquote:before, blockquote:after, q:before, q:after { content: ''; }
59
+ blockquote, q { quotes: "" ""; }
60
+
61
+ /* Remove annoying border on linked images. */
62
+ a img { border: none; }
63
+
64
+ /* Remember to define your own focus styles! */
65
+ :focus { outline: 0; }
@@ -0,0 +1,123 @@
1
+ /* --------------------------------------------------------------
2
+
3
+ typography.css
4
+ * Sets up some sensible default typography.
5
+
6
+ -------------------------------------------------------------- */
7
+
8
+ /* Default font settings.
9
+ The font-size percentage is of 16px. (0.75 * 16px = 12px) */
10
+ html { font-size:100.01%; }
11
+ body {
12
+ font-size: 75%;
13
+ color: #222;
14
+ background: #fff;
15
+ font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
16
+ }
17
+
18
+
19
+ /* Headings
20
+ -------------------------------------------------------------- */
21
+
22
+ h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }
23
+
24
+ h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
25
+ h2 { font-size: 2em; margin-bottom: 0.75em; }
26
+ h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
27
+ h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
28
+ h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
29
+ h6 { font-size: 1em; font-weight: bold; }
30
+
31
+ h1 img, h2 img, h3 img,
32
+ h4 img, h5 img, h6 img {
33
+ margin: 0;
34
+ }
35
+
36
+
37
+ /* Text elements
38
+ -------------------------------------------------------------- */
39
+
40
+ p { margin: 0 0 1.5em; }
41
+ /*
42
+ These can be used to pull an image at the start of a paragraph, so
43
+ that the text flows around it (usage: <p><img class="left">Text</p>)
44
+ */
45
+ .left { float: left !important; }
46
+ p .left { margin: 1.5em 1.5em 1.5em 0; padding: 0; }
47
+ .right { float: right !important; }
48
+ p .right { margin: 1.5em 0 1.5em 1.5em; padding: 0; }
49
+
50
+ a:focus,
51
+ a:hover { color: #09f; }
52
+ a { color: #06c; text-decoration: underline; }
53
+
54
+ blockquote { margin: 1.5em; color: #666; font-style: italic; }
55
+ strong,dfn { font-weight: bold; }
56
+ em,dfn { font-style: italic; }
57
+ sup, sub { line-height: 0; }
58
+
59
+ abbr,
60
+ acronym { border-bottom: 1px dotted #666; }
61
+ address { margin: 0 0 1.5em; font-style: italic; }
62
+ del { color:#666; }
63
+
64
+ pre { margin: 1.5em 0; white-space: pre; }
65
+ pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }
66
+
67
+
68
+ /* Lists
69
+ -------------------------------------------------------------- */
70
+
71
+ li ul,
72
+ li ol { margin: 0; }
73
+ ul, ol { margin: 0 1.5em 1.5em 0; padding-left: 1.5em; }
74
+
75
+ ul { list-style-type: disc; }
76
+ ol { list-style-type: decimal; }
77
+
78
+ dl { margin: 0 0 1.5em 0; }
79
+ dl dt { font-weight: bold; }
80
+ dd { margin-left: 1.5em;}
81
+
82
+
83
+ /* Tables
84
+ -------------------------------------------------------------- */
85
+
86
+ /*
87
+ Because of the need for padding on TH and TD, the vertical rhythm
88
+ on table cells has to be 27px, instead of the standard 18px or 36px
89
+ of other elements.
90
+ */
91
+ table { margin-bottom: 1.4em; width:100%; }
92
+ th { font-weight: bold; }
93
+ thead th { background: #c3d9ff; }
94
+ th,td,caption { padding: 4px 10px 4px 5px; }
95
+ /*
96
+ You can zebra-stripe your tables in outdated browsers by adding
97
+ the class "even" to every other table row.
98
+ */
99
+ tbody tr:nth-child(even) td,
100
+ tbody tr.even td {
101
+ background: #e5ecf9;
102
+ }
103
+ tfoot { font-style: italic; }
104
+ caption { background: #eee; }
105
+
106
+
107
+ /* Misc classes
108
+ -------------------------------------------------------------- */
109
+
110
+ .small { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
111
+ .large { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
112
+ .hide { display: none; }
113
+
114
+ .quiet { color: #666; }
115
+ .loud { color: #000; }
116
+ .highlight { background:#ff0; }
117
+ .added { background:#060; color: #fff; }
118
+ .removed { background:#900; color: #fff; }
119
+
120
+ .first { margin-left:0; padding-left:0; }
121
+ .last { margin-right:0; padding-right:0; }
122
+ .top { margin-top:0; padding-top:0; }
123
+ .bottom { margin-bottom:0; padding-bottom:0; }
@@ -0,0 +1,3 @@
1
+ module Iceauth
2
+ VERSION = "0.0.1"
3
+ end
data/lib/iceauth.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "iceauth/version"
2
+
3
+ module Iceauth
4
+ # Your code goes here...
5
+ end
metadata ADDED
@@ -0,0 +1,124 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: iceauth
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Mark Dillon
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2011-10-25 00:00:00.000000000Z
13
+ dependencies: []
14
+ description: Generate authentication for an icebreaker based rails application
15
+ email:
16
+ - mdillon@gmail.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - .gitignore
22
+ - .rvmrc
23
+ - Gemfile
24
+ - Rakefile
25
+ - iceauth.gemspec
26
+ - lib/generators/iceauth/.DS_Store
27
+ - lib/generators/iceauth/USAGE
28
+ - lib/generators/iceauth/iceauth_generator.rb
29
+ - lib/generators/iceauth/templates/app/assets/images/rails.png
30
+ - lib/generators/iceauth/templates/app/assets/stylesheets/application.css
31
+ - lib/generators/iceauth/templates/app/assets/stylesheets/pages.css.scss
32
+ - lib/generators/iceauth/templates/app/controllers/application_controller.rb
33
+ - lib/generators/iceauth/templates/app/controllers/pages_controller.rb
34
+ - lib/generators/iceauth/templates/app/controllers/sessions_controller.rb
35
+ - lib/generators/iceauth/templates/app/controllers/users_controller.rb
36
+ - lib/generators/iceauth/templates/app/helpers/.DS_Store
37
+ - lib/generators/iceauth/templates/app/helpers/sessions_helper.rb
38
+ - lib/generators/iceauth/templates/app/layouts/_footer.html.haml
39
+ - lib/generators/iceauth/templates/app/layouts/_header.html.haml.tt
40
+ - lib/generators/iceauth/templates/app/layouts/_javascripts.html.haml
41
+ - lib/generators/iceauth/templates/app/layouts/_stylesheets.html.haml
42
+ - lib/generators/iceauth/templates/app/layouts/application.html.haml.tt
43
+ - lib/generators/iceauth/templates/app/models/.gitkeep
44
+ - lib/generators/iceauth/templates/app/models/user.rb
45
+ - lib/generators/iceauth/templates/app/views/layouts/_footer.html.haml
46
+ - lib/generators/iceauth/templates/app/views/layouts/_header.html.haml.tt
47
+ - lib/generators/iceauth/templates/app/views/layouts/_javascripts.html.haml
48
+ - lib/generators/iceauth/templates/app/views/layouts/_stylesheets.html.haml
49
+ - lib/generators/iceauth/templates/app/views/layouts/application.html.haml.tt
50
+ - lib/generators/iceauth/templates/app/views/pages/about.html.haml.tt
51
+ - lib/generators/iceauth/templates/app/views/pages/contact.html.haml.tt
52
+ - lib/generators/iceauth/templates/app/views/pages/help.html.haml.tt
53
+ - lib/generators/iceauth/templates/app/views/pages/home.html.haml.tt
54
+ - lib/generators/iceauth/templates/app/views/sessions/new.html.haml
55
+ - lib/generators/iceauth/templates/app/views/shared/_error_messages.html.haml
56
+ - lib/generators/iceauth/templates/app/views/users/_fields.html.haml
57
+ - lib/generators/iceauth/templates/app/views/users/edit.html.haml
58
+ - lib/generators/iceauth/templates/app/views/users/new.html.haml
59
+ - lib/generators/iceauth/templates/spec/controllers/pages_controller_spec.rb.tt
60
+ - lib/generators/iceauth/templates/spec/controllers/sessions_controller_spec.rb
61
+ - lib/generators/iceauth/templates/spec/controllers/users_controller_spec.rb
62
+ - lib/generators/iceauth/templates/spec/factories.rb
63
+ - lib/generators/iceauth/templates/spec/models/user_spec.rb
64
+ - lib/generators/iceauth/templates/spec/spec_helper.rb
65
+ - lib/generators/iceauth/templates/vendor/.DS_Store
66
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/.gitkeep
67
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/awesome-buttons.css
68
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/ie.css
69
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/buttons/icons/cross.png
70
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/buttons/icons/key.png
71
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/buttons/icons/tick.png
72
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/buttons/readme.txt
73
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/buttons/screen.css
74
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/fancy-type/readme.txt
75
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/fancy-type/screen.css
76
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/link-icons/icons/doc.png
77
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/link-icons/icons/email.png
78
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/link-icons/icons/external.png
79
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/link-icons/icons/feed.png
80
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/link-icons/icons/im.png
81
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/link-icons/icons/lock.png
82
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/link-icons/icons/pdf.png
83
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/link-icons/icons/visited.png
84
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/link-icons/icons/xls.png
85
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/link-icons/readme.txt
86
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/link-icons/screen.css
87
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/rtl/readme.txt
88
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/plugins/rtl/screen.css
89
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/print.css
90
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/screen.css
91
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/src/forms.css
92
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/src/grid.css
93
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/src/grid.png
94
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/src/ie.css
95
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/src/print.css
96
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/src/reset.css
97
+ - lib/generators/iceauth/templates/vendor/assets/stylesheets/blueprint/src/typography.css
98
+ - lib/iceauth.rb
99
+ - lib/iceauth/version.rb
100
+ homepage: ''
101
+ licenses: []
102
+ post_install_message:
103
+ rdoc_options: []
104
+ require_paths:
105
+ - lib
106
+ required_ruby_version: !ruby/object:Gem::Requirement
107
+ none: false
108
+ requirements:
109
+ - - ! '>='
110
+ - !ruby/object:Gem::Version
111
+ version: '0'
112
+ required_rubygems_version: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ! '>='
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ requirements: []
119
+ rubyforge_project: iceauth
120
+ rubygems_version: 1.8.10
121
+ signing_key:
122
+ specification_version: 3
123
+ summary: Generate authentication for an icebreaker based rails application
124
+ test_files: []