h2ocube_rails_development 0.6.3 → 0.6.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +8 -21
- data/h2ocube_rails_development.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 57c4c87ba0ec560dc628db0d8f2b3143e7cce147
|
4
|
+
data.tar.gz: dfc85c54995705b5cc17fe29a1ccf0187281f788
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 74a3993ea78f8b892aabf935ac261d8d649bec1d5b2a78d3cdca377d1874896eb3eb4d412ab7ce0ed7c42699e3fe8c42fccd3d223f34734ef6142260428c47c8
|
7
|
+
data.tar.gz: 16340584a35f9f2d0dbc1d8f259ed7a27bee3b506f20e00fc9c5a146ef156e0e7457df53931664cbc7889ea27469bf14f79def22e05a07d3a2cae66c3c515eaa
|
data/README.md
CHANGED
@@ -18,18 +18,8 @@ Or install it yourself as:
|
|
18
18
|
|
19
19
|
$ gem install h2ocube_rails_development
|
20
20
|
|
21
|
-
If using rspec and capybara, you should add below code to spec_helper.rb
|
22
|
-
|
23
|
-
require 'rack_session_access/capybara'
|
24
|
-
require 'webmock/rspec'
|
25
|
-
|
26
21
|
## Usage
|
27
22
|
|
28
|
-
$ bin/rake annotate # => Annotate all your models and factories
|
29
|
-
$ bin/rake annotate:remove # => Remove all annotated comments
|
30
|
-
$ bin/rake spec # => Just default rspec task
|
31
|
-
$ bin/rake rubocop # => rubocop -R
|
32
|
-
$ bin/rake test # => Run spec and rubocop
|
33
23
|
$ bin/rake sort # => Sort config/locales/*.yml by key
|
34
24
|
$ bin/rake stats # => Show more details than default
|
35
25
|
|
@@ -41,37 +31,34 @@ For all
|
|
41
31
|
|
42
32
|
* h2ocube_rails_assets https://github.com/h2ocube/h2ocube_rails_assets
|
43
33
|
* h2ocube_rails_cache https://github.com/h2ocube/h2ocube_rails_cache
|
44
|
-
*
|
34
|
+
* h2ocube_rails_helper https://github.com/h2ocube/h2ocube_rails_helper
|
35
|
+
* puma https://github.com/puma/puma
|
45
36
|
|
46
37
|
For development & test
|
47
38
|
|
39
|
+
* byebug https://github.com/deivid-rodriguez/byebug
|
48
40
|
* factory_girl_rails https://github.com/thoughtbot/factory_girl_rails
|
49
|
-
* pry-rails https://github.com/rweng/pry-rails
|
50
41
|
* rspec-rails https://github.com/rspec/rspec-rails
|
51
42
|
|
52
43
|
For development only
|
53
44
|
|
54
|
-
*
|
55
|
-
* meta_request https://github.com/dejan/rails_panel/tree/master/meta_request
|
45
|
+
* listen https://github.com/guard/listen
|
56
46
|
* rails_stats https://github.com/bleonard/rails_stats
|
57
47
|
* spring https://github.com/rails/spring
|
58
48
|
* spring-commands-rspec https://github.com/jonleighton/spring-commands-rspec
|
49
|
+
* spring-watcher-listen https://github.com/jonleighton/spring-watcher-listen
|
50
|
+
* web-console https://github.com/rails/web-console
|
59
51
|
|
60
|
-
|
52
|
+
Just installed but not required
|
61
53
|
|
62
54
|
* capybara http://jnicklas.github.io/capybara
|
63
|
-
* poltergeist https://github.com/teampoltergeist/poltergeist
|
64
|
-
* rspec_junit_formatter https://github.com/sj26/rspec_junit_formatter
|
65
55
|
* timecop https://github.com/travisjeffery/timecop
|
66
56
|
* webmock https://github.com/bblimke/webmock
|
67
|
-
|
68
|
-
Just installed but not required
|
69
|
-
|
70
57
|
* capistrano https://github.com/capistrano/capistrano
|
71
58
|
* capistrano-bundler https://github.com/capistrano/bundler
|
72
59
|
* capistrano-rails https://github.com/capistrano/rails
|
73
60
|
* capistrano-rbenv https://github.com/capistrano/rbenv
|
74
|
-
*
|
61
|
+
* capistrano3-puma https://github.com/seuros/capistrano-puma
|
75
62
|
* rubocop https://github.com/bbatsov/rubocop
|
76
63
|
* whenever https://github.com/javan/whenever
|
77
64
|
|
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |spec|
|
5
5
|
spec.name = 'h2ocube_rails_development'
|
6
|
-
spec.version = '0.6.
|
6
|
+
spec.version = '0.6.4'
|
7
7
|
spec.authors = ['Ben']
|
8
8
|
spec.email = ['ben@zfben.com']
|
9
9
|
spec.description = 'Just a collection for development gems'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: h2ocube_rails_development
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ben
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-05-
|
11
|
+
date: 2017-05-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: h2ocube_rails_assets
|
@@ -366,7 +366,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
366
366
|
version: '0'
|
367
367
|
requirements: []
|
368
368
|
rubyforge_project:
|
369
|
-
rubygems_version: 2.6.
|
369
|
+
rubygems_version: 2.6.11
|
370
370
|
signing_key:
|
371
371
|
specification_version: 4
|
372
372
|
summary: Just a collection for development gems
|