activerecord_lite 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 35d97fd18970f39220a27ef8276a454814aa653e
4
- data.tar.gz: c9e5f1d7808c89117fe6664eb854c72fde57f6dc
2
+ SHA256:
3
+ metadata.gz: 2054908383b70bbc7e9377bd181c16ecb34b6023cefc176e6c536f334a561dc6
4
+ data.tar.gz: 14bb620133fd7471fc5a0855d9469395d9c2ab915ee2935023047edf85ab481d
5
5
  SHA512:
6
- metadata.gz: 673e2d14b2fe0bf082e3c2e7b01e2e1c69e7a2e8a98e8d0c4c07bf24a379516f930ad1f04385f05b568a633e14badc876399a465cf8cad6039742d94659a306e
7
- data.tar.gz: 0e3da48fab306bbdcb2f8e91e766d610cf2d0bd51b1557ec4edf9b95a4a54a50d4a84a3e039750e825d52605ce135ef2e042cb45bcc17a8bdf240f0f67db047a
6
+ metadata.gz: '01811355646ef387c03d1073861cb2e262a3affac458aa8fdd848e32e2dd347016aa7ead3139092d5048ff5b79b238a21a8c7fc30bdef0513b3c393efcb8aeba'
7
+ data.tar.gz: b87225437dcc59adf8f363deee39278e94f88c4a25f5c9e8854c8ae350858ce8dde039bbdfeea22c987011ec54711f5f09654c8ab3531236f179b542693ed411
data/README.md CHANGED
@@ -1,9 +1,3 @@
1
- # ActiverecordLite
2
-
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/activerecord_lite`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
6
-
7
1
  ## Installation
8
2
 
9
3
  Add this line to your application's Gemfile:
@@ -22,15 +16,13 @@ Or install it yourself as:
22
16
 
23
17
  ## Usage
24
18
 
25
- TODO: Write usage instructions here
26
-
27
- ## Development
19
+ (ActiveRecord Query).fetch_lite(:attribute1, :attribute2, ...)
28
20
 
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
21
+ (ActiveRecord Query).fetch_lite(attribute1: :name, attribute2: value)
30
22
 
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
23
 
33
- ## Contributing
24
+ Ex:
34
25
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/abacha/activerecord_lite.
26
+ Account.where(status: 1).fetch_lite(:name, :code)
36
27
 
28
+ Account.where(status: 1).fetch_lite(name: :account_name, code: :account_code)
@@ -2,7 +2,7 @@ module ActiveRecordLite
2
2
  module Base
3
3
  def fetch_lite(*select_sql)
4
4
  select_columns, columns = prepare(select_sql)
5
- _struct = Struct.new(*columns)
5
+ _struct = Struct.new(self.name, *columns)
6
6
  sql = select(select_columns).to_sql
7
7
  self.connection.select_all(sql).map { |result| _struct.new(*result.values) }
8
8
  end
@@ -1,3 +1,3 @@
1
1
  module ActiveRecordLite
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord_lite
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adriano Bacha
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-05-15 00:00:00.000000000 Z
11
+ date: 2019-07-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -101,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
101
101
  version: '0'
102
102
  requirements: []
103
103
  rubyforge_project:
104
- rubygems_version: 2.4.8
104
+ rubygems_version: 2.7.7
105
105
  signing_key:
106
106
  specification_version: 4
107
107
  summary: lightweight activerecord queries