gitkeeper 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.
- checksums.yaml +4 -4
- data/README.rdoc +27 -2
- data/lib/gitkeeper/version.rb +1 -1
- metadata +3 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c83fba07901e8017d43cc8c6aad223b9edd8baab
|
4
|
+
data.tar.gz: 5e97e487c237722836da142d406bd867e580c2e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a569367ad6a24db488296e7e61e86b7115e62dabe083f3a737ee2a438b77b46093fc7ec070f701b3b94252c7c424574988e1e3051961102585857e4266f82c59
|
7
|
+
data.tar.gz: 8e876254da23146d28913828d86413925d6ceb65ab3d36c95227fc1c202dd4d117a1c087f9aa7dab5e85aeb8feff30e3bf81b874e2175aec2883863f92f444a4
|
data/README.rdoc
CHANGED
@@ -1,5 +1,30 @@
|
|
1
|
-
= Gitkeeper
|
1
|
+
= Gitkeeper for Rails 4.0.0
|
2
2
|
|
3
|
-
|
3
|
+
Create a brand new rails app
|
4
|
+
|
5
|
+
rails new host_app -T -O -B
|
6
|
+
|
7
|
+
Include the engine in your app
|
8
|
+
|
9
|
+
cd host_app
|
10
|
+
|
11
|
+
# host_app/Gemfile
|
12
|
+
gem 'gitkeeper'
|
13
|
+
bundle install
|
14
|
+
|
15
|
+
Mount the engine
|
16
|
+
|
17
|
+
# host_app/config/routes.rb
|
18
|
+
HostApp::Application.routes.draw do
|
19
|
+
mount Gitkeeper::Engine => "/auth"
|
20
|
+
end
|
21
|
+
|
22
|
+
Run the server
|
23
|
+
|
24
|
+
rails s
|
25
|
+
|
26
|
+
Visit
|
27
|
+
|
28
|
+
http://localhost:3000/auth/github/
|
4
29
|
|
5
30
|
This project rocks and uses MIT-LICENSE.
|
data/lib/gitkeeper/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitkeeper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Luca G. Soave
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-07-
|
11
|
+
date: 2013-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -66,20 +66,6 @@ dependencies:
|
|
66
66
|
- - ~>
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: 1.1.1
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: mongoid
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
- - '>='
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: '0'
|
76
|
-
type: :runtime
|
77
|
-
prerelease: false
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
79
|
-
requirements:
|
80
|
-
- - '>='
|
81
|
-
- !ruby/object:Gem::Version
|
82
|
-
version: '0'
|
83
69
|
description: An engine for Rails 4.0.0, MongoID, OmniAuth, to Sign in with Github
|
84
70
|
email:
|
85
71
|
- luca.soave@gmail.com
|
@@ -182,7 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
182
168
|
- !ruby/object:Gem::Version
|
183
169
|
version: '0'
|
184
170
|
requirements: []
|
185
|
-
rubyforge_project:
|
171
|
+
rubyforge_project: mongoid
|
186
172
|
rubygems_version: 2.0.3
|
187
173
|
signing_key:
|
188
174
|
specification_version: 4
|