temporary_tables 1.0.0.pre.rc.1 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +113 -13
- data/lib/temporary_tables/methods.rb +5 -4
- data/lib/temporary_tables/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 60cc79342ebd67894cc80a005b141a3c95b9f8f485fb178c470f66310be84ba5
|
4
|
+
data.tar.gz: bec1daa4991d7705cf2720a73772de07203d8b48a35c6971d04d15fe14e5ed7f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a9cab89b579283431b08e14964d507cc2e918e5f2c166a13423267abb202f877db0ad4bbe41772966284977a10bc4f6d682b56c113b6649dee37e0e20e2be1c1
|
7
|
+
data.tar.gz: 13a1c4f1c81f662ffecb33f766ab7138d3b2040451a6cfcf242e9fd9bc2fd2db75203d20bdc8c3fce9ac80d7386854b661cbf075a8e7725d61d3705a707e3679
|
data/README.md
CHANGED
@@ -1,31 +1,131 @@
|
|
1
|
-
#
|
1
|
+
# temporary_tables
|
2
2
|
|
3
|
-
|
3
|
+
[![CI](https://github.com/keygen-sh/temporary_tables/actions/workflows/test.yml/badge.svg)](https://github.com/keygen-sh/temporary_tables/actions)
|
4
|
+
[![Gem Version](https://badge.fury.io/rb/temporary_tables.svg)](https://badge.fury.io/rb/temporary_tables)
|
4
5
|
|
5
|
-
|
6
|
+
Use `temporary_tables` to create temporary tables and models in RSpec specs,
|
7
|
+
rather than create and maintain a dummy Rails application or messy block-level
|
8
|
+
constants.
|
9
|
+
|
10
|
+
This gem was extracted from [Keygen](https://keygen.sh).
|
11
|
+
|
12
|
+
Sponsored by:
|
13
|
+
|
14
|
+
<a href="https://keygen.sh?ref=temporary_tables">
|
15
|
+
<div>
|
16
|
+
<img src="https://keygen.sh/images/logo-pill.png" width="200" alt="Keygen">
|
17
|
+
</div>
|
18
|
+
</a>
|
19
|
+
|
20
|
+
_A fair source software licensing and distribution API._
|
6
21
|
|
7
22
|
## Installation
|
8
23
|
|
9
|
-
|
24
|
+
Add this line to your application's `Gemfile`:
|
25
|
+
|
26
|
+
```ruby
|
27
|
+
gem 'temporary_tables'
|
28
|
+
```
|
10
29
|
|
11
|
-
|
30
|
+
And then execute:
|
12
31
|
|
13
|
-
|
32
|
+
```bash
|
33
|
+
$ bundle
|
34
|
+
```
|
14
35
|
|
15
|
-
|
36
|
+
Or install it yourself as:
|
16
37
|
|
17
|
-
|
38
|
+
```bash
|
39
|
+
$ gem install temporary_tables
|
40
|
+
```
|
18
41
|
|
19
42
|
## Usage
|
20
43
|
|
21
|
-
|
44
|
+
### `temporary_table`
|
45
|
+
|
46
|
+
To define a temporary table:
|
47
|
+
|
48
|
+
```ruby
|
49
|
+
describe Example do
|
50
|
+
temporary_table :user do |t|
|
51
|
+
t.string :email
|
52
|
+
t.string :first_name
|
53
|
+
t.string :last_name
|
54
|
+
t.index :email, unique: true
|
55
|
+
end
|
56
|
+
|
57
|
+
it 'should define a table' do
|
58
|
+
expect(ActiveRecord::Base.connection.table_exists?(:user)).to be true
|
59
|
+
end
|
60
|
+
end
|
61
|
+
```
|
62
|
+
|
63
|
+
The full Active Record schema API is available.
|
64
|
+
|
65
|
+
### `temporary_model`
|
66
|
+
|
67
|
+
To define an Active Record:
|
68
|
+
|
69
|
+
```ruby
|
70
|
+
describe Example do
|
71
|
+
temporary_model :user do
|
72
|
+
has_many :posts
|
73
|
+
end
|
22
74
|
|
23
|
-
|
75
|
+
it 'should define a record' do
|
76
|
+
expect(const_defined?(:User)).to be true
|
77
|
+
end
|
78
|
+
end
|
79
|
+
```
|
24
80
|
|
25
|
-
|
81
|
+
To define an Active Model:
|
26
82
|
|
27
|
-
|
83
|
+
```ruby
|
84
|
+
describe Example do
|
85
|
+
temporary_model :guest_user, table_name: nil, base_class: nil do
|
86
|
+
include ActiveModel::Model
|
87
|
+
end
|
88
|
+
|
89
|
+
it 'should define a model' do
|
90
|
+
expect(const_defined?(:GuestUser)).to be true
|
91
|
+
end
|
92
|
+
end
|
93
|
+
```
|
94
|
+
|
95
|
+
To define a PORO:
|
96
|
+
|
97
|
+
```ruby
|
98
|
+
describe Example do
|
99
|
+
temporary_model :null_user, table_name: nil, base_class: nil do
|
100
|
+
# ...
|
101
|
+
end
|
102
|
+
|
103
|
+
it 'should define a PORO' do
|
104
|
+
expect(const_defined?(:NullUser)).to be true
|
105
|
+
end
|
106
|
+
end
|
107
|
+
```
|
108
|
+
|
109
|
+
## Future
|
110
|
+
|
111
|
+
Right now, the gem only supports RSpec, but we're open to pull requests that
|
112
|
+
extend the functionality to other testing frameworks.
|
113
|
+
|
114
|
+
## Supported Rubies
|
115
|
+
|
116
|
+
**`temporary_tables` supports Ruby 3.1 and above.** We encourage you to upgrade
|
117
|
+
if you're on an older version. Ruby 3 provides a lot of great features, like
|
118
|
+
better pattern matching and a new shorthand hash syntax.
|
119
|
+
|
120
|
+
## Is it any good?
|
121
|
+
|
122
|
+
Yes.
|
28
123
|
|
29
124
|
## Contributing
|
30
125
|
|
31
|
-
|
126
|
+
If you have an idea, or have discovered a bug, please open an issue or create a
|
127
|
+
pull request.
|
128
|
+
|
129
|
+
## License
|
130
|
+
|
131
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
@@ -25,10 +25,11 @@ module TemporaryTables
|
|
25
25
|
class_name = name.to_s.classify
|
26
26
|
|
27
27
|
before do |example|
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
28
|
+
base_class = base_class.to_s.constantize if base_class in String | Symbol
|
29
|
+
klass = Class.new *base_class do
|
30
|
+
define_singleton_method(:table_name) { table_name.to_s } unless table_name.nil?
|
31
|
+
define_singleton_method(:name) { class_name }
|
32
|
+
end
|
32
33
|
|
33
34
|
unless extension.nil?
|
34
35
|
# pass in an example context so that vars can be accessed
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: temporary_tables
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Zeke Gabrielse
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-08-
|
11
|
+
date: 2024-08-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -68,9 +68,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
68
|
version: '3.1'
|
69
69
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
70
70
|
requirements:
|
71
|
-
- - "
|
71
|
+
- - ">="
|
72
72
|
- !ruby/object:Gem::Version
|
73
|
-
version:
|
73
|
+
version: '0'
|
74
74
|
requirements: []
|
75
75
|
rubygems_version: 3.4.13
|
76
76
|
signing_key:
|