scenic-mysql_adapter 1.0.1 → 1.0.2

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: d6f0744e97155966fa7ce57be4b5a54af87f87df
4
- data.tar.gz: c4e85b7b3f4ddd1515c0c18dc41137fc477ad4a8
2
+ SHA256:
3
+ metadata.gz: 7a4efa149855b321c15778c6a625a329d04e325ea7b4ddf6bbc9fd7e6dac14a9
4
+ data.tar.gz: ea69e6ac7d47586f0ae375e7a74697466bbff543b4abf9364e04214129f59412
5
5
  SHA512:
6
- metadata.gz: e6ca4956ad189e565a7abeea03fa71092aa4010b9147cc3c9315e51d7d150d1b57897992b186ddcb331594d2a49c0d7e9778fe2fa6cac6d68b00e8a0d1634f3a
7
- data.tar.gz: 18ee7349eeaa535d474a57d47eba3ed0e429ce177e858a75767d233d30f7e1a17de6c92db4805dd18a951b0eff55ea5aaa77a9553a75f8dcd07545e28f04bd19
6
+ metadata.gz: 7560eef15acecfc1d3f4e18813a8ce72bae8101bebf18d5c8e4c79c2d61c103e7866f86fdc0c8af97104c43f1dc922b3be6c74abd471dd95a26cfb1077609f46
7
+ data.tar.gz: 2cb7348d28dd39e6c7d274c3bd5b762a550b593ad7def057429a4613c126bd88f9a88603951b9fbee303e5da29029fd6ab936cff30918cd58302c683f8aa5eb5
@@ -0,0 +1,40 @@
1
+ name: Ruby
2
+
3
+ on: [push]
4
+
5
+ jobs:
6
+ test:
7
+ name: CI-tests
8
+ runs-on: ubuntu-latest
9
+ strategy:
10
+ fail-fast: false
11
+ matrix:
12
+ ruby:
13
+ - '3.2'
14
+ - '3.1'
15
+ - '3.0'
16
+ - '2.7'
17
+ - '2.6'
18
+ - '2.5'
19
+ - '2.4'
20
+
21
+ steps:
22
+ - uses: actions/checkout@v3
23
+
24
+ - name: Setup Ruby
25
+ uses: ruby/setup-ruby@v1
26
+ with:
27
+ ruby-version: ${{ matrix.ruby }}
28
+ bundler-cache: true
29
+
30
+ - name: Start and create DB
31
+ run: |
32
+ sudo service mysql start
33
+ sleep 10
34
+ mysql -u root -proot -e "CREATE DATABASE scenic_mysql_adapter_test;"
35
+
36
+ - name: Run tests
37
+ env:
38
+ DATABASE_URL: mysql2://root:root@127.0.0.1/scenic_mysql_adapter_test
39
+ run: |
40
+ bundle exec rake test
data/Appraisals CHANGED
@@ -1,5 +1,4 @@
1
1
  appraise "rails-42" do
2
- gem "mysql2", "0.4.4"
3
2
  gem "activerecord", "~> 4.2", "< 5.0"
4
3
  gem "activemodel", "~> 4.2", "< 5.0"
5
4
  gem "actionpack", "~> 4.2", "< 5.0"
@@ -14,7 +13,6 @@ appraise "rails-50" do
14
13
  end
15
14
 
16
15
  appraise "rails-51" do
17
- gem "mysql2", "0.4.4"
18
16
  gem "activerecord", "~> 5.1", "< 5.2"
19
17
  gem "activemodel", "~> 5.1", "< 5.2"
20
18
  gem "actionpack", "~> 5.1", "< 5.2"
