activerecord-tableless 1.3.0 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +26 -0
- data/activerecord-tableless.gemspec +6 -4
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 281376560fb20257d6c79cf7bf5001e0369d32b6
|
4
|
+
data.tar.gz: 52351a356bc0c92bc2a5619e9feb9fa5ee521e73
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cefe22416b18681a4d7be01415ec36055c3926b05eef7f91a216e2e2fb3f91509c7739920c2d4e1d57b4cc4ab1a6e8bd1e7902515d5ea562f8a32f10fb041d92
|
7
|
+
data.tar.gz: 56a67279d02cc0486d11d64e96e7eb471f956f05be07f3985213ee98cbf0af4d4873a048f323761d341431163c6747e61d1216101ec81754c6540b475333bf73
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
|
2
|
+
LICENSE
|
3
|
+
|
4
|
+
The MIT License
|
5
|
+
|
6
|
+
Copyright (c) 2008 Jarl Friis.
|
7
|
+
|
8
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
9
|
+
of this software and associated documentation files (the "Software"), to deal
|
10
|
+
in the Software without restriction, including without limitation the rights
|
11
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
12
|
+
copies of the Software, and to permit persons to whom the Software is
|
13
|
+
furnished to do so, subject to the following conditions:
|
14
|
+
|
15
|
+
The above copyright notice and this permission notice shall be included in
|
16
|
+
all copies or substantial portions of the Software.
|
17
|
+
|
18
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
19
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
20
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
21
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
22
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
23
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
24
|
+
THE SOFTWARE.
|
25
|
+
|
26
|
+
|
@@ -1,20 +1,22 @@
|
|
1
1
|
# -*- ruby -*-
|
2
2
|
|
3
3
|
Gem::Specification.new do |gem|
|
4
|
+
gem.name = 'activerecord-tableless'
|
5
|
+
gem.version = "1.3.1"
|
6
|
+
gem.platform = Gem::Platform::RUBY
|
4
7
|
gem.authors = ["Jarl Friis", "Kenneth Kalmer", "Michal Zima"]
|
5
8
|
gem.email = ["jarl@softace.dk"]
|
6
|
-
gem.
|
9
|
+
gem.homepage = "https://github.com/softace/activerecord-tableless"
|
7
10
|
gem.summary = %q{A library for implementing tableless ActiveRecord models}
|
8
11
|
gem.description = %q{ActiveRecord Tableless Models provides a simple mixin for creating models that are not bound to the database. This approach is mostly useful for capitalizing on the features ActiveRecord::Validation}
|
9
|
-
gem.
|
12
|
+
gem.license = 'MIT'
|
13
|
+
|
10
14
|
gem.files = `git ls-files`.split($\)
|
11
15
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
12
16
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
13
|
-
gem.version = "1.3.0"
|
14
17
|
gem.has_rdoc = true
|
15
18
|
|
16
19
|
gem.require_paths = ["lib"]
|
17
|
-
gem.platform = Gem::Platform::RUBY
|
18
20
|
|
19
21
|
gem.add_dependency("activerecord", ">= 2.3.0")
|
20
22
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activerecord-tableless
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jarl Friis
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2013-09-
|
13
|
+
date: 2013-09-30 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: activerecord
|
@@ -180,6 +180,7 @@ files:
|
|
180
180
|
- .travis.yml
|
181
181
|
- Appraisals
|
182
182
|
- Gemfile
|
183
|
+
- LICENSE.txt
|
183
184
|
- README.md
|
184
185
|
- Rakefile
|
185
186
|
- activerecord-tableless.gemspec
|
@@ -200,7 +201,8 @@ files:
|
|
200
201
|
- lib/activerecord-tableless.rb
|
201
202
|
- spec/lib/activerecord-tableless_spec.rb
|
202
203
|
homepage: https://github.com/softace/activerecord-tableless
|
203
|
-
licenses:
|
204
|
+
licenses:
|
205
|
+
- MIT
|
204
206
|
metadata: {}
|
205
207
|
post_install_message:
|
206
208
|
rdoc_options: []
|