user_mgmt 0.0.5 → 0.0.31

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: 7939c268a44f904ddb97ff6cf43da660684f4e52
4
- data.tar.gz: 78f206ca0ecce1284a5f9c0305b74564e031c2b6
3
+ metadata.gz: f06905117a9b6e7b7d68c5ea4e1cc311397cffc4
4
+ data.tar.gz: d70f2983904a19767dc15a2534552c641e2c259a
5
5
  SHA512:
6
- metadata.gz: 40981a7be34077135fe2a9dd674f78b0f3e3d785c48f0bbe8611cb48cf197810dec5e4d10ce2801ecca9d040a1d0885a4edd697e0d2c9207df0d5aae0b6963ce
7
- data.tar.gz: dea7aab25f19103abfa7681517baceaf46cacdb7a3717e55125a4bdb75f1ba4546ef04781b36ead7a58292c5ae2bb4638da0ef59e7e0c4c63984a79e5676d216
6
+ metadata.gz: 22e062cf0010f6275de305ea035101573c59dd2b17fd334ee65086e06b7554f62e18ab609e27ffa8ce77ed416fa47ac9d8e8aa57ba15290fabade5733b82019f
7
+ data.tar.gz: f0f2cbb90480923bf109f706d09e38af78e02cb5c95f3fee60afbbcca56d8dceb7b9477f6dfddb19ae79fdd1df5c52c8503ee20bd6b6553977af0d6307755b3c
data/README.md CHANGED
@@ -12,11 +12,9 @@ And then execute:
12
12
 
13
13
  $ bundle
14
14
 
15
- Then you have to run the generator:
15
+ Or install it yourself as:
16
16
 
17
- rails generate user_mgmt:install
18
-
19
- This generator will install an initializer which describes all the gem's configuration options and you must take a look at it.
17
+ $ gem install user_mgmt
20
18
 
21
19
  ## Usage
22
20
 
@@ -1,3 +1,3 @@
1
1
  module UserMgmt
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.31"
3
3
  end
data/lib/user_mgmt.rb CHANGED
@@ -19,5 +19,5 @@ module UserMgmt
19
19
  def self.setup
20
20
  yield self
21
21
  end
22
-
22
+
23
23
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: user_mgmt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.31
5
5
  platform: ruby
6
6
  authors:
7
7
  - Danilo Faria, Fernando Gorodscy, Josh Leslie
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-07-10 00:00:00.000000000 Z
11
+ date: 2013-07-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -99,12 +99,9 @@ files:
99
99
  - app/controllers/user_mgmt_controller.rb
100
100
  - app/views/user_mgmt/registrations/_user_form.html.haml
101
101
  - app/views/user_mgmt/registrations/new.html.haml
102
- - lib/generators/templates/README
103
102
  - lib/generators/templates/user_mgmt.rb
104
- - lib/generators/user_mgmt/install_generator.rb
105
103
  - lib/user_mgmt.rb
106
104
  - lib/user_mgmt/configurator.rb
107
- - lib/user_mgmt/engine.rb
108
105
  - lib/user_mgmt/version.rb
109
106
  - spec/spec_helper.rb
110
107
  - user_mgmt.gemspec
@@ -1,10 +0,0 @@
1
- ===============================================================================
2
-
3
- Some setup you must do manually if you haven't yet:
4
-
5
- 1. Ensure you have defined your external database URI, in
6
- config/initializers/user_mgmt.rb:
7
-
8
- config.external_database_URI = "yourexternaldatabaseuri.com"
9
-
10
- ===============================================================================
@@ -1,22 +0,0 @@
1
- require 'rails/generators'
2
- module UserMgmt
3
- module Generators
4
- class InstallGenerator < Rails::Generators::Base
5
- source_root File.expand_path("../../templates", __FILE__)
6
-
7
- desc "Creates a UserMgmt initializer and copy locale files to your application."
8
-
9
- def copy_initializer
10
- template "user_mgmt.rb", "config/initializers/user_mgmt.rb"
11
- end
12
-
13
- # def copy_locale
14
- # copy_file "../../../config/locales/en.yml", "config/locales/user_mgmt.en.yml"
15
- # end
16
-
17
- def show_readme
18
- readme "README" if behavior == :invoke
19
- end
20
- end
21
- end
22
- end
@@ -1,5 +0,0 @@
1
- require 'rails'
2
- module UserMgmt
3
- class Engine < Rails::Engine
4
- end
5
- end