user_mgmt 0.1.2 → 0.2.0

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.
@@ -1,5 +1,5 @@
1
1
  module UserMgmt
2
- class ApplicationController < ActionController::Base
2
+ class ApplicationController < ::ApplicationController
3
3
  require "net/http"
4
4
  require "uri"
5
5
 
@@ -1,3 +1,3 @@
1
1
  module UserMgmt
2
- VERSION = "0.1.2"
2
+ VERSION = "0.2.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: user_mgmt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.2.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-08-15 00:00:00.000000000 Z
12
+ date: 2013-08-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sqlite3
@@ -333,7 +333,6 @@ files:
333
333
  - app/helpers/user_mgmt/registrations_helper.rb
334
334
  - app/helpers/user_mgmt/sessions_helper.rb
335
335
  - app/models/user_mgmt/user.rb
336
- - app/views/layouts/user_mgmt/application.html.erb
337
336
  - app/views/user_mgmt/registrations/_user_form.html.haml
338
337
  - app/views/user_mgmt/registrations/edit.html.haml
339
338
  - app/views/user_mgmt/registrations/new.html.haml
@@ -1,17 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>UserMgmt</title>
5
- <%= stylesheet_link_tag "user_mgmt/application", media: "all" %>
6
- <%= javascript_include_tag "user_mgmt/application" %>
7
- <%= csrf_meta_tags %>
8
- </head>
9
- <body>
10
- <div class="container">
11
- <% flash.each do |key, value| %>
12
- <%= content_tag(:div, value, class: "alert alert-#{key} ") %>
13
- <% end %>
14
- <%= yield %>
15
- </div>
16
- </body>
17
- </html>