drg_books 0.0.3 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8bc2496f23cff28378fc3e7670e6f4f074e92395
4
- data.tar.gz: 3833ffca0dcc9c35a1002e478e9dbdf1301f5716
3
+ metadata.gz: 6200e22549ee905d46da73e11858658c2c3c76b9
4
+ data.tar.gz: 539ce28d5f7386b91d0279721cc583cfe7a89f68
5
5
  SHA512:
6
- metadata.gz: 77c105ea685284fbba6fac7a93307a4943c3f82c3dfe5e461e90ad19190f8933e3e9e1729bfc7ccc228bea53ced16de120483f7f889c3172f288497b2ecf9ebc
7
- data.tar.gz: c6eec74e1a91cabcb60233f2cf39a0b4b5e68cec5d9f02c200f1bc92fbd236ceb85d7f2d2ee1f3c09d0bd8c4987f372215a39a4df7d43fa25568aa301d06a39e
6
+ metadata.gz: b2617901e37e0cfc2777313765245b413dec8f611538a5be515d0e006e2f50793bb40d66881a12240d428065caa1664104e2cec4dc247692b2fafeff7d8a53fc
7
+ data.tar.gz: 746119f252559e526834415595b060f652778d31cffcf7192bb0ed76debc03cb8da778d8f66e4ec74d334cbc791029c4a310ddbf74063c2642262d19bff31387
data/README.md ADDED
@@ -0,0 +1,60 @@
1
+ # DrgBlogNewsForum
2
+
3
+ DrgBooks plugin implements documentation management in DRG CMS enabled web site.
4
+
5
+ Configuration
6
+ ----------------
7
+
8
+ Usage:
9
+
10
+ Add this line to your Gemfile:
11
+ ```ruby
12
+ gem 'drg_books'
13
+ ```
14
+
15
+ Create apropriate dc_page document with related design. Use this line in design.
16
+ ```irb
17
+ div id="docs"><%= dc_render(:dc_book) %></div>
18
+ ```
19
+
20
+ Update routes.rb
21
+ ```ruby
22
+ get '/books/:method/:book_id/', to: 'dc_main#page', :defaults => { path: 'books' }
23
+ get '/books/:method/:book_id/:chapter_id', to: 'dc_main#page', :defaults => { path: 'books' }
24
+ get '/books/:method/:book_id/:chapter_id/:version', to: 'dc_main#page', :defaults => { path: 'books' }
25
+ ```
26
+
27
+ Documentation
28
+ -------------
29
+
30
+ Please see the DRG CMS website for up-to-date documentation:
31
+ [www.drgcms.org](http://www.drgcms.org)
32
+
33
+ License
34
+ -------
35
+
36
+ Copyright (c) 2012-2015 Damjan Rems
37
+
38
+ Permission is hereby granted, free of charge, to any person obtaining
39
+ a copy of this software and associated documentation files (the
40
+ "Software"), to deal in the Software without restriction, including
41
+ without limitation the rights to use, copy, modify, merge, publish,
42
+ distribute, sublicense, and/or sell copies of the Software, and to
43
+ permit persons to whom the Software is furnished to do so, subject to
44
+ the following conditions:
45
+
46
+ The above copyright notice and this permission notice shall be
47
+ included in all copies or substantial portions of the Software.
48
+
49
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
50
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
51
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
52
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
53
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
54
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
55
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
56
+
57
+ Credits
58
+ -------
59
+
60
+ Damjan Rems: damjan dot rems at gmail dot com
@@ -1,3 +1,3 @@
1
1
  module DrgBooks
2
- VERSION = "0.0.3"
2
+ VERSION = "0.5.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: drg_books
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Damjan Rems
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-09 00:00:00.000000000 Z
11
+ date: 2015-05-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: drg_cms
@@ -24,7 +24,7 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
- description: Plugin for writing documentation for DRG CMS
27
+ description: 'DRG CMS: Plugin for writing documentation'
28
28
  email:
29
29
  - drgcms@gmail.com
30
30
  executables: []
@@ -32,7 +32,7 @@ extensions: []
32
32
  extra_rdoc_files: []
33
33
  files:
34
34
  - MIT-LICENSE
35
- - README.rdoc
35
+ - README.md
36
36
  - Rakefile
37
37
  - app/assets/stylesheets/drg_books.css
38
38
  - app/controllers/books_controller.rb
@@ -107,10 +107,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
107
107
  version: '0'
108
108
  requirements: []
109
109
  rubyforge_project:
110
- rubygems_version: 2.2.2
110
+ rubygems_version: 2.2.3
111
111
  signing_key:
112
112
  specification_version: 4
113
- summary: Documentation plugin for DRG CMS
113
+ summary: 'DRG CMS: Documentation plugin'
114
114
  test_files:
115
115
  - test/test_helper.rb
116
116
  - test/integration/navigation_test.rb
data/README.rdoc DELETED
@@ -1,3 +0,0 @@
1
- = DrgBooks
2
-
3
- This project rocks and uses MIT-LICENSE.