omnigollum 0.1.1 → 0.1.3

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/Readme.md +5 -17
  3. data/lib/omnigollum.rb +2 -0
  4. metadata +6 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6433e6d7b91b97428df0d818edad425d84b13e12
4
- data.tar.gz: 54e215475b725c404151388c7179666019d61dbe
3
+ metadata.gz: 73942537eee3fb79bf6989e56f321c69ae2dc4e7
4
+ data.tar.gz: 7f320cea5738ca60aea8146b49160fbf8351409a
5
5
  SHA512:
6
- metadata.gz: f62358d2eb2bfc45fb6d4ebedc223c82f538d49a8801a1caaab8637f810853ae8597c0cfe4d7529ad338583f628a9dbb16e334d606f0b4132d0c1a371898dee8
7
- data.tar.gz: 1ef15b097f7833ff8f987b730e62dceb9d2ade100681183e7fc9e3d0559fd60bf596489372967220a06abfe6a36c6acdd797a15e1c1139021a6c108c699352eb
6
+ metadata.gz: 5562795daf7d367bea28543e69167da5723568ec167709104004b8de8a7340f70c0db96a1a00e73178cbeff28e325b7b4e66188f7e84b5bd91a5025b4c352b5a
7
+ data.tar.gz: c4cf2be7e76a75872c114688c1faf826cc3bef2403c908545a77492f4f177c9fe63282c69eb9eb0bc4f8ac826312c30df415b1db8ad9a9260dae856ecf9f9c3e
data/Readme.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## Quick Installation/Configuration
4
4
 
5
- ```
5
+ ```sh
6
6
  $ git clone https://github.com/arr2036/omnigollum.git
7
7
  $ cd omnigollum
8
8
  $ gem build omnigollum.gemspec
@@ -20,12 +20,9 @@ $ gollum --config config.rb
20
20
  ```
21
21
 
22
22
  ## Installation
23
-
24
- ### Manual
25
-
26
- Clone into your ruby library path.
27
-
28
- git clone git://github.com/arr2036/omnigollum.git
23
+ ```sh
24
+ $ gem install omnigollum
25
+ ```
29
26
 
30
27
  ## Configuration
31
28
 
@@ -86,17 +83,8 @@ Precious::App.register Omnigollum::Sinatra
86
83
 
87
84
  ## Required patches
88
85
 
89
- ### mustache
90
-
91
- https://github.com/defunkt/mustache
92
-
93
- Must be at v0.99.5 (currently unreleased), replace the gem version with 6c4e12d58844d99909df or
94
- the current HEAD.
95
-
96
- Feel free to complain loudly that the maintainer should roll a new gem.
97
-
98
86
  ### Gollum
99
- You can also (optionally) apply the patches here, to get a neat little auth
87
+ You can (optionally) apply the patches here, to get a neat little auth
100
88
  status widget in the top right corner of the page https://github.com/arr2036/gollum/commit/32de2cad920ccc6e955b8e19f6e23c2b3b4c8964
101
89
 
102
90
 
@@ -122,6 +122,8 @@ module Omnigollum
122
122
  '/create',
123
123
  '/edit/*',
124
124
  '/edit',
125
+ '/rename/*',
126
+ '/rename/',
125
127
  '/delete/*',
126
128
  '/delete'],
127
129
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omnigollum
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arran Cudbard-Bell
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-09-28 00:00:00.000000000 Z
12
+ date: 2013-11-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: gollum
@@ -43,16 +43,16 @@ dependencies:
43
43
  name: mustache
44
44
  requirement: !ruby/object:Gem::Requirement
45
45
  requirements:
46
- - - '>='
46
+ - - ~>
47
47
  - !ruby/object:Gem::Version
48
- version: '0'
48
+ version: 0.99.5
49
49
  type: :runtime
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
52
52
  requirements:
53
- - - '>='
53
+ - - ~>
54
54
  - !ruby/object:Gem::Version
55
- version: '0'
55
+ version: 0.99.5
56
56
  description: |
57
57
  Omnigollum adds support for OmniAuth in Gollum. It executes an OmniAuth::Builder proc/block to figure out which providers you've configured, then passes it on to omniauth to create the actual omniauth configuration.
58
58