data/LICENSE.md ADDED
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2019
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
4
+ this software and associated documentation files (the "Software"), to deal in
5
+ the Software without restriction, including without limitation the rights to
6
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7
+ of the Software, and to permit persons to whom the Software is furnished to do
8
+ so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  MySQL adapter for [scenic](https://github.com/thoughtbot/scenic).
4
4
 
5
- [![Gem](https://img.shields.io/gem/v/scenic-mysql_adapter.svg)](https://rubygems.org/gems/scenic-mysql_adapter)[![master branch](https://img.shields.io/circleci/project/github/EmpaticoOrg/scenic-mysql_adapter.svg)](https://circleci.com/gh/EmpaticoOrg/scenic-mysql_adapter/tree/master)
5
+ [![Gem](https://img.shields.io/gem/v/scenic-mysql_adapter.svg)](https://rubygems.org/gems/scenic-mysql_adapter)[![master branch](https://github.com/EmpaticoOrg/scenic-mysql_adapter/actions/workflows/CI.yml/badge.svg)](https://github.com/EmpaticoOrg/scenic-mysql_adapter/actions/workflows/CI.yml)
6
6
 
7
7
  ## Installation
8
8
 
@@ -21,6 +21,8 @@ Then create the following file:
21
21
  ```ruby
22
22
  # config/initializers/scenic.rb
23
23
 
24
+ require 'scenic/mysql_adapter'
25
+
24
26
  Scenic.configure do |config|
25
27
  config.database = Scenic::Adapters::MySQL.new
26
28
  end
@@ -1,5 +1,5 @@
1
1
  module Scenic
2
2
  module MysqlAdapter
3
- VERSION = "1.0.1"
3
+ VERSION = "1.0.2"
4
4
  end
5
5
  end
@@ -11,6 +11,7 @@ Gem::Specification.new do |spec|
11
11
 
12
12
  spec.summary = %q{MySQL adapter for thoughtbot/scenic}
13
13
  spec.homepage = "https://github.com/EmpaticoOrg/scenic-mysql_adapter"
14
+ spec.license = "MIT"
14
15
 
15
16
  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
16
17
  # to allow pushing to a single host or delete this section to allow pushing to any host.
@@ -31,8 +32,8 @@ Gem::Specification.new do |spec|
31
32
  spec.add_dependency "scenic", ">= 1.4.0"
32
33
  spec.add_dependency "mysql2"
33
34
 
34
- spec.add_development_dependency "bundler", "~> 1.15"
35
- spec.add_development_dependency "rake", "~> 10.0"
35
+ spec.add_development_dependency "bundler"
36
+ spec.add_development_dependency "rake"
36
37
  spec.add_development_dependency "minitest", "~> 5.0"
37
38
  spec.add_development_dependency "appraisal"
38
39
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scenic-mysql_adapter
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lance Ivy
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-05-21 00:00:00.000000000 Z
11
+ date: 2024-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: scenic
@@ -42,30 +42,30 @@ dependencies:
42
42
  name: bundler
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
- version: '1.15'
47
+ version: '0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - "~>"
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
- version: '1.15'
54
+ version: '0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rake
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - "~>"
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
- version: '10.0'
61
+ version: '0'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - "~>"
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
- version: '10.0'
68
+ version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: minitest
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -94,18 +94,19 @@ dependencies:
94
94
  - - ">="
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
- description:
97
+ description:
98
98
  email:
99
99
  - lance@cainlevy.net
100
100
  executables: []
101
101
  extensions: []
102
102
  extra_rdoc_files: []
103
103
  files:
104
- - ".circleci/config.yml"
104
+ - ".github/workflows/CI.yml"
105
105
  - ".gitignore"
106
106
  - Appraisals
107
107
  - CODE_OF_CONDUCT.md
108
108
  - Gemfile
109
+ - LICENSE.md
109
110
  - README.md
110
111
  - Rakefile
111
112
  - bin/console
@@ -123,10 +124,11 @@ files:
123
124
  - lib/scenic/mysql_adapter/views.rb
124
125
  - scenic-mysql_adapter.gemspec
125
126
  homepage: https://github.com/EmpaticoOrg/scenic-mysql_adapter
126
- licenses: []
127
+ licenses:
128
+ - MIT
127
129
  metadata:
128
130
  allowed_push_host: https://rubygems.org
129
- post_install_message:
131
+ post_install_message:
130
132
  rdoc_options: []
131
133
  require_paths:
132
134
  - lib
@@ -141,9 +143,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
141
143
  - !ruby/object:Gem::Version
142
144
  version: '0'
143
145
  requirements: []
144
- rubyforge_project:
145
- rubygems_version: 2.6.13
146
- signing_key:
146
+ rubygems_version: 3.1.6
147
+ signing_key:
147
148
  specification_version: 4
148
149
  summary: MySQL adapter for thoughtbot/scenic
149
150
  test_files: []
data/.circleci/config.yml DELETED
@@ -1,16 +0,0 @@
1
- version: 2
2
-
3
- jobs:
4
- build:
5
- working_directory: ~/mysql_point
6
- docker:
7
- - image: circleci/ruby:2.3
8
- environment:
9
- DATABASE_URL: mysql2://root@127.0.0.1/circle_test
10
- - image: circleci/mysql:5.7
11
-
12
- steps:
13
- - checkout
14
- - run: bin/setup
15
- - run: appraisal install
16
- - run: appraisal rake test