pg_sql_caller 0.2.3 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/sql_caller.gemspec DELETED
@@ -1,32 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative 'lib/pg_sql_caller/version'
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = 'pg_sql_caller'
7
- spec.version = PgSqlCaller::VERSION
8
- spec.authors = ['Denis Talakevich']
9
- spec.email = ['senid231@gmail.com']
10
-
11
- spec.summary = 'Postgresql Sql Caller for ActiveRecord'
12
- spec.description = 'Postgresql Sql Caller for ActiveRecord.'
13
- spec.homepage = 'https://github.com/didww/pg_sql_caller'
14
- spec.license = 'MIT'
15
- spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
16
-
17
- spec.metadata['homepage_uri'] = spec.homepage
18
- spec.metadata['source_code_uri'] = spec.homepage
19
- spec.metadata['changelog_uri'] = spec.homepage
20
-
21
- # Specify which files should be added to the gem when it is released.
22
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
- spec.files = Dir.chdir(File.expand_path(__dir__)) do
24
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
- end
26
- spec.bindir = 'exe'
27
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
- spec.require_paths = ['lib']
29
-
30
- spec.add_dependency 'activerecord'
31
- spec.add_dependency 'activesupport'
32
- end