record_collection 0.3.2 → 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/Rakefile +7 -2
- data/lib/record_collection/version.rb +1 -1
- data/record_collection.gemspec +2 -2
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b98ae12915d7729635ab1664db320ce1868141bc
|
4
|
+
data.tar.gz: 1e7d113fedb0d54799ebf999676672087892522b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5266b198e1df54dcf84d8d10b9a8bfe2e80f4b13178b52d6f9c989c5603dc236000b372ee940794a15211ad333ffb0efac667108d8dcf4b37fd162ba2b7b945b
|
7
|
+
data.tar.gz: 17904cf6ef6e73046a01d00beb1f353618d5a09006e4ab7158763d9666aca2d43c231d9e0fa8c0f59cf28b45c6b975c37f56531ea274ff431954c9468708c7a9
|
data/.gitignore
CHANGED
data/Rakefile
CHANGED
@@ -5,12 +5,17 @@ rescue LoadError
|
|
5
5
|
end
|
6
6
|
require "bundler/gem_tasks"
|
7
7
|
|
8
|
+
APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
|
9
|
+
load 'rails/tasks/engine.rake'
|
10
|
+
|
11
|
+
Bundler::GemHelper.install_tasks
|
12
|
+
|
8
13
|
require 'rspec/core'
|
9
14
|
require 'rspec/core/rake_task'
|
10
15
|
|
11
16
|
desc "Run all specs in spec directory (excluding plugin specs)"
|
12
|
-
|
13
|
-
RSpec::Core::RakeTask.new(:
|
17
|
+
RSpec::Core::RakeTask.new(spec: 'app:db:test:prepare')
|
18
|
+
#RSpec::Core::RakeTask.new(spec: 'db:test:prepare')
|
14
19
|
|
15
20
|
task default: :spec
|
16
21
|
|
data/record_collection.gemspec
CHANGED
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["Benjamin ter Kuile"]
|
10
10
|
spec.email = ["bterkuile@gmail.com"]
|
11
11
|
spec.summary = %q{Manage collections of records in Ruby on Rails}
|
12
|
-
spec.description = %q{This gem
|
13
|
-
spec.homepage = "
|
12
|
+
spec.description = %q{This gem helps you to work on subsets or rails models}
|
13
|
+
spec.homepage = "https://github.com/bterkuile/record_collection"
|
14
14
|
spec.license = "MIT"
|
15
15
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0")
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: record_collection
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Benjamin ter Kuile
|
@@ -290,8 +290,7 @@ dependencies:
|
|
290
290
|
- - ">="
|
291
291
|
- !ruby/object:Gem::Version
|
292
292
|
version: '3.1'
|
293
|
-
description: This gem
|
294
|
-
gem helps you to create forms and controllers that act on collections of models
|
293
|
+
description: This gem helps you to work on subsets or rails models
|
295
294
|
email:
|
296
295
|
- bterkuile@gmail.com
|
297
296
|
executables: []
|
@@ -388,7 +387,7 @@ files:
|
|
388
387
|
- spec/record_selection/base_spec.rb
|
389
388
|
- spec/spec_helper.rb
|
390
389
|
- spec/validations_spec.rb
|
391
|
-
homepage:
|
390
|
+
homepage: https://github.com/bterkuile/record_collection
|
392
391
|
licenses:
|
393
392
|
- MIT
|
394
393
|
metadata: {}
|