active_record_seek 0.0.1 → 0.0.2
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/Gemfile.lock +1 -1
- data/README.md +5 -0
- data/active_record_seek-0.0.1.gem +0 -0
- data/bin/gem_publish.rb +12 -0
- data/lib/active_record_seek/version.rb +1 -1
- metadata +3 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 359e81e87aba1c701179cb1c309ac485aab9e63bf12d75a90c15d08046b9ea17
|
|
4
|
+
data.tar.gz: 412fe67f22690969bbc4dfb6175a2051ac6b981ba377c9ed06580cca1f418474
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb450d6e66255a064f536388c1e6a151597f863e99622263bd45b1fc4874ccb8df8a30884c4d45d9dc31e9c3817b6213cd03c1b8cc9cb556c405702ce955f820
|
|
7
|
+
data.tar.gz: 0fb48bd28e1125aa20241d49a756309c609af1eb9d9e06c51de892459c2223ff054865b9de1dde03eb555d807d2e91d68f0c72e7a8fea0ac6001a3ba1f0659bc
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -45,3 +45,8 @@ The gem is available as open source under the terms of the [MIT License](http://
|
|
|
45
45
|
## Code of Conduct
|
|
46
46
|
|
|
47
47
|
Everyone interacting in the ActiveRecord::Seek project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/active_record_seek/blob/master/CODE_OF_CONDUCT.md).
|
|
48
|
+
|
|
49
|
+
## Publish Gem
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
gem build
|
|
Binary file
|
data/bin/gem_publish.rb
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "bundler/setup"
|
|
4
|
+
require "active_record_seek"
|
|
5
|
+
|
|
6
|
+
root = File.expand_path("../..", __FILE__)
|
|
7
|
+
version = ActiveRecordSeek::VERSION
|
|
8
|
+
|
|
9
|
+
#%x{gem build #{root}/active_record_seek.gemspec}
|
|
10
|
+
#%x{gem publish #{root}/active_record_seek-#{version}.gem}
|
|
11
|
+
puts "gem build #{root}/active_record_seek.gemspec"
|
|
12
|
+
puts "gem publish #{root}/active_record_seek-#{version}.gem"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: active_record_seek
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Griffith Chaffee
|
|
@@ -97,8 +97,10 @@ files:
|
|
|
97
97
|
- LICENSE.txt
|
|
98
98
|
- README.md
|
|
99
99
|
- Rakefile
|
|
100
|
+
- active_record_seek-0.0.1.gem
|
|
100
101
|
- active_record_seek.gemspec
|
|
101
102
|
- bin/console
|
|
103
|
+
- bin/gem_publish.rb
|
|
102
104
|
- bin/setup
|
|
103
105
|
- gemfiles/mysql.gemfile
|
|
104
106
|
- gemfiles/mysql.gemfile.lock
|