bootswitch 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (100) hide show
  1. checksums.yaml +7 -0
  2. data/.document +5 -0
  3. data/.rspec +1 -0
  4. data/.travis.yml +5 -0
  5. data/Gemfile +19 -0
  6. data/LICENSE.txt +177 -0
  7. data/README.rdoc +38 -0
  8. data/Rakefile +53 -0
  9. data/VERSION +1 -0
  10. data/app/assets/stylesheets/bootswatch/amelia/bootswatch.css.scss +136 -0
  11. data/app/assets/stylesheets/bootswatch/amelia/theme.css.scss +9 -0
  12. data/app/assets/stylesheets/bootswatch/amelia/variables.css.scss +624 -0
  13. data/app/assets/stylesheets/bootswatch/cerulean/bootswatch.css.scss +159 -0
  14. data/app/assets/stylesheets/bootswatch/cerulean/theme.css.scss +9 -0
  15. data/app/assets/stylesheets/bootswatch/cerulean/variables.css.scss +621 -0
  16. data/app/assets/stylesheets/bootswatch/cosmo/bootswatch.css.scss +138 -0
  17. data/app/assets/stylesheets/bootswatch/cosmo/theme.css.scss +9 -0
  18. data/app/assets/stylesheets/bootswatch/cosmo/variables.css.scss +623 -0
  19. data/app/assets/stylesheets/bootswatch/custom/bootswatch.css.scss +22 -0
  20. data/app/assets/stylesheets/bootswatch/custom/theme.css.scss +9 -0
  21. data/app/assets/stylesheets/bootswatch/custom/variables.css.scss +620 -0
  22. data/app/assets/stylesheets/bootswatch/cyborg/bootswatch.css.scss +141 -0
  23. data/app/assets/stylesheets/bootswatch/cyborg/theme.css.scss +9 -0
  24. data/app/assets/stylesheets/bootswatch/cyborg/variables.css.scss +624 -0
  25. data/app/assets/stylesheets/bootswatch/darkly/bootswatch.css.scss +234 -0
  26. data/app/assets/stylesheets/bootswatch/darkly/theme.css.scss +9 -0
  27. data/app/assets/stylesheets/bootswatch/darkly/variables.css.scss +831 -0
  28. data/app/assets/stylesheets/bootswatch/flatly/bootswatch.css.scss +177 -0
  29. data/app/assets/stylesheets/bootswatch/flatly/theme.css.scss +9 -0
  30. data/app/assets/stylesheets/bootswatch/flatly/variables.css.scss +623 -0
  31. data/app/assets/stylesheets/bootswatch/global/build.css.scss +3 -0
  32. data/app/assets/stylesheets/bootswatch/global/theme.css.scss +9 -0
  33. data/app/assets/stylesheets/bootswatch/journal/bootswatch.css.scss +96 -0
  34. data/app/assets/stylesheets/bootswatch/journal/theme.css.scss +9 -0
  35. data/app/assets/stylesheets/bootswatch/journal/variables.css.scss +622 -0
  36. data/app/assets/stylesheets/bootswatch/readable/bootswatch.css.scss +83 -0
  37. data/app/assets/stylesheets/bootswatch/readable/theme.css.scss +9 -0
  38. data/app/assets/stylesheets/bootswatch/readable/variables.css.scss +623 -0
  39. data/app/assets/stylesheets/bootswatch/simplex/bootswatch.css.scss +127 -0
  40. data/app/assets/stylesheets/bootswatch/simplex/theme.css.scss +9 -0
  41. data/app/assets/stylesheets/bootswatch/simplex/variables.css.scss +624 -0
  42. data/app/assets/stylesheets/bootswatch/slate/bootswatch.css.scss +328 -0
  43. data/app/assets/stylesheets/bootswatch/slate/theme.css.scss +9 -0
  44. data/app/assets/stylesheets/bootswatch/slate/variables.css.scss +622 -0
  45. data/app/assets/stylesheets/bootswatch/spacelab/bootswatch.css.scss +115 -0
  46. data/app/assets/stylesheets/bootswatch/spacelab/theme.css.scss +9 -0
  47. data/app/assets/stylesheets/bootswatch/spacelab/variables.css.scss +623 -0
  48. data/app/assets/stylesheets/bootswatch/superhero/bootswatch.css.scss +250 -0
  49. data/app/assets/stylesheets/bootswatch/superhero/theme.css.scss +9 -0
  50. data/app/assets/stylesheets/bootswatch/superhero/variables.css.scss +833 -0
  51. data/app/assets/stylesheets/bootswatch/united/bootswatch.css.scss +31 -0
  52. data/app/assets/stylesheets/bootswatch/united/theme.css.scss +9 -0
  53. data/app/assets/stylesheets/bootswatch/united/variables.css.scss +623 -0
  54. data/app/assets/stylesheets/bootswatch/yeti/bootswatch.css.scss +408 -0
  55. data/app/assets/stylesheets/bootswatch/yeti/theme.css.scss +9 -0
  56. data/app/assets/stylesheets/bootswatch/yeti/variables.css.scss +831 -0
  57. data/app/controllers/bootswitch_controller.rb +2 -0
  58. data/app/controllers/theme_controller.rb +17 -0
  59. data/app/helpers/theme_helper.rb +9 -0
  60. data/app/views/theme/_stylesheet_link_tag.html.haml +1 -0
  61. data/bootswitch.gemspec +156 -0
  62. data/config/routes.rb +4 -0
  63. data/lib/bootswitch/configuration.rb +20 -0
  64. data/lib/bootswitch/engine.rb +5 -0
  65. data/lib/bootswitch/railtie.rb +4 -0
  66. data/lib/bootswitch/version.rb +7 -0
  67. data/lib/bootswitch.rb +11 -0
  68. data/lib/generators/bootswitch/install/install_generator.rb +23 -0
  69. data/lib/generators/bootswitch/install/templates/initializer.rb +4 -0
  70. data/lib/generators/bootswitch/utils.rb +16 -0
  71. data/script/rails +6 -0
  72. data/spec/dummy/.rspec +1 -0
  73. data/spec/dummy/Rakefile +7 -0
  74. data/spec/dummy/app/assets/javascripts/application.js +2 -0
  75. data/spec/dummy/app/assets/stylesheets/application.css.scss +14 -0
  76. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  77. data/spec/dummy/app/helpers/application_helper.rb +5 -0
  78. data/spec/dummy/config/application.rb +27 -0
  79. data/spec/dummy/config/boot.rb +10 -0
  80. data/spec/dummy/config/environment.rb +5 -0
  81. data/spec/dummy/config/environments/development.rb +23 -0
  82. data/spec/dummy/config/environments/test.rb +17 -0
  83. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  84. data/spec/dummy/config/initializers/bootswitch.rb +4 -0
  85. data/spec/dummy/config/initializers/inflections.rb +15 -0
  86. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  87. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  88. data/spec/dummy/config/initializers/session_store.rb +8 -0
  89. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  90. data/spec/dummy/config/routes.rb +53 -0
  91. data/spec/dummy/config.ru +4 -0
  92. data/spec/dummy/public/404.html +26 -0
  93. data/spec/dummy/public/422.html +26 -0
  94. data/spec/dummy/public/500.html +25 -0
  95. data/spec/dummy/public/favicon.ico +0 -0
  96. data/spec/dummy/public/index.html +101 -0
  97. data/spec/dummy/script/rails +6 -0
  98. data/spec/helpers/theme_helper_spec.rb +14 -0
  99. data/spec/spec_helper.rb +18 -0
  100. metadata +243 -0
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,101 @@
1
+
2
+ <!DOCTYPE html>
3
+ <html lang="en">
4
+ <head>
5
+ <meta charset="utf-8">
6
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1">
8
+ <meta name="description" content="">
9
+ <meta name="author" content="">
10
+ <link rel="shortcut icon" href="../../assets/ico/favicon.ico">
11
+
12
+ <title>Jumbotron Template for Bootstrap</title>
13
+
14
+ <!-- Bootstrap core CSS -->
15
+ <link href="assets/application.css.scss" rel="stylesheet">
16
+ <link href="assets/bootswatch/superhero/theme.css.scss" rel="stylesheet">
17
+
18
+ <!-- Custom styles for this template -->
19
+ <link href="jumbotron.css" rel="stylesheet">
20
+
21
+ <!-- Just for debugging purposes. Don't actually copy this line! -->
22
+ <!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
23
+
24
+ <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
25
+ <!--[if lt IE 9]>
26
+ <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
27
+ <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
28
+ <![endif]-->
29
+ </head>
30
+
31
+ <body>
32
+
33
+ <div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
34
+ <div class="container">
35
+ <div class="navbar-header">
36
+ <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
37
+ <span class="sr-only">Toggle navigation</span>
38
+ <span class="icon-bar"></span>
39
+ <span class="icon-bar"></span>
40
+ <span class="icon-bar"></span>
41
+ </button>
42
+ <a class="navbar-brand" href="#">Project name</a>
43
+ </div>
44
+ <div class="navbar-collapse collapse">
45
+ <form class="navbar-form navbar-right" role="form">
46
+ <div class="form-group">
47
+ <input type="text" placeholder="Email" class="form-control">
48
+ </div>
49
+ <div class="form-group">
50
+ <input type="password" placeholder="Password" class="form-control">
51
+ </div>
52
+ <button type="submit" class="btn btn-success">Sign in</button>
53
+ </form>
54
+ </div><!--/.navbar-collapse -->
55
+ </div>
56
+ </div>
57
+
58
+ <!-- Main jumbotron for a primary marketing message or call to action -->
59
+ <div class="jumbotron">
60
+ <div class="container">
61
+ <h1>Hello, world!</h1>
62
+ <p>This is a template for a simple marketing or informational website. It includes a large callout called a jumbotron and three supporting pieces of content. Use it as a starting point to create something more unique.</p>
63
+ <p><a class="btn btn-primary btn-lg" role="button">Learn more &raquo;</a></p>
64
+ </div>
65
+ </div>
66
+
67
+ <div class="container">
68
+ <!-- Example row of columns -->
69
+ <div class="row">
70
+ <div class="col-md-4">
71
+ <h2>Heading</h2>
72
+ <p>Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui. </p>
73
+ <p><a class="btn btn-default" href="#" role="button">View details &raquo;</a></p>
74
+ </div>
75
+ <div class="col-md-4">
76
+ <h2>Heading</h2>
77
+ <p>Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui. </p>
78
+ <p><a class="btn btn-default" href="#" role="button">View details &raquo;</a></p>
79
+ </div>
80
+ <div class="col-md-4">
81
+ <h2>Heading</h2>
82
+ <p>Donec sed odio dui. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Vestibulum id ligula porta felis euismod semper. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</p>
83
+ <p><a class="btn btn-default" href="#" role="button">View details &raquo;</a></p>
84
+ </div>
85
+ </div>
86
+
87
+ <hr>
88
+
89
+ <footer>
90
+ <p>&copy; Company 2014</p>
91
+ </footer>
92
+ </div> <!-- /container -->
93
+
94
+
95
+ <!-- Bootstrap core JavaScript
96
+ ================================================== -->
97
+ <!-- Placed at the end of the document so the pages load faster -->
98
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
99
+ <script src="../../dist/js/bootstrap.min.js"></script>
100
+ </body>
101
+ </html>
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby1.8
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,14 @@
1
+ require 'spec_helper'
2
+
3
+ describe ThemeHelper do
4
+ describe '#theme_name' do
5
+ it 'returns the a theme name' do
6
+ ['amelia', 'cerulean', 'cosmo', 'custom', 'cyborg', 'darkly', 'flatly','global','journal','readable','simplex','slate','spacelab','superhero','united','yeti'].should include helper.theme_name
7
+ end
8
+ end
9
+ describe '#theme_stylesheet_link_tag' do
10
+ it 'returns a stylesheet link tag for the theme' do
11
+ helper.theme_stylesheet_link_tag.should match /^<link.*rel="stylesheet".*\/>$/
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,18 @@
1
+ ENV["RAILS_ENV"] ||= 'test'
2
+ require File.expand_path("../dummy/config/environment", __FILE__)
3
+
4
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
5
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
6
+ require 'rspec/rails'
7
+ require 'rspec/autorun'
8
+ require 'shoulda-matchers'
9
+ require 'capybara/rspec'
10
+ require 'bootswitch'
11
+
12
+ # Requires supporting files with custom matchers and macros, etc,
13
+ # in ./support/ and its subdirectories.
14
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
15
+
16
+ RSpec.configure do |config|
17
+ config.include Capybara::DSL
18
+ end
metadata ADDED
@@ -0,0 +1,243 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bootswitch
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Karen Lundgren
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-05-07 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: '4.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '4.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: haml-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: bootstrap-sass
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: bootswitch
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
+ - !ruby/object:Gem::Dependency
70
+ name: rdoc
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: bundler
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: jeweler
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ description: Bootswitch is designed to get you up and running with a customizable
112
+ version of boostrap using SASS.
113
+ email: webmaster@sourcherryweb.com
114
+ executables: []
115
+ extensions: []
116
+ extra_rdoc_files:
117
+ - LICENSE.txt
118
+ - README.rdoc
119
+ files:
120
+ - ".document"
121
+ - ".rspec"
122
+ - ".travis.yml"
123
+ - Gemfile
124
+ - LICENSE.txt
125
+ - README.rdoc
126
+ - Rakefile
127
+ - VERSION
128
+ - app/assets/stylesheets/bootswatch/amelia/bootswatch.css.scss
129
+ - app/assets/stylesheets/bootswatch/amelia/theme.css.scss
130
+ - app/assets/stylesheets/bootswatch/amelia/variables.css.scss
131
+ - app/assets/stylesheets/bootswatch/cerulean/bootswatch.css.scss
132
+ - app/assets/stylesheets/bootswatch/cerulean/theme.css.scss
133
+ - app/assets/stylesheets/bootswatch/cerulean/variables.css.scss
134
+ - app/assets/stylesheets/bootswatch/cosmo/bootswatch.css.scss
135
+ - app/assets/stylesheets/bootswatch/cosmo/theme.css.scss
136
+ - app/assets/stylesheets/bootswatch/cosmo/variables.css.scss
137
+ - app/assets/stylesheets/bootswatch/custom/bootswatch.css.scss
138
+ - app/assets/stylesheets/bootswatch/custom/theme.css.scss
139
+ - app/assets/stylesheets/bootswatch/custom/variables.css.scss
140
+ - app/assets/stylesheets/bootswatch/cyborg/bootswatch.css.scss
141
+ - app/assets/stylesheets/bootswatch/cyborg/theme.css.scss
142
+ - app/assets/stylesheets/bootswatch/cyborg/variables.css.scss
143
+ - app/assets/stylesheets/bootswatch/darkly/bootswatch.css.scss
144
+ - app/assets/stylesheets/bootswatch/darkly/theme.css.scss
145
+ - app/assets/stylesheets/bootswatch/darkly/variables.css.scss
146
+ - app/assets/stylesheets/bootswatch/flatly/bootswatch.css.scss
147
+ - app/assets/stylesheets/bootswatch/flatly/theme.css.scss
148
+ - app/assets/stylesheets/bootswatch/flatly/variables.css.scss
149
+ - app/assets/stylesheets/bootswatch/global/build.css.scss
150
+ - app/assets/stylesheets/bootswatch/global/theme.css.scss
151
+ - app/assets/stylesheets/bootswatch/journal/bootswatch.css.scss
152
+ - app/assets/stylesheets/bootswatch/journal/theme.css.scss
153
+ - app/assets/stylesheets/bootswatch/journal/variables.css.scss
154
+ - app/assets/stylesheets/bootswatch/readable/bootswatch.css.scss
155
+ - app/assets/stylesheets/bootswatch/readable/theme.css.scss
156
+ - app/assets/stylesheets/bootswatch/readable/variables.css.scss
157
+ - app/assets/stylesheets/bootswatch/simplex/bootswatch.css.scss
158
+ - app/assets/stylesheets/bootswatch/simplex/theme.css.scss
159
+ - app/assets/stylesheets/bootswatch/simplex/variables.css.scss
160
+ - app/assets/stylesheets/bootswatch/slate/bootswatch.css.scss
161
+ - app/assets/stylesheets/bootswatch/slate/theme.css.scss
162
+ - app/assets/stylesheets/bootswatch/slate/variables.css.scss
163
+ - app/assets/stylesheets/bootswatch/spacelab/bootswatch.css.scss
164
+ - app/assets/stylesheets/bootswatch/spacelab/theme.css.scss
165
+ - app/assets/stylesheets/bootswatch/spacelab/variables.css.scss
166
+ - app/assets/stylesheets/bootswatch/superhero/bootswatch.css.scss
167
+ - app/assets/stylesheets/bootswatch/superhero/theme.css.scss
168
+ - app/assets/stylesheets/bootswatch/superhero/variables.css.scss
169
+ - app/assets/stylesheets/bootswatch/united/bootswatch.css.scss
170
+ - app/assets/stylesheets/bootswatch/united/theme.css.scss
171
+ - app/assets/stylesheets/bootswatch/united/variables.css.scss
172
+ - app/assets/stylesheets/bootswatch/yeti/bootswatch.css.scss
173
+ - app/assets/stylesheets/bootswatch/yeti/theme.css.scss
174
+ - app/assets/stylesheets/bootswatch/yeti/variables.css.scss
175
+ - app/controllers/bootswitch_controller.rb
176
+ - app/controllers/theme_controller.rb
177
+ - app/helpers/theme_helper.rb
178
+ - app/views/theme/_stylesheet_link_tag.html.haml
179
+ - bootswitch.gemspec
180
+ - config/routes.rb
181
+ - lib/bootswitch.rb
182
+ - lib/bootswitch/configuration.rb
183
+ - lib/bootswitch/engine.rb
184
+ - lib/bootswitch/railtie.rb
185
+ - lib/bootswitch/version.rb
186
+ - lib/generators/bootswitch/install/install_generator.rb
187
+ - lib/generators/bootswitch/install/templates/initializer.rb
188
+ - lib/generators/bootswitch/utils.rb
189
+ - script/rails
190
+ - spec/dummy/.rspec
191
+ - spec/dummy/Rakefile
192
+ - spec/dummy/app/assets/javascripts/application.js
193
+ - spec/dummy/app/assets/stylesheets/application.css.scss
194
+ - spec/dummy/app/controllers/application_controller.rb
195
+ - spec/dummy/app/helpers/application_helper.rb
196
+ - spec/dummy/config.ru
197
+ - spec/dummy/config/application.rb
198
+ - spec/dummy/config/boot.rb
199
+ - spec/dummy/config/environment.rb
200
+ - spec/dummy/config/environments/development.rb
201
+ - spec/dummy/config/environments/test.rb
202
+ - spec/dummy/config/initializers/backtrace_silencers.rb
203
+ - spec/dummy/config/initializers/bootswitch.rb
204
+ - spec/dummy/config/initializers/inflections.rb
205
+ - spec/dummy/config/initializers/mime_types.rb
206
+ - spec/dummy/config/initializers/secret_token.rb
207
+ - spec/dummy/config/initializers/session_store.rb
208
+ - spec/dummy/config/initializers/wrap_parameters.rb
209
+ - spec/dummy/config/routes.rb
210
+ - spec/dummy/public/404.html
211
+ - spec/dummy/public/422.html
212
+ - spec/dummy/public/500.html
213
+ - spec/dummy/public/favicon.ico
214
+ - spec/dummy/public/index.html
215
+ - spec/dummy/script/rails
216
+ - spec/helpers/theme_helper_spec.rb
217
+ - spec/spec_helper.rb
218
+ homepage: http://github.com/nerakdon/bootswitch
219
+ licenses:
220
+ - MIT
221
+ metadata: {}
222
+ post_install_message:
223
+ rdoc_options: []
224
+ require_paths:
225
+ - lib
226
+ required_ruby_version: !ruby/object:Gem::Requirement
227
+ requirements:
228
+ - - ">="
229
+ - !ruby/object:Gem::Version
230
+ version: '0'
231
+ required_rubygems_version: !ruby/object:Gem::Requirement
232
+ requirements:
233
+ - - ">="
234
+ - !ruby/object:Gem::Version
235
+ version: '0'
236
+ requirements: []
237
+ rubyforge_project:
238
+ rubygems_version: 2.2.2
239
+ signing_key:
240
+ specification_version: 4
241
+ summary: Designed to get you up and running with a customizable version of boostrap
242
+ using SASS.
243
+ test_files: []