-
Notifications
You must be signed in to change notification settings - Fork 1
/
quantum_fields.gemspec
25 lines (20 loc) · 1.08 KB
/
quantum_fields.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
$:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "quantum_fields/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "quantum_fields"
spec.version = QuantumFields::VERSION
spec.authors = ["Fernando Bellincanta"]
spec.email = ["[email protected]"]
spec.homepage = "https://github.com/ErvalhouS/quantum_fields"
spec.summary = "Give noSQL powers to your SQL database"
spec.description = "QuantumFields is a gem to extend your Rails model's making them able to use virtual fields from a JSON column or a Text column serialized as a Hash. This means that you can use fields that were not explicitly declared in your schema as if they were."
spec.license = "MIT"
spec.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
spec.add_dependency "rails", "> 5"
spec.add_development_dependency "rspec"
spec.add_development_dependency "sqlite3", "~> 1.3.6"
spec.add_development_dependency "pg"
spec.add_development_dependency "mysql2"
end