sqlite3_json_rails4 1.0.0 → 1.0.1

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
2
  SHA256:
3
- metadata.gz: de821db093ce30aa49161978c97431ae6a30a0f19f0ed29fee967f5c2b35c701
4
- data.tar.gz: c0d7b232076173088f6a586b7c9bd3ca8fb3e3f10f5e446d86620d26ed3570bf
3
+ metadata.gz: 1077812a4194bdbb92928440420c303e9c28267695b526db6646c3114f2d4645
4
+ data.tar.gz: 7b3d4c11ae4ae6e76dda168a82f426cf89ae47c1e9fbd21d4049175c738cbe03
5
5
  SHA512:
6
- metadata.gz: dc48a52868e784d839144deee54548811c0f08f2b5710920069389e8166cad195af6646f5f751c114497cfdf704268d56a04421ffedbced10c005cac928d3017
7
- data.tar.gz: 5f3642c90f4a10854953dd5baa6b6be660c727e4d5447decf8789195f5f1948d5029d166da882ed9e689c448a026d0f17eaae7680840eab41b0d6338b39b014d
6
+ metadata.gz: 7ca18fba46034aa7bc892e58fd04fcf5568c0d29a758129fdba83bf876277cfff3150a87eddc9a6b4a53583904a29be7f062f58df733ae3cb08b35ee16138462
7
+ data.tar.gz: 1b9c37df3cc5c3bd50786b1297c5fac077eaaa453b9c3b0a8da323bba43916c6fb5168bbf53fbe9dfa5dc8de3adc7be809571423dc542231e690f97546076909
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
- # Sqlite3JsonRails4
1
+ # Get JSON columns in SQLite on Rails 4
2
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/sqlite3_json_rails4`. 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
3
+ The SQLite3 adapter in Rails doesn't include JSON support until Rails 5. If
4
+ you're one of the poor saps wanting to use JSON columns but needing to
5
+ support Rails 4 in your gems or apps, this gem is for you.
6
6
 
7
7
  ## Installation
8
8
 
@@ -22,14 +22,19 @@ Or install it yourself as:
22
22
 
23
23
  ## Usage
24
24
 
25
- TODO: Write usage instructions here
25
+ This gem integrates with the Rails loading process by way of a railtie. All you
26
+ need to do is make sure it's `require`d, whether that's by adding it to your
27
+ Gemfile, or having `require 'sqlite3_json_rails4'` somewhere else.
26
28
 
27
29
  ## Development
28
30
 
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
31
+ To obtain this gem's dependencies, run `bundle install`.
32
+
33
+ To run static tests, run `bundle exec rake static`.
30
34
 
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).
35
+ To run Ruby tests, run `bundle exec rake test`.
32
36
 
33
37
  ## Contributing
34
38
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/sqlite3_json_rails4.
39
+ Bug reports and pull requests are welcome on GitHub at
40
+ https://github.com/miriamtech/sqlite3_json_rails4.
@@ -1,3 +1,3 @@
1
1
  module Sqlite3JsonRails4
2
- VERSION = '1.0.0'.freeze
2
+ VERSION = '1.0.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sqlite3_json_rails4
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miriam Technologies