cactu 0.0.16 → 0.0.17

Sign up to get free protection for your applications and to get access to all the features.
Files changed (78) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/_cactu.scss +8 -0
  3. data/app/assets/stylesheets/config/_variables.scss +14 -1
  4. data/app/assets/stylesheets/mixins/_menu.scss +47 -0
  5. data/app/assets/stylesheets/ui/_anchors.scss +12 -0
  6. data/app/assets/stylesheets/ui/_base.scss +3 -19
  7. data/app/assets/stylesheets/ui/_menus.scss +1 -0
  8. data/app/assets/stylesheets/ui/_text.scss +28 -0
  9. data/lib/cactu/version.rb +1 -1
  10. data/test/cactu_app/.gitignore +16 -0
  11. data/test/cactu_app/Gemfile +49 -0
  12. data/test/cactu_app/README.rdoc +28 -0
  13. data/test/cactu_app/Rakefile +6 -0
  14. data/test/cactu_app/app/assets/images/.keep +0 -0
  15. data/test/cactu_app/app/assets/javascripts/application.js +16 -0
  16. data/test/cactu_app/app/assets/stylesheets/application.css.scss +16 -0
  17. data/test/cactu_app/app/assets/stylesheets/test/_test.css.scss +10 -0
  18. data/test/cactu_app/app/assets/stylesheets/test/config/_responsive_large.css.scss +7 -0
  19. data/test/cactu_app/app/assets/stylesheets/test/config/_responsive_medium.css.scss +7 -0
  20. data/test/cactu_app/app/assets/stylesheets/test/config/_responsive_short.css.scss +3 -0
  21. data/test/cactu_app/app/assets/stylesheets/test/config/_variables.css.scss +7 -0
  22. data/test/cactu_app/app/assets/stylesheets/test/pages/_home.css.scss +2 -0
  23. data/test/cactu_app/app/assets/stylesheets/test/ui/_anchors.css.scss +0 -0
  24. data/test/cactu_app/app/assets/stylesheets/test/ui/_base.css.scss +0 -0
  25. data/test/cactu_app/app/assets/stylesheets/test/ui/_navigations.css.scss +3 -0
  26. data/test/cactu_app/app/assets/stylesheets/test/ui/_text.css.scss +1 -0
  27. data/test/cactu_app/app/controllers/application_controller.rb +5 -0
  28. data/test/cactu_app/app/controllers/concerns/.keep +0 -0
  29. data/test/cactu_app/app/controllers/home_controller.rb +5 -0
  30. data/test/cactu_app/app/controllers/usage_controller.rb +13 -0
  31. data/test/cactu_app/app/helpers/application_helper.rb +2 -0
  32. data/test/cactu_app/app/mailers/.keep +0 -0
  33. data/test/cactu_app/app/models/.keep +0 -0
  34. data/test/cactu_app/app/models/concerns/.keep +0 -0
  35. data/test/cactu_app/app/views/home/index.html.haml +7 -0
  36. data/test/cactu_app/app/views/layouts/application.html.haml +20 -0
  37. data/test/cactu_app/app/views/usage/base.html.haml +19 -0
  38. data/test/cactu_app/app/views/usage/components.html.haml +4 -0
  39. data/test/cactu_app/app/views/usage/started.html.haml +4 -0
  40. data/test/cactu_app/bin/bundle +3 -0
  41. data/test/cactu_app/bin/rails +4 -0
  42. data/test/cactu_app/bin/rake +4 -0
  43. data/test/cactu_app/config.ru +4 -0
  44. data/test/cactu_app/config/application.rb +23 -0
  45. data/test/cactu_app/config/boot.rb +4 -0
  46. data/test/cactu_app/config/database.yml +25 -0
  47. data/test/cactu_app/config/environment.rb +5 -0
  48. data/test/cactu_app/config/environments/development.rb +29 -0
  49. data/test/cactu_app/config/environments/production.rb +80 -0
  50. data/test/cactu_app/config/environments/test.rb +36 -0
  51. data/test/cactu_app/config/initializers/backtrace_silencers.rb +7 -0
  52. data/test/cactu_app/config/initializers/filter_parameter_logging.rb +4 -0
  53. data/test/cactu_app/config/initializers/inflections.rb +16 -0
  54. data/test/cactu_app/config/initializers/mime_types.rb +5 -0
  55. data/test/cactu_app/config/initializers/secret_token.rb +12 -0
  56. data/test/cactu_app/config/initializers/session_store.rb +3 -0
  57. data/test/cactu_app/config/initializers/wrap_parameters.rb +14 -0
  58. data/test/cactu_app/config/locales/en.yml +23 -0
  59. data/test/cactu_app/config/routes.rb +6 -0
  60. data/test/cactu_app/db/seeds.rb +7 -0
  61. data/test/cactu_app/lib/assets/.keep +0 -0
  62. data/test/cactu_app/lib/tasks/.keep +0 -0
  63. data/test/cactu_app/log/.keep +0 -0
  64. data/test/cactu_app/public/404.html +58 -0
  65. data/test/cactu_app/public/422.html +58 -0
  66. data/test/cactu_app/public/500.html +57 -0
  67. data/test/cactu_app/public/favicon.ico +0 -0
  68. data/test/cactu_app/public/robots.txt +5 -0
  69. data/test/cactu_app/test/controllers/.keep +0 -0
  70. data/test/cactu_app/test/fixtures/.keep +0 -0
  71. data/test/cactu_app/test/helpers/.keep +0 -0
  72. data/test/cactu_app/test/integration/.keep +0 -0
  73. data/test/cactu_app/test/mailers/.keep +0 -0
  74. data/test/cactu_app/test/models/.keep +0 -0
  75. data/test/cactu_app/test/test_helper.rb +15 -0
  76. data/test/cactu_app/vendor/assets/javascripts/.keep +0 -0
  77. data/test/cactu_app/vendor/assets/stylesheets/.keep +0 -0
  78. metadata +72 -2
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/422.html -->
52
+ <div class="dialog">
53
+ <h1>The change you wanted was rejected.</h1>
54
+ <p>Maybe you tried to change something you didn't have access to.</p>
55
+ </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
57
+ </body>
58
+ </html>
@@ -0,0 +1,57 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/500.html -->
52
+ <div class="dialog">
53
+ <h1>We're sorry, but something went wrong.</h1>
54
+ </div>
55
+ <p>If you are the application owner check the logs for more information.</p>
56
+ </body>
57
+ </html>
File without changes
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-agent: *
5
+ # Disallow: /
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -0,0 +1,15 @@
1
+ ENV["RAILS_ENV"] ||= "test"
2
+ require File.expand_path('../../config/environment', __FILE__)
3
+ require 'rails/test_help'
4
+
5
+ class ActiveSupport::TestCase
6
+ ActiveRecord::Migration.check_pending!
7
+
8
+ # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
9
+ #
10
+ # Note: You'll currently still have to declare fixtures explicitly in integration tests
11
+ # -- they do not yet inherit this setting
12
+ fixtures :all
13
+
14
+ # Add more helper methods to be used by all tests here...
15
+ end
File without changes
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cactu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.16
4
+ version: 0.0.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Giovanni Mendoza
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-08-22 00:00:00.000000000 Z
11
+ date: 2014-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass
@@ -71,6 +71,8 @@ files:
71
71
  - app/assets/stylesheets/functions/_grid.scss
