railhead_autouser 0.1.5 → 0.1.7
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 +4 -8
- data/railhead_autouser.gemspec +5 -6
- metadata +8 -9
- data/init.rb +0 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 28daeb03c383ef1695ed6cabd803bc573c376887
|
|
4
|
+
data.tar.gz: 3ed3c2394da97d19682521e06a7d2e2df83a990a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2c1d45ae6fcbab67ebe571bc483aee9a69f3ae57a986b584dad91fe5c8422b6ccc39c318c29f5c0c9008ef8436abc1d0d7ba03c84b3f665ac532eafc24e07be9
|
|
7
|
+
data.tar.gz: 4f165271d88995fbfa15e60de89b1f9503a30aa3092b160dc691c388fa491ba6ce4a59366db90065de3117a069892953053a06839b477c05b8cece3c0bf3e7cc
|
data/README.rdoc
CHANGED
|
@@ -1,16 +1,12 @@
|
|
|
1
|
-
=
|
|
1
|
+
= RailheadAutouser
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
RailheadAutouser is a Ruby on Rails plugin that automatically adds current_user to models.
|
|
4
4
|
|
|
5
5
|
== Installation
|
|
6
6
|
|
|
7
7
|
Installation is available as gem (recommended):
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
Or as Rails plugin:
|
|
12
|
-
|
|
13
|
-
$ ruby script/plugin install git://github.com/nagybence/railhead_autouser.git
|
|
9
|
+
gem 'railhead_autouser'
|
|
14
10
|
|
|
15
11
|
== Usage
|
|
16
12
|
|
|
@@ -27,4 +23,4 @@ Add the following line to your controller:
|
|
|
27
23
|
|
|
28
24
|
== License
|
|
29
25
|
|
|
30
|
-
Copyright (c) 2008-
|
|
26
|
+
Copyright (c) 2008-2015 Bence Nagy (nagybence@tipogral.hu), released under the MIT license.
|
data/railhead_autouser.gemspec
CHANGED
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "railhead_autouser"
|
|
3
|
-
s.version = "0.1.
|
|
4
|
-
s.date = "
|
|
5
|
-
s.summary = "
|
|
6
|
-
s.email = "
|
|
3
|
+
s.version = "0.1.7"
|
|
4
|
+
s.date = "2015-02-23"
|
|
5
|
+
s.summary = "RailheadAutouser is a Ruby on Rails plugin that automatically adds current_user to models."
|
|
6
|
+
s.email = "bence.nagy@gmail.com"
|
|
7
7
|
s.homepage = "http://github.com/nagybence/railhead_autouser"
|
|
8
|
-
s.description = "RailheadAutoUser is a Ruby on Rails plugin that automatically adds current_user to models."
|
|
9
8
|
s.has_rdoc = true
|
|
10
9
|
s.authors = ["Bence Nagy"]
|
|
11
10
|
s.files = ["MIT-LICENSE",
|
|
12
11
|
"README.rdoc",
|
|
13
|
-
"init.rb",
|
|
14
12
|
"railhead_autouser.gemspec",
|
|
15
13
|
"lib/railhead_autouser.rb"]
|
|
16
14
|
s.rdoc_options = ["--main", "README.rdoc"]
|
|
17
15
|
s.extra_rdoc_files = ["README.rdoc"]
|
|
16
|
+
s.license = 'MIT'
|
|
18
17
|
end
|
metadata
CHANGED
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: railhead_autouser
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bence Nagy
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-02-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description:
|
|
14
|
-
|
|
15
|
-
email: nagybence@tipogral.hu
|
|
13
|
+
description:
|
|
14
|
+
email: bence.nagy@gmail.com
|
|
16
15
|
executables: []
|
|
17
16
|
extensions: []
|
|
18
17
|
extra_rdoc_files:
|
|
@@ -20,11 +19,11 @@ extra_rdoc_files:
|
|
|
20
19
|
files:
|
|
21
20
|
- MIT-LICENSE
|
|
22
21
|
- README.rdoc
|
|
23
|
-
- init.rb
|
|
24
22
|
- lib/railhead_autouser.rb
|
|
25
23
|
- railhead_autouser.gemspec
|
|
26
24
|
homepage: http://github.com/nagybence/railhead_autouser
|
|
27
|
-
licenses:
|
|
25
|
+
licenses:
|
|
26
|
+
- MIT
|
|
28
27
|
metadata: {}
|
|
29
28
|
post_install_message:
|
|
30
29
|
rdoc_options:
|
|
@@ -44,9 +43,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
44
43
|
version: '0'
|
|
45
44
|
requirements: []
|
|
46
45
|
rubyforge_project:
|
|
47
|
-
rubygems_version: 2.
|
|
46
|
+
rubygems_version: 2.4.6
|
|
48
47
|
signing_key:
|
|
49
48
|
specification_version: 4
|
|
50
|
-
summary:
|
|
49
|
+
summary: RailheadAutouser is a Ruby on Rails plugin that automatically adds current_user
|
|
51
50
|
to models.
|
|
52
51
|
test_files: []
|
data/init.rb
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
require 'railhead_autouser'
|