mangos 0.0.5 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/app/css/app.css +9 -10
- data/app/css/lib/bootstrap.css +6057 -0
- data/app/css/views.index.css +8 -2
- data/app/fonts/lib/glyphicons-halflings-regular.eot +0 -0
- data/app/fonts/lib/glyphicons-halflings-regular.svg +229 -0
- data/app/fonts/lib/glyphicons-halflings-regular.ttf +0 -0
- data/app/fonts/lib/glyphicons-halflings-regular.woff +0 -0
- data/app/index.html +21 -13
- data/app/js/app.js +8 -4
- data/app/js/controllers.index.js +22 -8
- data/app/js/lib/bootstrap.js +1992 -0
- data/bin/mangos +3 -12
- data/lib/mangos/mangos_package.rb +1 -6
- data/lib/mangos/version.rb +1 -1
- metadata +8 -2
data/bin/mangos
CHANGED
@@ -2,16 +2,7 @@
|
|
2
2
|
|
3
3
|
require "mangos"
|
4
4
|
|
5
|
-
|
6
|
-
root_path = Pathname.new(ARGV[1] || ".").realpath
|
5
|
+
root_path = Pathname.new(ARGV.first || ".").realpath
|
7
6
|
|
8
|
-
|
9
|
-
|
10
|
-
mangos = Mangos::Mangos.new(root_path)
|
11
|
-
mangos.install
|
12
|
-
when "update"
|
13
|
-
mangos = Mangos::Mangos.new(root_path)
|
14
|
-
mangos.update
|
15
|
-
else
|
16
|
-
puts "Unknown command #{command.inspect}"
|
17
|
-
end
|
7
|
+
mangos = Mangos::Mangos.new(root_path)
|
8
|
+
mangos.update
|
data/lib/mangos/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mangos
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brenton "B-Train" Fletcher
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-11-
|
11
|
+
date: 2013-11-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -85,8 +85,13 @@ files:
|
|
85
85
|
- Rakefile
|
86
86
|
- app/css/app.css
|
87
87
|
- app/css/colorbox.css
|
88
|
+
- app/css/lib/bootstrap.css
|
88
89
|
- app/css/views.index.css
|
89
90
|
- app/css/views.show.css
|
91
|
+
- app/fonts/lib/glyphicons-halflings-regular.eot
|
92
|
+
- app/fonts/lib/glyphicons-halflings-regular.svg
|
93
|
+
- app/fonts/lib/glyphicons-halflings-regular.ttf
|
94
|
+
- app/fonts/lib/glyphicons-halflings-regular.woff
|
90
95
|
- app/img/blank.png
|
91
96
|
- app/img/icons/accept.png
|
92
97
|
- app/img/icons/add.png
|
@@ -1094,6 +1099,7 @@ files:
|
|
1094
1099
|
- app/js/controllers.index.js
|
1095
1100
|
- app/js/controllers.show.js
|
1096
1101
|
- app/js/framework.js
|
1102
|
+
- app/js/lib/bootstrap.js
|
1097
1103
|
- app/js/lib/jquery-2.0.3.js
|
1098
1104
|
- app/js/lib/jquery.ba-bbq.js
|
1099
1105
|
- app/js/lib/jquery.colorbox.js
|