application_service 0.4.0 → 0.4.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: d8f6fcf621468775e24be24281197c8e247de5ac87b2dcc57711880b368b6b00
4
- data.tar.gz: 2916bad018667a7d9cb04b6c9e94a8f712434d7b9cb3bd8ab2b27420a3f5b59a
3
+ metadata.gz: 87237dd34364ef71483ec478dde114e69e45c35210d2cd82e3369b9907db4940
4
+ data.tar.gz: 40f18312cd9606cee57a8cab09b0b72c8ceac1b056083c227e0697a630aad5ba
5
5
  SHA512:
6
- metadata.gz: 246018e2846dae816ac311825c5d5a5e8867bf010fad635d3b852508c63a6ebf419893e0d2ab3cde248e2532bffccf7801268577de040d2f474bc2b9dd86694c
7
- data.tar.gz: ce54981d596afff4f2e5d664083f7b530707640d1fba7ead3ee3c2161a0d3315562e61928fcf0c502fb39a4c57b214159acd223651684787f1203b08e0329f32
6
+ metadata.gz: '029975f7377f57cd983358f5b82afe1ce291c879914044d312467b94b047f5586b68f27f090e76a3f28b783947a5460da2f721dfedb123f7f68d5b4f77991844'
7
+ data.tar.gz: 3d44b1b5efca69c3c15a1e65c33c5b786c9e101fccce1e206f99234e3b91424f41a2fc581dbc437aeffda8a8f52886af709d2616a07aae7bf8d488cf8dbb92ed
@@ -0,0 +1,24 @@
1
+ name: CI
2
+ on: [push]
3
+
4
+ jobs:
5
+ test:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v2
9
+ - uses: ruby/setup-ruby@477b21f02be01bcb8030d50f37cfec92bfa615b6
10
+ with:
11
+ ruby-version: 2.7
12
+ bundler-cache: true
13
+ - run: bundle install
14
+ - run: bundle exec rspec
15
+ rubocop:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - uses: ruby/setup-ruby@477b21f02be01bcb8030d50f37cfec92bfa615b6
20
+ with:
21
+ ruby-version: 2.7
22
+ bundler-cache: true
23
+ - run: bundle install
24
+ - run: bundle exec rubocop
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.7.3
1
+ 3.0.3
data/Gemfile CHANGED
@@ -1,6 +1,6 @@
1
1
  source "http://rubygems.org"
2
2
 
3
- gem 'activesupport', '>= 5.0.0.1', '< 7.0'
3
+ gem 'activesupport', '>= 5.0.0.1'
4
4
 
5
5
  group :development do
6
6
  gem 'rspec', '~> 3.5'
