gitkeeper 0.0.4 → 0.0.5
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 +9 -0
- data/app/assets/javascripts/gitkeeper/{auth.js → home.js} +0 -0
- data/app/assets/stylesheets/gitkeeper/{auth.css → home.css} +0 -0
- data/app/controllers/gitkeeper/{auth_controller.rb → home_controller.rb} +1 -1
- data/app/helpers/gitkeeper/{auth_helper.rb → home_helper.rb} +1 -1
- data/lib/gitkeeper/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 97b27b3c47d791237995e585784bf9f0587819b2
|
|
4
|
+
data.tar.gz: aa5c42bc35a32fd05dca58b67b53cc157df596c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 467a03e173b5850a179379eee5a34bf73447f02fa417ccac3aabb61cfd1bee1231ecf12a3a9db6c8de97f4a54bd9f98685933b37bcaab2a140e308b3e0545f99
|
|
7
|
+
data.tar.gz: cf412bf48379fc6712477929632e1c832f9756b4317f29a04f8238643090141d37d59583a86f8edf82aed450a37dc8775ae217d74b0faa717f2c20e7434ac333
|
data/README.rdoc
CHANGED
|
@@ -44,6 +44,15 @@ Mount the engine adding the following to config/routes.rb
|
|
|
44
44
|
mount Gitkeeper::Engine => "/auth"
|
|
45
45
|
end
|
|
46
46
|
|
|
47
|
+
Config mongoid ( host_app/config/mongoid.yml ) and start MongoDB
|
|
48
|
+
|
|
49
|
+
development:
|
|
50
|
+
sessions:
|
|
51
|
+
default:
|
|
52
|
+
database: gitkeeper_dev
|
|
53
|
+
hosts:
|
|
54
|
+
- localhost:27017
|
|
55
|
+
|
|
47
56
|
Run the server
|
|
48
57
|
|
|
49
58
|
rails s
|
|
File without changes
|
|
File without changes
|
data/lib/gitkeeper/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Luca G. Soave
|
|
@@ -73,16 +73,16 @@ executables: []
|
|
|
73
73
|
extensions: []
|
|
74
74
|
extra_rdoc_files: []
|
|
75
75
|
files:
|
|
76
|
-
- app/controllers/gitkeeper/auth_controller.rb
|
|
77
76
|
- app/controllers/gitkeeper/application_controller.rb
|
|
77
|
+
- app/controllers/gitkeeper/home_controller.rb
|
|
78
78
|
- app/controllers/gitkeeper/sessions_controller.rb
|
|
79
79
|
- app/assets/javascripts/gitkeeper/application.js
|
|
80
|
-
- app/assets/javascripts/gitkeeper/
|
|
81
|
-
- app/assets/stylesheets/gitkeeper/auth.css
|
|
80
|
+
- app/assets/javascripts/gitkeeper/home.js
|
|
82
81
|
- app/assets/stylesheets/gitkeeper/application.css
|
|
82
|
+
- app/assets/stylesheets/gitkeeper/home.css
|
|
83
83
|
- app/helpers/gitkeeper/application_helper.rb
|
|
84
84
|
- app/helpers/gitkeeper/sessions_helper.rb
|
|
85
|
-
- app/helpers/gitkeeper/
|
|
85
|
+
- app/helpers/gitkeeper/home_helper.rb
|
|
86
86
|
- app/models/gitkeeper/user.rb
|
|
87
87
|
- app/views/gitkeeper/home/index.html.erb
|
|
88
88
|
- app/views/layouts/gitkeeper/application.html.erb
|