effective_style_guide 1.0.0

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 (36) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +366 -0
  4. data/Rakefile +20 -0
  5. data/app/controllers/effective/style_guide_controller.rb +19 -0
  6. data/app/models/effective/access_denied.rb +17 -0
  7. data/app/models/effective/datatables/style_guide.rb +44 -0
  8. data/app/models/effective/style_guide.rb +28 -0
  9. data/app/views/effective/style_guide/_alerts.html.haml +14 -0
  10. data/app/views/effective/style_guide/_breadcrumbs.html.haml +12 -0
  11. data/app/views/effective/style_guide/_buttons.html.haml +52 -0
  12. data/app/views/effective/style_guide/_effective_datatable.html.haml +5 -0
  13. data/app/views/effective/style_guide/_form_horizontal.html.haml +38 -0
  14. data/app/views/effective/style_guide/_form_inline.html.haml +16 -0
  15. data/app/views/effective/style_guide/_form_vertical.html.haml +36 -0
  16. data/app/views/effective/style_guide/_jumbotron.html.haml +5 -0
  17. data/app/views/effective/style_guide/_labels.html.haml +37 -0
  18. data/app/views/effective/style_guide/_list_groups.html.haml +23 -0
  19. data/app/views/effective/style_guide/_modals.html.haml +69 -0
  20. data/app/views/effective/style_guide/_navs.html.haml +33 -0
  21. data/app/views/effective/style_guide/_pagination.html.haml +38 -0
  22. data/app/views/effective/style_guide/_panels.html.haml +36 -0
  23. data/app/views/effective/style_guide/_progress_bars.html.haml +30 -0
  24. data/app/views/effective/style_guide/_tables.html.haml +15 -0
  25. data/app/views/effective/style_guide/_thumbnails.html.haml +17 -0
  26. data/app/views/effective/style_guide/_typography.html.haml +20 -0
  27. data/app/views/effective/style_guide/_wells.html.haml +3 -0
  28. data/app/views/effective/style_guide/show.html.haml +88 -0
  29. data/config/routes.rb +11 -0
  30. data/lib/effective_style_guide/engine.rb +11 -0
  31. data/lib/effective_style_guide/version.rb +3 -0
  32. data/lib/effective_style_guide.rb +20 -0
  33. data/lib/generators/effective_style_guide/install_generator.rb +16 -0
  34. data/lib/generators/templates/README +1 -0
  35. data/lib/generators/templates/effective_style_guide.rb +26 -0
  36. metadata +136 -0
metadata ADDED
@@ -0,0 +1,136 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: effective_style_guide
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Code and Effect
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-12-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 3.2.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 3.2.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: coffee-rails
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: haml
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: simple_form
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: Ensure that your custom CSS theme looks good with all Twitter Bootstrap3
70
+ html components.
71
+ email:
72
+ - info@codeandeffect.com
73
+ executables: []
74
+ extensions: []
75
+ extra_rdoc_files: []
76
+ files:
77
+ - MIT-LICENSE
78
+ - README.md
79
+ - Rakefile
80
+ - app/controllers/effective/style_guide_controller.rb
81
+ - app/models/effective/access_denied.rb
82
+ - app/models/effective/datatables/style_guide.rb
83
+ - app/models/effective/style_guide.rb
84
+ - app/views/effective/style_guide/_alerts.html.haml
85
+ - app/views/effective/style_guide/_breadcrumbs.html.haml
86
+ - app/views/effective/style_guide/_buttons.html.haml
87
+ - app/views/effective/style_guide/_effective_datatable.html.haml
88
+ - app/views/effective/style_guide/_form_horizontal.html.haml
89
+ - app/views/effective/style_guide/_form_inline.html.haml
90
+ - app/views/effective/style_guide/_form_vertical.html.haml
91
+ - app/views/effective/style_guide/_jumbotron.html.haml
92
+ - app/views/effective/style_guide/_labels.html.haml
93
+ - app/views/effective/style_guide/_list_groups.html.haml
94
+ - app/views/effective/style_guide/_modals.html.haml
95
+ - app/views/effective/style_guide/_navs.html.haml
96
+ - app/views/effective/style_guide/_pagination.html.haml
97
+ - app/views/effective/style_guide/_panels.html.haml
98
+ - app/views/effective/style_guide/_progress_bars.html.haml
99
+ - app/views/effective/style_guide/_tables.html.haml
100
+ - app/views/effective/style_guide/_thumbnails.html.haml
101
+ - app/views/effective/style_guide/_typography.html.haml
102
+ - app/views/effective/style_guide/_wells.html.haml
103
+ - app/views/effective/style_guide/show.html.haml
104
+ - config/routes.rb
105
+ - lib/effective_style_guide.rb
106
+ - lib/effective_style_guide/engine.rb
107
+ - lib/effective_style_guide/version.rb
108
+ - lib/generators/effective_style_guide/install_generator.rb
109
+ - lib/generators/templates/README
110
+ - lib/generators/templates/effective_style_guide.rb
111
+ homepage: https://github.com/code-and-effect/effective_style_guide
112
+ licenses:
113
+ - MIT
114
+ metadata: {}
115
+ post_install_message:
116
+ rdoc_options: []
117
+ require_paths:
118
+ - lib
119
+ required_ruby_version: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - ">="
122
+ - !ruby/object:Gem::Version
123
+ version: '0'
124
+ required_rubygems_version: !ruby/object:Gem::Requirement
125
+ requirements:
126
+ - - ">="
127
+ - !ruby/object:Gem::Version
128
+ version: '0'
129
+ requirements: []
130
+ rubyforge_project:
131
+ rubygems_version: 2.4.3
132
+ signing_key:
133
+ specification_version: 4
134
+ summary: Ensure that your custom CSS theme looks good with all Twitter Bootstrap3
135
+ html components.
136
+ test_files: []