best_boy 0.2.2 → 0.3.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.
- data/CHANGELOG.md +8 -0
- data/README.md +13 -2
- data/app/assets/images/glyphicons-halflings-white.png +0 -0
- data/app/assets/images/glyphicons-halflings.png +0 -0
- data/app/assets/javascripts/bootstrap_datepicker.js +401 -0
- data/app/assets/stylesheets/bootstrap.scss +4983 -0
- data/app/assets/stylesheets/bootstrap_datepicker.css +156 -0
- data/app/controllers/best_boy/best_boy_events_controller.rb +78 -29
- data/app/views/best_boy/best_boy_events/details.html.erb +11 -8
- data/app/views/best_boy/best_boy_events/monthly_details.html.erb +51 -0
- data/app/views/layouts/best_boy_backend.html.erb +3 -0
- data/config/routes.rb +2 -1
- data/db/bestboy.db +0 -0
- data/lib/best_boy/version.rb +1 -1
- data/lib/generators/best_boy_generator.rb +11 -6
- metadata +8 -2
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: best_boy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.
|
5
|
+
version: 0.3.0
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Christoph Seydel
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2012-07-
|
13
|
+
date: 2012-07-20 00:00:00 +02:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
@@ -130,12 +130,18 @@ files:
|
|
130
130
|
- LICENSE.txt
|
131
131
|
- README.md
|
132
132
|
- Rakefile
|
133
|
+
- app/assets/images/glyphicons-halflings-white.png
|
134
|
+
- app/assets/images/glyphicons-halflings.png
|
135
|
+
- app/assets/javascripts/bootstrap_datepicker.js
|
136
|
+
- app/assets/stylesheets/bootstrap.scss
|
137
|
+
- app/assets/stylesheets/bootstrap_datepicker.css
|
133
138
|
- app/controllers/best_boy/best_boy_events_controller.rb
|
134
139
|
- app/views/best_boy/best_boy_events/_navigation.html.erb
|
135
140
|
- app/views/best_boy/best_boy_events/charts.html.erb
|
136
141
|
- app/views/best_boy/best_boy_events/details.html.erb
|
137
142
|
- app/views/best_boy/best_boy_events/index.html.erb
|
138
143
|
- app/views/best_boy/best_boy_events/lists.html.erb
|
144
|
+
- app/views/best_boy/best_boy_events/monthly_details.html.erb
|
139
145
|
- app/views/best_boy/best_boy_events/stats.html.erb
|
140
146
|
- app/views/layouts/best_boy_backend.html.erb
|
141
147
|
- best_boy.gemspec
|