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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1f9456dd2b41b758249c1f5748901834435563ca
4
- data.tar.gz: 7c3c0fb6a8b188b5000b6a5aa49af93abf1bbd4b
3
+ metadata.gz: 97b27b3c47d791237995e585784bf9f0587819b2
4
+ data.tar.gz: aa5c42bc35a32fd05dca58b67b53cc157df596c5
5
5
  SHA512:
6
- metadata.gz: 5a975ee388192179afb738f73275c39d38f8742671fbde780cacd9304eadd4098ca18a44d003baf27df6c08ab6e61be774af67983c6ce52add8bca04fdfee5e2
7
- data.tar.gz: c096781060b9f0e6635fe9c9e911db0fbe34aee2b5b743ebf734ea4d2dd4e5ccf9c47e06b5b160196ef988733f1a962c097b52386d8318e16a32f79e8ef2f750
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
@@ -1,7 +1,7 @@
1
1
  require_dependency "gitkeeper/application_controller"
2
2
 
3
3
  module Gitkeeper
4
- class AuthController < ApplicationController
4
+ class HomeController < ApplicationController
5
5
  before_filter :current_user
6
6
 
7
7
  def index
@@ -1,4 +1,4 @@
1
1
  module Gitkeeper
2
- module AuthHelper
2
+ module HomeHelper
3
3
  end
4
4
  end
@@ -1,3 +1,3 @@
1
1
  module Gitkeeper
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
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
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/auth.js
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/auth_helper.rb
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