jt-rails-toolbox 1.0.5 → 1.0.6
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 +4 -1
- data/jt-rails-toolbox.gemspec +2 -1
- data/lib/generators/{rails_toolbox → jt/toolbox}/USAGE +1 -1
- data/lib/generators/{rails_toolbox → jt/toolbox}/templates/jt-toolbox.yml +0 -0
- data/lib/generators/{rails_toolbox/install_generator.rb → jt/toolbox/toolbox_generator.rb} +2 -4
- metadata +19 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 416e0b2b9a1fc2b02e6d3cfc9c775dae2b2362d3
|
|
4
|
+
data.tar.gz: 06597b7152de8b2e30360b8ee4ad9e195ee5569a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7ef3d63642209e0fecdcef38d8f547a238310c4760124e51817b73c9e8ecbc84ff80b742e2515fa55faebafe7327d51a9ec511c8219c3f2f0118bb14c8569b30
|
|
7
|
+
data.tar.gz: 5212dd759206eba6471cac107b4dfada00ca7da3e6ea1c4e1980b8d993ebf38fdb709ee72e9c74b38dfdbcb5b0202cf3462475655b17db1271dfe1cb8c75f609
|
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# JTRailsToolbox
|
|
2
2
|
|
|
3
|
+
[](http://badge.fury.io/rb/jt-rails-toolbox)
|
|
4
|
+
|
|
3
5
|
JTRailsToolbox contains a list of common libs used for Ruby On Rails development.
|
|
4
6
|
|
|
5
7
|
## Installation
|
|
@@ -12,7 +14,7 @@ Include the gem in your Gemfile:
|
|
|
12
14
|
|
|
13
15
|
Create a `jt-toolbox.yml` file:
|
|
14
16
|
|
|
15
|
-
rails g
|
|
17
|
+
rails g jt:toolbox
|
|
16
18
|
|
|
17
19
|
## What's in it?
|
|
18
20
|
|
|
@@ -23,6 +25,7 @@ Create a `jt-toolbox.yml` file:
|
|
|
23
25
|
- [validates_email_format_of](https://github.com/validates-email-format-of/validates_email_format_of), who doesn't need to validate email format?
|
|
24
26
|
- [rails-i18n](https://github.com/svenfuchs/rails-i18n) Default locale data
|
|
25
27
|
- [jt-rails-meta](https://github.com/jonathantribouharet/jt-rails-meta) Manage HTML meta tags
|
|
28
|
+
- [jt-rails-generator-user](https://github.com/jonathantribouharet/jt-rails-generator-user) Generate a scaffold for user authentication
|
|
26
29
|
- simplified configuration of hostnames and `ActionMailer` with a YAML file
|
|
27
30
|
|
|
28
31
|
### Exception Notification
|
data/jt-rails-toolbox.gemspec
CHANGED
|
@@ -3,7 +3,7 @@ Gem::Specification.new do |s|
|
|
|
3
3
|
s.summary = "Common libs used for Ruby On Rails development."
|
|
4
4
|
s.description = "JTRailsToolbox contains a list of common libs used for Ruby On Rails development."
|
|
5
5
|
s.homepage = 'https://github.com/jonathantribouharet/jt-rails-toolbox'
|
|
6
|
-
s.version = '1.0.
|
|
6
|
+
s.version = '1.0.6'
|
|
7
7
|
s.files = `git ls-files`.split("\n")
|
|
8
8
|
s.require_paths = ['lib']
|
|
9
9
|
s.authors = ['Jonathan TRIBOUHARET']
|
|
@@ -18,4 +18,5 @@ Gem::Specification.new do |s|
|
|
|
18
18
|
s.add_dependency('validates_email_format_of', '~> 1.6')
|
|
19
19
|
s.add_dependency('rails-i18n', '~> 4.0')
|
|
20
20
|
s.add_dependency('jt-rails-meta', '~> 1.0')
|
|
21
|
+
s.add_dependency('jt-rails-generator-user', '~> 1.0')
|
|
21
22
|
end
|
|
File without changes
|
|
@@ -1,11 +1,9 @@
|
|
|
1
|
-
module
|
|
2
|
-
|
|
3
|
-
class InstallGenerator < Rails::Generators::Base
|
|
1
|
+
module Jt
|
|
2
|
+
class ToolboxGenerator < Rails::Generators::Base
|
|
4
3
|
source_root File.expand_path("../templates", __FILE__)
|
|
5
4
|
|
|
6
5
|
def create_initializer_file
|
|
7
6
|
copy_file "jt-toolbox.yml", "config/jt-toolbox.yml"
|
|
8
7
|
end
|
|
9
8
|
end
|
|
10
|
-
|
|
11
9
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jt-rails-toolbox
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jonathan TRIBOUHARET
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-07-
|
|
11
|
+
date: 2015-07-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: exception_notification
|
|
@@ -108,6 +108,20 @@ dependencies:
|
|
|
108
108
|
- - ~>
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
110
|
version: '1.0'
|
|
111
|
+
- !ruby/object:Gem::Dependency
|
|
112
|
+
name: jt-rails-generator-user
|
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
|
114
|
+
requirements:
|
|
115
|
+
- - ~>
|
|
116
|
+
- !ruby/object:Gem::Version
|
|
117
|
+
version: '1.0'
|
|
118
|
+
type: :runtime
|
|
119
|
+
prerelease: false
|
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
+
requirements:
|
|
122
|
+
- - ~>
|
|
123
|
+
- !ruby/object:Gem::Version
|
|
124
|
+
version: '1.0'
|
|
111
125
|
description: JTRailsToolbox contains a list of common libs used for Ruby On Rails
|
|
112
126
|
development.
|
|
113
127
|
email: jonathan.tribouharet@gmail.com
|
|
@@ -120,9 +134,9 @@ files:
|
|
|
120
134
|
- LICENSE
|
|
121
135
|
- README.md
|
|
122
136
|
- jt-rails-toolbox.gemspec
|
|
123
|
-
- lib/generators/
|
|
124
|
-
- lib/generators/
|
|
125
|
-
- lib/generators/
|
|
137
|
+
- lib/generators/jt/toolbox/USAGE
|
|
138
|
+
- lib/generators/jt/toolbox/templates/jt-toolbox.yml
|
|
139
|
+
- lib/generators/jt/toolbox/toolbox_generator.rb
|
|
126
140
|
- lib/jt-rails-toolbox.rb
|
|
127
141
|
homepage: https://github.com/jonathantribouharet/jt-rails-toolbox
|
|
128
142
|
licenses:
|