db-query-helper 0.0.3 → 0.0.7
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/db-query-helper.gemspec +19 -0
- data/lib/{DbQueryHelper.rb → db_query_helper.rb} +0 -0
- metadata +4 -3
@@ -0,0 +1,19 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
Gem::Specification.new do |gem|
|
3
|
+
gem.name = "db-query-helper"
|
4
|
+
gem.version = "0.0.7"
|
5
|
+
gem.authors = ["Zeque U"]
|
6
|
+
gem.email = ["ezequiel.uhrig@gmail.com"]
|
7
|
+
gem.description = %q{db_connector the easy way}
|
8
|
+
gem.summary = %q{config the db that you need, and then pass a string get_results, to get the query results}
|
9
|
+
gem.homepage = ""
|
10
|
+
gem.files = Dir["Gemfile"] +
|
11
|
+
Dir['spec/**/*.rb'] +
|
12
|
+
Dir["db-query-helper.gemspec"] +
|
13
|
+
Dir['lib/**/*.rb']
|
14
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
15
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
16
|
+
gem.require_paths = ["lib"]
|
17
|
+
gem.add_dependency('tiny_tds')
|
18
|
+
end
|
19
|
+
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: db-query-helper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.7
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-02-
|
12
|
+
date: 2013-02-27 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: tiny_tds
|
@@ -35,9 +35,10 @@ extensions: []
|
|
35
35
|
extra_rdoc_files: []
|
36
36
|
files:
|
37
37
|
- Gemfile
|
38
|
+
- db-query-helper.gemspec
|
38
39
|
- lib/modules/connect_module.rb
|
39
40
|
- lib/db-query-helper/version.rb
|
40
|
-
- lib/
|
41
|
+
- lib/db_query_helper.rb
|
41
42
|
- lib/classes/connector.rb
|
42
43
|
homepage: ''
|
43
44
|
licenses: []
|