barely 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: bd3db6e09e30ccf57a8f2e57c6a75db089ba00cd
4
+ data.tar.gz: 6095377538f4867bc164435f58a577985da8d3b1
5
+ SHA512:
6
+ metadata.gz: 399660ca3ffc24cfc4faaa4a16e741ee1bb2a20d2913e0995e49a7bcd0ce5800f1de56a45c2e38a66dad8c3be64e1bebf2c6a59df77c2d880e9e300c84b9bc75
7
+ data.tar.gz: d8110349e7688c9c03235f52d1f3b1fb0dc0a8d44b1cd0494381677ce758e204823e7a413ee8825d0720d1eb511948435ac802ed6a5ad4f79bce253c6f711a12
data/.gitignore ADDED
@@ -0,0 +1,22 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.bundle
19
+ *.so
20
+ *.o
21
+ *.a
22
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in barely.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Matt Gillooly
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/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # Barely
2
+
3
+ A way to use Arel, but only bARELy.
4
+ Get it?
5
+
6
+ Great for generating SQL without talking to a database.
7
+
8
+ ## Installation
9
+
10
+ Add this line to your application's Gemfile:
11
+
12
+ gem 'barely'
13
+
14
+ And then execute:
15
+
16
+ $ bundle
17
+
18
+ Or install it yourself as:
19
+
20
+ $ gem install barely
21
+
22
+ ## Usage
23
+
24
+ TODO: Write usage instructions here
25
+
26
+ ## Contributing
27
+
28
+ 1. Fork it ( https://github.com/[my-github-username]/barely/fork )
29
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
30
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
31
+ 4. Push to the branch (`git push origin my-new-feature`)
32
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
data/barely.gemspec ADDED
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'barely/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "barely"
8
+ spec.version = Barely::VERSION
9
+ spec.authors = ["Matt Gillooly"]
10
+ spec.email = ["matt@swipely.com"]
11
+ spec.summary = %q{Generate SQL without talking to a database.}
12
+ spec.description = %q{A way to use Arel, but only bARELy. Get it?}
13
+ spec.homepage = "http://github.com/swipely/barely"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.6"
22
+ spec.add_development_dependency "rake"
23
+ end
data/lib/barely.rb ADDED
@@ -0,0 +1,140 @@
1
+ require "barely/version"
2
+
3
+ # Copied from https://raw.githubusercontent.com/rails/arel/f50de54a6f0c59ab75526cfdb7896830130ffdf7/test/support/fake_record.rb
4
+ # Re-namespaced to avoid collision with other versions of Arel.
5
+
6
+ module Barely
7
+ class Column < Struct.new(:name, :type)
8
+ end
9
+
10
+ class Connection
11
+ attr_reader :tables
12
+ attr_accessor :visitor
13
+
14
+ def initialize(visitor = nil)
15
+ @tables = %w{ users photos developers products}
16
+ @columns = {
17
+ 'users' => [
18
+ Column.new('id', :integer),
19
+ Column.new('name', :string),
20
+ Column.new('bool', :boolean),
21
+ Column.new('created_at', :date)
22
+ ],
23
+ 'products' => [
24
+ Column.new('id', :integer),
25
+ Column.new('price', :decimal)
26
+ ]
27
+ }
28
+ @columns_hash = {
29
+ 'users' => Hash[@columns['users'].map { |x| [x.name, x] }],
30
+ 'products' => Hash[@columns['products'].map { |x| [x.name, x] }]
31
+ }
32
+ @primary_keys = {
33
+ 'users' => 'id',
34
+ 'products' => 'id'
35
+ }
36
+ @visitor = visitor
37
+ end
38
+
39
+ def columns_hash table_name
40
+ @columns_hash[table_name]
41
+ end
42
+
43
+ def primary_key name
44
+ @primary_keys[name.to_s]
45
+ end
46
+
47
+ def table_exists? name
48
+ @tables.include? name.to_s
49
+ end
50
+
51
+ def columns name, message = nil
52
+ @columns[name.to_s]
53
+ end
54
+
55
+ def quote_table_name name
56
+ "\"#{name.to_s}\""
57
+ end
58
+
59
+ def quote_column_name name
60
+ "\"#{name.to_s}\""
61
+ end
62
+
63
+ def schema_cache
64
+ self
65
+ end
66
+
67
+ def quote thing, column = nil
68
+ if column && !thing.nil?
69
+ case column.type
70
+ when :integer
71
+ thing = thing.to_i
72
+ when :string
73
+ thing = thing.to_s
74
+ end
75
+ end
76
+
77
+ case thing
78
+ when DateTime
79
+ "'#{thing.strftime("%Y-%m-%d %H:%M:%S")}'"
80
+ when Date
81
+ "'#{thing.strftime("%Y-%m-%d")}'"
82
+ when true
83
+ "'t'"
84
+ when false
85
+ "'f'"
86
+ when nil
87
+ 'NULL'
88
+ when Numeric
89
+ thing
90
+ else
91
+ "'#{thing.to_s.gsub("'", "\\\\'")}'"
92
+ end
93
+ end
94
+ end
95
+
96
+ class ConnectionPool
97
+ class Spec < Struct.new(:config)
98
+ end
99
+
100
+ attr_reader :spec, :connection
101
+
102
+ def initialize
103
+ @spec = Spec.new(:adapter => 'america')
104
+ @connection = Connection.new
105
+ @connection.visitor = Arel::Visitors::ToSql.new(connection)
106
+ end
107
+
108
+ def with_connection
109
+ yield connection
110
+ end
111
+
112
+ def table_exists? name
113
+ connection.tables.include? name.to_s
114
+ end
115
+
116
+ def columns_hash
117
+ connection.columns_hash
118
+ end
119
+
120
+ def schema_cache
121
+ connection
122
+ end
123
+
124
+ def quote thing, column = nil
125
+ connection.quote thing, column
126
+ end
127
+ end
128
+
129
+ class Base
130
+ attr_accessor :connection_pool
131
+
132
+ def initialize
133
+ @connection_pool = ConnectionPool.new
134
+ end
135
+
136
+ def connection
137
+ connection_pool.connection
138
+ end
139
+ end
140
+ end
@@ -0,0 +1,3 @@
1
+ module Barely
2
+ VERSION = "0.0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,80 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: barely
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Matt Gillooly
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-07-04 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
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
+ description: A way to use Arel, but only bARELy. Get it?
42
+ email:
43
+ - matt@swipely.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - Gemfile
50
+ - LICENSE.txt
51
+ - README.md
52
+ - Rakefile
53
+ - barely.gemspec
54
+ - lib/barely.rb
55
+ - lib/barely/version.rb
56
+ homepage: http://github.com/swipely/barely
57
+ licenses:
58
+ - MIT
59
+ metadata: {}
60
+ post_install_message:
61
+ rdoc_options: []
62
+ require_paths:
63
+ - lib
64
+ required_ruby_version: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ required_rubygems_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">="
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
74
+ requirements: []
75
+ rubyforge_project:
76
+ rubygems_version: 2.2.0
77
+ signing_key:
78
+ specification_version: 4
79
+ summary: Generate SQL without talking to a database.
80
+ test_files: []