i_dig_sql 0.1.0 → 0.1.1
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.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/i_dig_sql.gemspec +2 -4
- metadata +4 -21
- data/LICENSE.txt +0 -22
- data/lib/i_dig_sql/version.rb +0 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3ae4c695ed603413f388c21a16a29f566900b39b
|
|
4
|
+
data.tar.gz: 25cb2010433d132f33a3139a33d0e37469dd121a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7461f1a40db3b2ade971005bf6295efa1957c5c955aced4574d0854cf36fdbb56da6456c0bbfa658b61ded80c15ef57c3d665642590cd0dd1273d71eb18095b5
|
|
7
|
+
data.tar.gz: ba10c377579ed13fd6d9e4a525f8b324f824b23e5e6120e4a166afa9ef5943833e6e096f088e896d9ae6401b9b68c69e8c650b00a19bb9b552571418981dfe49
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/i_dig_sql.gemspec
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
-
require 'i_dig_sql/version'
|
|
5
4
|
|
|
6
5
|
Gem::Specification.new do |spec|
|
|
7
6
|
spec.name = "i_dig_sql"
|
|
8
|
-
spec.version =
|
|
7
|
+
spec.version = `cat VERSION`.strip
|
|
9
8
|
spec.authors = ["da99"]
|
|
10
9
|
spec.email = ["i-hate-spam-1234567@mailinator.com"]
|
|
11
10
|
spec.summary = %q{Yet another way of generating Postgresql 9.2+ in Ruby.}
|
|
@@ -18,12 +17,11 @@ Gem::Specification.new do |spec|
|
|
|
18
17
|
spec.license = "MIT"
|
|
19
18
|
|
|
20
19
|
spec.files = `git ls-files -z`.split("\x0")
|
|
21
|
-
spec.executables = spec.files.grep(
|
|
20
|
+
spec.executables = spec.files.grep("bin/#{spec.name}")
|
|
22
21
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
23
22
|
spec.require_paths = ["lib"]
|
|
24
23
|
|
|
25
24
|
spec.add_development_dependency "bundler" , "~> 1.5"
|
|
26
|
-
spec.add_development_dependency "rake" , '~> 0'
|
|
27
25
|
spec.add_development_dependency "bacon" , '~> 1.0'
|
|
28
26
|
spec.add_development_dependency "Bacon_Colored" , '~> 0'
|
|
29
27
|
spec.add_development_dependency "pry" , '~> 0'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: i_dig_sql
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- da99
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-03-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -24,20 +24,6 @@ dependencies:
|
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '1.5'
|
|
27
|
-
- !ruby/object:Gem::Dependency
|
|
28
|
-
name: rake
|
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
|
30
|
-
requirements:
|
|
31
|
-
- - "~>"
|
|
32
|
-
- !ruby/object:Gem::Version
|
|
33
|
-
version: '0'
|
|
34
|
-
type: :development
|
|
35
|
-
prerelease: false
|
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
-
requirements:
|
|
38
|
-
- - "~>"
|
|
39
|
-
- !ruby/object:Gem::Version
|
|
40
|
-
version: '0'
|
|
41
27
|
- !ruby/object:Gem::Dependency
|
|
42
28
|
name: bacon
|
|
43
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -85,15 +71,13 @@ description: "\n You probably want another gem: arel. Use that\n to generate S
|
|
|
85
71
|
\ "
|
|
86
72
|
email:
|
|
87
73
|
- i-hate-spam-1234567@mailinator.com
|
|
88
|
-
executables:
|
|
89
|
-
- test
|
|
74
|
+
executables: []
|
|
90
75
|
extensions: []
|
|
91
76
|
extra_rdoc_files: []
|
|
92
77
|
files:
|
|
93
78
|
- ".gitignore"
|
|
94
79
|
- Gemfile
|
|
95
80
|
- LICENSE
|
|
96
|
-
- LICENSE.txt
|
|
97
81
|
- README.md
|
|
98
82
|
- Rakefile
|
|
99
83
|
- VERSION
|
|
@@ -101,7 +85,6 @@ files:
|
|
|
101
85
|
- i_dig_sql.gemspec
|
|
102
86
|
- lib/i_dig_sql.rb
|
|
103
87
|
- lib/i_dig_sql/String.rb
|
|
104
|
-
- lib/i_dig_sql/version.rb
|
|
105
88
|
- specs/i_dig_sql.rb
|
|
106
89
|
homepage: https://github.com/da99/i_dig_sql
|
|
107
90
|
licenses:
|
|
@@ -123,7 +106,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
123
106
|
version: '0'
|
|
124
107
|
requirements: []
|
|
125
108
|
rubyforge_project:
|
|
126
|
-
rubygems_version: 2.
|
|
109
|
+
rubygems_version: 2.4.5
|
|
127
110
|
signing_key:
|
|
128
111
|
specification_version: 4
|
|
129
112
|
summary: Yet another way of generating Postgresql 9.2+ in Ruby.
|
data/LICENSE.txt
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
Copyright (c) 2014 da99
|
|
2
|
-
|
|
3
|
-
MIT License
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
-
a copy of this software and associated documentation files (the
|
|
7
|
-
"Software"), to deal in the Software without restriction, including
|
|
8
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
-
the following conditions:
|
|
12
|
-
|
|
13
|
-
The above copyright notice and this permission notice shall be
|
|
14
|
-
included in all copies or substantial portions of the Software.
|
|
15
|
-
|
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/lib/i_dig_sql/version.rb
DELETED