72
72
  - app/assets/stylesheets/mixins/_fonts.scss
73
73
  - app/assets/stylesheets/mixins/_grid.scss
74
+ - app/assets/stylesheets/mixins/_menu.scss
75
+ - app/assets/stylesheets/ui/_anchors.scss
74
76
  - app/assets/stylesheets/ui/_base.scss
75
77
  - app/assets/stylesheets/ui/_buttons.scss
76
78
  - app/assets/stylesheets/ui/_forms.scss
@@ -84,6 +86,74 @@ files:
84
86
  - lib/cactu/engine.rb
85
87
  - lib/cactu/generator.rb
86
88
  - lib/cactu/version.rb
89
+ - test/cactu_app/.gitignore
90
+ - test/cactu_app/Gemfile
91
+ - test/cactu_app/README.rdoc
92
+ - test/cactu_app/Rakefile
93
+ - test/cactu_app/app/assets/images/.keep
94
+ - test/cactu_app/app/assets/javascripts/application.js
95
+ - test/cactu_app/app/assets/stylesheets/application.css.scss
96
+ - test/cactu_app/app/assets/stylesheets/test/_test.css.scss
97
+ - test/cactu_app/app/assets/stylesheets/test/config/_responsive_large.css.scss
98
+ - test/cactu_app/app/assets/stylesheets/test/config/_responsive_medium.css.scss
99
+ - test/cactu_app/app/assets/stylesheets/test/config/_responsive_short.css.scss
100
+ - test/cactu_app/app/assets/stylesheets/test/config/_variables.css.scss
101
+ - test/cactu_app/app/assets/stylesheets/test/pages/_home.css.scss
102
+ - test/cactu_app/app/assets/stylesheets/test/ui/_anchors.css.scss
103
+ - test/cactu_app/app/assets/stylesheets/test/ui/_base.css.scss
104
+ - test/cactu_app/app/assets/stylesheets/test/ui/_navigations.css.scss
105
+ - test/cactu_app/app/assets/stylesheets/test/ui/_text.css.scss
106
+ - test/cactu_app/app/controllers/application_controller.rb
107
+ - test/cactu_app/app/controllers/concerns/.keep
108
+ - test/cactu_app/app/controllers/home_controller.rb
109
+ - test/cactu_app/app/controllers/usage_controller.rb
110
+ - test/cactu_app/app/helpers/application_helper.rb
111
+ - test/cactu_app/app/mailers/.keep
112
+ - test/cactu_app/app/models/.keep
113
+ - test/cactu_app/app/models/concerns/.keep
114
+ - test/cactu_app/app/views/home/index.html.haml
115
+ - test/cactu_app/app/views/layouts/application.html.haml
116
+ - test/cactu_app/app/views/usage/base.html.haml
117
+ - test/cactu_app/app/views/usage/components.html.haml
118
+ - test/cactu_app/app/views/usage/started.html.haml
119
+ - test/cactu_app/bin/bundle
120
+ - test/cactu_app/bin/rails
121
+ - test/cactu_app/bin/rake
122
+ - test/cactu_app/config.ru
123
+ - test/cactu_app/config/application.rb
124
+ - test/cactu_app/config/boot.rb
125
+ - test/cactu_app/config/database.yml
126
+ - test/cactu_app/config/environment.rb
127
+ - test/cactu_app/config/environments/development.rb
128
+ - test/cactu_app/config/environments/production.rb
129
+ - test/cactu_app/config/environments/test.rb
130
+ - test/cactu_app/config/initializers/backtrace_silencers.rb
131
+ - test/cactu_app/config/initializers/filter_parameter_logging.rb
132
+ - test/cactu_app/config/initializers/inflections.rb
133
+ - test/cactu_app/config/initializers/mime_types.rb
134
+ - test/cactu_app/config/initializers/secret_token.rb
135
+ - test/cactu_app/config/initializers/session_store.rb
136
+ - test/cactu_app/config/initializers/wrap_parameters.rb
137
+ - test/cactu_app/config/locales/en.yml
138
+ - test/cactu_app/config/routes.rb
139
+ - test/cactu_app/db/seeds.rb
140
+ - test/cactu_app/lib/assets/.keep
141
+ - test/cactu_app/lib/tasks/.keep
142
+ - test/cactu_app/log/.keep
143
+ - test/cactu_app/public/404.html
144
+ - test/cactu_app/public/422.html
145
+ - test/cactu_app/public/500.html
146
+ - test/cactu_app/public/favicon.ico
147
+ - test/cactu_app/public/robots.txt
148
+ - test/cactu_app/test/controllers/.keep
149
+ - test/cactu_app/test/fixtures/.keep
150
+ - test/cactu_app/test/helpers/.keep
151
+ - test/cactu_app/test/integration/.keep
152
+ - test/cactu_app/test/mailers/.keep
153
+ - test/cactu_app/test/models/.keep
154
+ - test/cactu_app/test/test_helper.rb
155
+ - test/cactu_app/vendor/assets/javascripts/.keep
156
+ - test/cactu_app/vendor/assets/stylesheets/.keep
87
157
  homepage: https://github.com/mendozagioo/cactu
88
158
  licenses:
89
159
  - MIT