friendly_id-method_scopes 0.1.6 → 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/Rakefile +2 -0
- data/VERSION +1 -1
- data/friendly_id-method_scopes.gemspec +4 -3
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e67070a2e4d67bd05d937737eb53d8c056fefe65
|
|
4
|
+
data.tar.gz: dd14cb6e8c46666986bc1e6f2623335f72a0812b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eeb1d387e36c7b1bc3cd885cef7f454b67763e3c617e33f9a3afb43f54fb9deee9068ddbd43df595ff51c56a0dc9e482da1112fc0fdb368fbf525ac300c25856
|
|
7
|
+
data.tar.gz: 5882aa978b998a031f12f672a4a43ec565cb9d1853a02383f3fc6e3cf6cbfe5784b0576838f1de5c99d0e73946c91de61461bc9c18d7725f4159d25e54970fae
|
data/Rakefile
CHANGED
|
@@ -21,8 +21,10 @@ begin
|
|
|
21
21
|
s.summary = "FriendlyId Extension to allow method scopes."
|
|
22
22
|
s.email = "karen.e.lundgren@gmail.com"
|
|
23
23
|
s.homepage = "http://www.gemvein.com/museum/cases/friendly_id-method_scopes"
|
|
24
|
+
s.licenses = ["MIT"]
|
|
24
25
|
s.description = "FriendlyId Extension to allow method scopes, in addition to column and relationship scopes."
|
|
25
26
|
s.authors = ["Karen Lundgren"]
|
|
27
|
+
# s.version = File.read('VERSION').chomp
|
|
26
28
|
end
|
|
27
29
|
rescue LoadError
|
|
28
30
|
puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.7
|
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: friendly_id-method_scopes 0.1.
|
|
5
|
+
# stub: friendly_id-method_scopes 0.1.7 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "friendly_id-method_scopes"
|
|
9
|
-
s.version = "0.1.
|
|
9
|
+
s.version = "0.1.7"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|
|
13
13
|
s.authors = ["Karen Lundgren"]
|
|
14
|
-
s.date = "2015-06-
|
|
14
|
+
s.date = "2015-06-23"
|
|
15
15
|
s.description = "FriendlyId Extension to allow method scopes, in addition to column and relationship scopes."
|
|
16
16
|
s.email = "karen.e.lundgren@gmail.com"
|
|
17
17
|
s.extra_rdoc_files = [
|
|
@@ -100,6 +100,7 @@ Gem::Specification.new do |s|
|
|
|
100
100
|
"spec/support/books_with_authors.rb"
|
|
101
101
|
]
|
|
102
102
|
s.homepage = "http://www.gemvein.com/museum/cases/friendly_id-method_scopes"
|
|
103
|
+
s.licenses = ["MIT"]
|
|
103
104
|
s.rubygems_version = "2.4.5"
|
|
104
105
|
s.summary = "FriendlyId Extension to allow method scopes."
|
|
105
106
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: friendly_id-method_scopes
|
|
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
|
- Karen Lundgren
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-06-
|
|
11
|
+
date: 2015-06-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -281,7 +281,8 @@ files:
|
|
|
281
281
|
- spec/support/authors.rb
|
|
282
282
|
- spec/support/books_with_authors.rb
|
|
283
283
|
homepage: http://www.gemvein.com/museum/cases/friendly_id-method_scopes
|
|
284
|
-
licenses:
|
|
284
|
+
licenses:
|
|
285
|
+
- MIT
|
|
285
286
|
metadata: {}
|
|
286
287
|
post_install_message:
|
|
287
288
|
rdoc_options: []
|