welcome_application_record 1.0.3 → 1.0.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 0dc65d31f37336adb4b69e0fb32ed2ff39412e03
4
- data.tar.gz: e27658ee3a4e911239b5c772705d3b69410d580c
2
+ SHA256:
3
+ metadata.gz: 4ce1a710321095de514eb57b2aec5a2f5c03ce5caaf8c7313c7a29be5e07966e
4
+ data.tar.gz: a7caba4e33c0bbc1f1e8c0d0d298cc3fd5aeef7d23e8f99e1ad00a12e55bedc6
5
5
  SHA512:
6
- metadata.gz: fb574f806c7236ff0e9efaf3d7c13de82f22bc67b2aff155ceee4dac9756ef1ca90fa39d916ca86fedac1b5ae543ee952227f096507a49f2bacd7dc4b15be779
7
- data.tar.gz: 3b0ad28186c3c583763f1462d8638742a19516e611e2bc60fa807eabf28c0ad872887e5b895bdde2e6d2a15bd9fbad9f8e1826d029ceb0d75c8501e875a46988
6
+ metadata.gz: 324f117989baba5ff60a3773493d3838bea29706c45bcb75ef48bb8b36cfa2ee04ec4217f164929463a935fdef30e2603b206335143668452dae439ead9d4be6
7
+ data.tar.gz: 4920304d77eb49c9d55c6846e1d07362b1985a2a0568dfd560b406281099bc148efa971d4b948dadf9536d6ce46c51196d7971b3dac34a719f00c673c78730ea
data/.gitignore ADDED
@@ -0,0 +1 @@
1
+ welcome_application_record-*.gem
data/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # welcome_application_record
2
+ A simple gem which convert to extend `ApplicationRecord` instead to directly extend `ActiveRecord::Base`
3
+
4
+ ## Installation
5
+ ```ruby
6
+ gem install welcome_application_record
7
+ ```
8
+
9
+ ## Usage
10
+
11
+ ```sh
12
+ welcome_application_record
13
+ ```
File without changes
@@ -0,0 +1,3 @@
1
+ class WelcomeApplicationRecord
2
+ VERSION = "1.0.4"
3
+ end
@@ -0,0 +1,34 @@
1
+ lib = File.expand_path("../lib", __FILE__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require "welcome_application_record/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "welcome_application_record"
7
+ spec.date = "2019-08-07"
8
+ spec.summary = "Welcome ApplicationRecord"
9
+ spec.description = "A simple gem which convert to extend ApplicationRecord instead to directly extend ActiveRecord::Base"
10
+ spec.authors = ["Tai Tri Vo"]
11
+ spec.email = ["votaitri.hust@gmail.com"]
12
+
13
+ spec.metadata = {
14
+ "homepage_uri" => "https://github.com/VoTaiTri/welcome_application_record"
15
+ }
16
+ spec.version = WelcomeApplicationRecord::VERSION
17
+
18
+ spec.files = [
19
+ "welcome_application_record.gemspec",
20
+ ".gitignore",
21
+ "README.md",
22
+ "lib/welcome_application_record.rb",
23
+ "lib/welcome_application_record/version.rb",
24
+ "bin/welcome_application_record"
25
+ ]
26
+
27
+ spec.executables << "welcome_application_record"
28
+ spec.homepage = "https://github.com/VoTaiTri/welcome_application_record"
29
+ spec.license = "MIT"
30
+ spec.require_paths = ["lib"]
31
+
32
+ spec.add_development_dependency "bundler", "~> 1.16"
33
+ spec.add_development_dependency "rake", "~> 10.0"
34
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: welcome_application_record
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tai Tri Vo
@@ -47,12 +47,17 @@ executables:
47
47
  extensions: []
48
48
  extra_rdoc_files: []
49
49
  files:
50
+ - ".gitignore"
51
+ - README.md
50
52
  - bin/welcome_application_record
51
53
  - lib/welcome_application_record.rb
52
- homepage: https://rubygems.org/gems/welcome_application_record
54
+ - lib/welcome_application_record/version.rb
55
+ - welcome_application_record.gemspec
56
+ homepage: https://github.com/VoTaiTri/welcome_application_record
53
57
  licenses:
54
58
  - MIT
55
- metadata: {}
59
+ metadata:
60
+ homepage_uri: https://github.com/VoTaiTri/welcome_application_record
56
61
  post_install_message:
57
62
  rdoc_options: []
58
63
  require_paths:
@@ -69,7 +74,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
74
  version: '0'
70
75
  requirements: []
71
76
  rubyforge_project:
72
- rubygems_version: 2.6.14
77
+ rubygems_version: 2.7.6
73
78
  signing_key:
74
79
  specification_version: 4
75
80
  summary: Welcome ApplicationRecord