storys 0.0.1 → 0.0.2
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/app/css/app.css +8 -0
- data/lib/storys/version.rb +1 -1
- data/storys.gemspec +2 -2
- metadata +4 -5
- data/console +0 -11
data/app/css/app.css
CHANGED
|
@@ -19,6 +19,14 @@ h4 { font-size: 20px; margin-bottom: 0.6em; text-align: left; font-weight: bold;
|
|
|
19
19
|
padding: 40px;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
+
#wrapper, #wrapper div {
|
|
23
|
+
-webkit-user-select: none;
|
|
24
|
+
-moz-user-select: none;
|
|
25
|
+
-khtml-user-select: none;
|
|
26
|
+
-ms-user-select: none;
|
|
27
|
+
user-select: none;
|
|
28
|
+
}
|
|
29
|
+
|
|
22
30
|
#page-back, #page-next {
|
|
23
31
|
position: fixed;
|
|
24
32
|
top: 0;
|
data/lib/storys/version.rb
CHANGED
data/storys.gemspec
CHANGED
|
@@ -5,9 +5,9 @@ Gem::Specification.new do |s|
|
|
|
5
5
|
s.name = "storys"
|
|
6
6
|
s.version = Storys::VERSION
|
|
7
7
|
s.platform = Gem::Platform::RUBY
|
|
8
|
-
s.authors = [
|
|
8
|
+
s.authors = ['Brenton "B-Train" Fletcher']
|
|
9
9
|
s.email = ["i@bloople.net"]
|
|
10
|
-
s.homepage = "http://
|
|
10
|
+
s.homepage = "http://github.com/bloopletech/storys"
|
|
11
11
|
s.summary = "Storys indexes a collection of stories and generates a SPA that browses the collection."
|
|
12
12
|
s.description = "A collection of stories is a directory (the container) containing 1..* HTML files (stories). Storys indexes a collection in this format, and generates a HTML/JS Single Page Application (SPA) that allows you to browse and view stories in your collection. The SPA UI is much easier to use than using a filesystem browser; and the SPA, along with the collection can be trivially served over a network by putting the collection and the SPA in a directory served by nginx or Apache."
|
|
13
13
|
|
metadata
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: storys
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
|
-
- Brenton Fletcher
|
|
8
|
+
- Brenton "B-Train" Fletcher
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-10-
|
|
12
|
+
date: 2013-10-21 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -1110,7 +1110,6 @@ files:
|
|
|
1110
1110
|
- app/js/lib/jquery.hammer.js
|
|
1111
1111
|
- app/js/lib/underscore.js
|
|
1112
1112
|
- bin/storys
|
|
1113
|
-
- console
|
|
1114
1113
|
- lib/storys.rb
|
|
1115
1114
|
- lib/storys/core_ext/pathname.rb
|
|
1116
1115
|
- lib/storys/story.rb
|
|
@@ -1121,7 +1120,7 @@ files:
|
|
|
1121
1120
|
- lib/storys/update.rb
|
|
1122
1121
|
- lib/storys/version.rb
|
|
1123
1122
|
- storys.gemspec
|
|
1124
|
-
homepage: http://
|
|
1123
|
+
homepage: http://github.com/bloopletech/storys
|
|
1125
1124
|
licenses: []
|
|
1126
1125
|
post_install_message:
|
|
1127
1126
|
rdoc_options: []
|
data/console
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
|
|
3
|
-
$:.unshift "./lib"
|
|
4
|
-
require 'mangos'
|
|
5
|
-
|
|
6
|
-
#$m = Mangos::Mangos.new(Pathname.new("/Users/bloopletech/manga/"), Addressable::URI.parse("http://localhost/manga/"))
|
|
7
|
-
#$m = Mangos::Mangos.new(Pathname.new("/Volumes/Mugi/Manga/mangar-data/public/system/books"), Addressable::URI.parse("/Mugi/Manga/mangar-data/public/system/books/"))
|
|
8
|
-
#$m = Mangos::Mangos.new(Pathname.new("/Volumes/Mugi/manga"), Addressable::URI.parse("http://localhost:8081/Mugi/manga/"))
|
|
9
|
-
|
|
10
|
-
require 'irb'
|
|
11
|
-
IRB.start
|