-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsondb.gemspec
31 lines (31 loc) · 974 Bytes
/
jsondb.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Gem::Specification.new do |s|
s.name = 'jsondb'
s.version = '0.2.0'
s.date = '2018-09-09'
s.summary = "lib to manage tiny databases in plain JSON files"
s.description = "Local Database using JSON files"
s.authors = ["Antonio Fernandez"]
s.email = '[email protected]'
s.files = [
"lib/jsondb.rb",
"lib/jsondb/base.rb",
"lib/jsondb/commands.rb",
"lib/jsondb/constants.rb",
"lib/jsondb/db.rb",
"lib/jsondb/field.rb",
"lib/jsondb/fields.rb",
"lib/jsondb/file_ops.rb",
"lib/jsondb/logger.rb",
"lib/jsondb/record.rb",
"lib/jsondb/records.rb",
"lib/jsondb/result_set.rb",
"lib/jsondb/settings.rb",
"lib/jsondb/table.rb",
"lib/jsondb/tables.rb",
"lib/jsondb/validations.rb",
"lib/jsondb/paginated_hash.rb"
]
s.homepage = 'http://fernandezvara.github.io/jsondb/'
s.license = 'MIT'
s.add_runtime_dependency 'json_pure', '= 1.8.1'
end