onotole 1.0.15 → 1.0.16

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
  SHA1:
3
- metadata.gz: df1e910c7349543dddbb17a68acb0945528487f6
4
- data.tar.gz: ac542886e9cef3245ce5446f32d2488114ac428f
3
+ metadata.gz: cc781a10860d07bed424a430bdc93d800624f25c
4
+ data.tar.gz: 4e8b9fdb3995a3c28c09adf84739cdae5eca5e30
5
5
  SHA512:
6
- metadata.gz: c02580e70c74cc36deb3c783c6f40cfae367e73887816a91e033bb84f25bc8584a994ec9a02ccea3e6a2c18b813d0e64423cfff772ab955266b3b541c9dd38ed
7
- data.tar.gz: c6a2fb54d8956f1eeee0d12e2b0a8ad2243850d74151fdfd4de7d42fa1d99230b458a3dda2056386f0218bd29f4dfe62eb545d4b8ea77dcffc818ec4bd8239ed
6
+ metadata.gz: e6c7305408cce856140377e8aabfaadf02b4512a3c234ec5d32d221cfc07707a0cfaba8b3ebc5c67ffb4e0ffee01acfefcb0497a81895bfdd0eda8739ee8a133
7
+ data.tar.gz: b43eb3971f9182adf525c2fda46db4f3d5a9243fde18357c9eb1d81c3d8723c673cfa0965a80ef425ba0c44bf15e3ecd725e86fd2545d395cf951b7b251c14fb
data/README.md CHANGED
@@ -93,6 +93,8 @@ creating elegant backends for website administration.
93
93
  ORMs and allows custom date/time formats.
94
94
  * [font-awesome-sass](https://github.com/FortAwesome/font-awesome-sass)
95
95
  Font-Awesome Sass gem for use in Ruby/Rails projects
96
+ * [cyrillizer](https://github.com/dalibor/cyrillizer) Character conversion from
97
+ latin to cyrillic and vice versa
96
98
 
97
99
 
98
100
  Mandatory installation gem list you will find in `Gemfile` section
@@ -229,5 +229,9 @@ module Onotole
229
229
  def add_font_awesome_sass_gem
230
230
  inject_into_file('Gemfile', "\ngem 'font-awesome-sass', '~> 4.5.0'", after: '# user_choice')
231
231
  end
232
+
233
+ def add_cyrillizer_gem
234
+ inject_into_file('Gemfile', "\ngem 'cyrillizer'", after: '# user_choice')
235
+ end
232
236
  end
233
237
  end
@@ -64,29 +64,38 @@ module Onotole
64
64
  add_to_user_choise(gem) if gem
65
65
  end
66
66
 
67
+ def choose_develoder_tools
68
+ variants = { none: 'None',
69
+ faker: 'Gem for generate fake data in testing',
70
+ rubocop: 'Code inspector and code formatting tool',
71
+ guard: 'Guard (with RSpec, livereload, rails, migrate, bundler)',
72
+ guard_rubocop: 'Auto-declare code miss in guard',
73
+ bundler_audit: 'Extra possibilities for gems version control',
74
+ airbrake: 'Airbrake error logging',
75
+ annotate: 'Annotate Rails classes with schema and routes info',
76
+ overcommit: 'A fully configurable and extendable Git hook manager',
77
+ railroady: 'Model and controller UML class diagram generator',
78
+ hirbunicode: 'Hirb unicode support',
79
+ dotenv_heroku: 'dotenv-heroku support',
80
+ meta_request: 'Rails meta panel in chrome console.'\
81
+ " Very usefull in\n#{' ' * 24}AJAX debugging. Link for chrome"\
82
+ " add-on in Gemfile.\n#{' ' * 24}Do not delete comments if you need this link"
83
+ }
84
+ multiple_choice('Write numbers of all preferred gems.', variants).each do |gem|
85
+ add_to_user_choise gem
86
+ end
87
+ end
88
+
67
89
  def choose_undroup_gems
68
90
  variants = { none: 'None',
69
- faker: 'Gem for generate fake data in testing',
70
- rubocop: 'Code inspector and code formatting tool',
71
91
  rubycritic: 'A Ruby code quality reporter',
72
- guard: 'Guard (with RSpec, livereload, rails, migrate, bundler)',
73
- guard_rubocop: 'Auto-declare code miss in guard',
74
- bundler_audit: 'Extra possibilities for gems version control',
75
- airbrake: 'Airbrake error logging',
76
92
  responders: 'A set of responders modules to dry up your Rails 4.2+ app.',
77
- hirbunicode: 'Hirb unicode support',
78
- dotenv_heroku: 'dotenv-heroku support',
79
93
  tinymce: 'Integration of TinyMCE with the Rails asset pipeline',
80
- annotate: 'Annotate Rails classes with schema and routes info',
81
- overcommit: 'A fully configurable and extendable Git hook manager',
82
94
  activerecord_import: 'A library for bulk inserting data using ActiveRecord',
83
- railroady: 'Model and controller UML class diagram generator',
84
95
  paper_trail: 'Track changes to your models data. For auditing or versioning',
96
+ cyrillizer: 'Character conversion from latin to cyrillic and vice versa',
85
97
  validates_timeliness: 'Date and time validation plugin for ActiveModel and Rails',
86
- font_awesome_sass: 'Font-Awesome Sass gem for use in Ruby/Rails projects',
87
- meta_request: 'Rails meta panel in chrome console.'\
88
- " Very usefull in\n#{' ' * 24}AJAX debugging. Link for chrome"\
89
- " add-on in Gemfile.\n#{' ' * 24}Do not delete comments if you need this link"
98
+ font_awesome_sass: 'Font-Awesome Sass gem for use in Ruby/Rails projects'
90
99
  }
91
100
  multiple_choice('Write numbers of all preferred gems.', variants).each do |gem|
92
101
  add_to_user_choise gem
@@ -7,6 +7,7 @@ module Onotole
7
7
  choose_frontend
8
8
  choose_authenticate_engine
9
9
  choose_pagimation
10
+ choose_develoder_tools
10
11
  # Placeholder for other gem additions
11
12
  # menu description in add_gems_in_menu.rb
12
13
 
@@ -2,5 +2,5 @@
2
2
  module Onotole
3
3
  RAILS_VERSION = '~> 4.2.0'
4
4
  RUBY_VERSION = IO.read("#{File.dirname(__FILE__)}/../../.ruby-version").strip
5
- VERSION = '1.0.15'
5
+ VERSION = '1.0.16'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: onotole
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.15
4
+ version: 1.0.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - kvokka
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-02-23 00:00:00.000000000 Z
12
+ date: 2016-02-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler