require_patch 0.0.4 → 0.0.5
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/README.md +10 -10
- data/lib/require_patch/version.rb +1 -1
- data/require_patch.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 17c409fc8d94a16edc1ee4c2e084c4297fde0c4d
|
|
4
|
+
data.tar.gz: bf9ad8faa31396db94b66bc32c80a80c8cf1b826
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5c8eaa56ac47eb10e01cb8b707727ed342b7af84f20efd1bfde73cd882d9d0ef8e105b254d2d22d7a22a6dc2918fa172b274bed0df5935f286bf9908db8715b7
|
|
7
|
+
data.tar.gz: c3b6d6c38885ed8df034dbc39e36e8fc409374b9d28d11f5c519fb944f75afc5d0d9d8666aec67e39deb0ffef6cfb590ba3f8a0cd2cccb8b50548d91bbad5368
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# RequirePatch
|
|
2
2
|
|
|
3
|
-
The gem adds a command "require_patch" that
|
|
3
|
+
The gem adds a command "require_patch" that includes plugin patches. It used by my team to develop Redmine plugins
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
@@ -18,16 +18,16 @@ Or install it yourself as:
|
|
|
18
18
|
|
|
19
19
|
## Usage
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
21
|
+
plugins/awesome_plugin/lib/awesome_plugin
|
|
22
|
+
plugins/awesome_plugin/lib/awesome_plugin/user_patch.rb
|
|
23
|
+
plugins/awesome_plugin/lib/awesome_plugin/issue_patch.rb
|
|
24
|
+
plugins/awesome_plugin/lib/awesome_plugin/user_controller_patch.rb
|
|
25
|
+
plugins/awesome_plugin/lib/awesome_plugin/issue_helper_patch.rb
|
|
26
26
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
27
|
+
# plugins/awesome_plugin/init.rb
|
|
28
|
+
Rails.config.to_prepare do
|
|
29
|
+
require_patch 'awesome_plugin', 'user', 'issue', 'user_controller', 'issue_helper'
|
|
30
|
+
end
|
|
31
31
|
|
|
32
32
|
## Contributing
|
|
33
33
|
|
data/require_patch.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = RequirePatch::VERSION
|
|
9
9
|
spec.authors = ['Roman Shipiev']
|
|
10
10
|
spec.email = ['roman@shipiev.pro']
|
|
11
|
-
spec.summary = %q{The gem adds a command "require_patch" that
|
|
11
|
+
spec.summary = %q{The gem adds a command "require_patch" that includes plugin patches}
|
|
12
12
|
spec.description = %q{The gem used by our team to develop Redmine plugins}
|
|
13
13
|
spec.homepage = 'https://github.com/shipiev/require_patch'
|
|
14
14
|
spec.license = 'MIT'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: require_patch
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Roman Shipiev
|
|
@@ -76,6 +76,6 @@ rubyforge_project:
|
|
|
76
76
|
rubygems_version: 2.0.2
|
|
77
77
|
signing_key:
|
|
78
78
|
specification_version: 4
|
|
79
|
-
summary: The gem adds a command "require_patch" that
|
|
79
|
+
summary: The gem adds a command "require_patch" that includes plugin patches
|
|
80
80
|
test_files: []
|
|
81
81
|
has_rdoc:
|