data/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # application\_service
2
+
3
+ A service layer for rails apps.
4
+
5
+ [![CI Status](https://github.com/controlshift/application_service/actions/workflows/ci.yml/badge.svg)](https://github.com/controlshift/application_service/actions/workflows/ci.yml)
6
+
7
+ ## Contributing to application\_service
8
+
9
+ - Check out the latest code from `main` to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
10
+ - Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
11
+ - Fork the project.
12
+ - Start a feature/bugfix branch.
13
+ - Commit and push until you are happy with your contribution.
14
+ - Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
15
+ - Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
16
+
17
+ ## Copyright
18
+
19
+ Copyright (c) 2013 Nathan Woodhull. See LICENSE.txt for
20
+ further details.
21
+
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.0
1
+ 0.4.1
@@ -2,32 +2,32 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: application_service 0.4.0 ruby lib
5
+ # stub: application_service 0.4.1 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "application_service".freeze
9
- s.version = "0.4.0"
9
+ s.version = "0.4.1"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib".freeze]
13
13
  s.authors = ["Nathan Woodhull".freeze]
14
- s.date = "2021-05-20"
14
+ s.date = "2022-03-02"
15
15
  s.description = "A service layer scaffold for rails apps extracted from Agra".freeze
16
16
  s.email = "woodhull@gmail.com".freeze
17
17
  s.extra_rdoc_files = [
18
18
  "LICENSE.txt",
19
- "README.rdoc"
19
+ "README.md"
20
20
  ]
21
21
  s.files = [
22
22
  ".document",
23
+ ".github/workflows/ci.yml",
23
24
  ".rspec",
24
25
  ".rubocop.yml",
25
26
  ".ruby-gemset",
26
27
  ".ruby-version",
27
- ".travis.yml",
28
28
  "Gemfile",
29
29
  "LICENSE.txt",
30
- "README.rdoc",
30
+ "README.md",
31
31
  "Rakefile",
32
32
  "VERSION",
33
33
  "application_service.gemspec",
@@ -37,7 +37,7 @@ Gem::Specification.new do |s|
37
37
  ]
38
38
  s.homepage = "http://github.com/woodhull/application_service".freeze
39
39
  s.licenses = ["MIT".freeze]
40
- s.rubygems_version = "3.1.6".freeze
40
+ s.rubygems_version = "3.2.32".freeze
41
41
  s.summary = "Service Layer Scaffold".freeze
42
42
 
43
43
  if s.respond_to? :specification_version then
@@ -45,14 +45,14 @@ Gem::Specification.new do |s|
45
45
  end
46
46
 
47
47
  if s.respond_to? :add_runtime_dependency then
48
- s.add_runtime_dependency(%q<activesupport>.freeze, [">= 5.0.0.1", "< 7.0"])
48
+ s.add_runtime_dependency(%q<activesupport>.freeze, [">= 5.0.0.1"])
49
49
  s.add_development_dependency(%q<rspec>.freeze, ["~> 3.5"])
50
- s.add_development_dependency(%q<rubocop>.freeze, ["~> 1.15"])
50
+ s.add_development_dependency(%q<rubocop>.freeze, [">= 0"])
51
51
  s.add_development_dependency(%q<jeweler>.freeze, ["~> 2.2", ">= 2.2.1"])
52
52
  else
53
- s.add_dependency(%q<activesupport>.freeze, [">= 5.0.0.1", "< 7.0"])
53
+ s.add_dependency(%q<activesupport>.freeze, [">= 5.0.0.1"])
54
54
  s.add_dependency(%q<rspec>.freeze, ["~> 3.5"])
55
- s.add_dependency(%q<rubocop>.freeze, ["~> 1.15"])
55
+ s.add_dependency(%q<rubocop>.freeze, [">= 0"])
56
56
  s.add_dependency(%q<jeweler>.freeze, ["~> 2.2", ">= 2.2.1"])
57
57
  end
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: application_service
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Woodhull
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-20 00:00:00.000000000 Z
11
+ date: 2022-03-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -17,9 +17,6 @@ dependencies:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: 5.0.0.1
20
- - - "<"
21
- - !ruby/object:Gem::Version
22
- version: '7.0'
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
@@ -27,9 +24,6 @@ dependencies:
27
24
  - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: 5.0.0.1
30
- - - "<"
31
- - !ruby/object:Gem::Version
32
- version: '7.0'
33
27
  - !ruby/object:Gem::Dependency
34
28
  name: rspec
35
29
  requirement: !ruby/object:Gem::Requirement
@@ -48,16 +42,16 @@ dependencies:
48
42
  name: rubocop
49
43
  requirement: !ruby/object:Gem::Requirement
50
44
  requirements:
51
- - - "~>"
45
+ - - ">="
52
46
  - !ruby/object:Gem::Version
53
- version: '1.15'
47
+ version: '0'
54
48
  type: :development
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
51
  requirements:
58
- - - "~>"
52
+ - - ">="
59
53
  - !ruby/object:Gem::Version
60
- version: '1.15'
54
+ version: '0'
61
55
  - !ruby/object:Gem::Dependency
62
56
  name: jeweler
63
57
  requirement: !ruby/object:Gem::Requirement
@@ -84,17 +78,17 @@ executables: []
84
78
  extensions: []
85
79
  extra_rdoc_files:
86
80
  - LICENSE.txt
87
- - README.rdoc
81
+ - README.md
88
82
  files:
89
83
  - ".document"
84
+ - ".github/workflows/ci.yml"
90
85
  - ".rspec"
91
86
  - ".rubocop.yml"
92
87
  - ".ruby-gemset"
93
88
  - ".ruby-version"
94
- - ".travis.yml"
95
89
  - Gemfile
96
90
  - LICENSE.txt
97
- - README.rdoc
91
+ - README.md
98
92
  - Rakefile
99
93
  - VERSION
100
94
  - application_service.gemspec
@@ -105,7 +99,7 @@ homepage: http://github.com/woodhull/application_service
105
99
  licenses:
106
100
  - MIT
107
101
  metadata: {}
108
- post_install_message:
102
+ post_install_message:
109
103
  rdoc_options: []
110
104
  require_paths:
111
105
  - lib
@@ -120,8 +114,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
120
114
  - !ruby/object:Gem::Version
121
115
  version: '0'
122
116
  requirements: []
123
- rubygems_version: 3.1.6
124
- signing_key:
117
+ rubygems_version: 3.2.32
118
+ signing_key:
125
119
  specification_version: 4
126
120
  summary: Service Layer Scaffold
127
121
  test_files: []
data/.travis.yml DELETED
@@ -1,9 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.7
4
- cache: bundler
5
- before_install:
6
- - gem install bundler
7
- script:
8
- - bundle exec rspec
9
- - bundle exec rubocop
data/README.rdoc DELETED
@@ -1,19 +0,0 @@
1
- = application_service
2
-
3
- A service layer for rails apps.
4
-
5
- == Contributing to application_service
6
-
7
- * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
8
- * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
9
- * Fork the project.
10
- * Start a feature/bugfix branch.
11
- * Commit and push until you are happy with your contribution.
12
- * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
13
- * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
14
-
15
- == Copyright
16
-
17
- Copyright (c) 2013 Nathan Woodhull. See LICENSE.txt for
18
- further details.
19
-