Project

General

Profile

Statistics
| Branch: | Tag: | Revision:
Name Size
  foreman
  generators
  middleware
  net
  proxy_api
  tasks
core_extensions.rb 4.83 KB
foreman.rb 550 Bytes
net.rb 860 Bytes
proxy_api.rb 72 Bytes
seed_helper.rb 2.16 KB
timed_cached_store.rb 1.17 KB
ws_proxy.rb 2.38 KB

Latest revisions

# Date Author Comment
13b42253 06/06/2017 11:12 AM Ohad Levy

refs #19589 - ensure that foreman starts in production

this avoids the following error in production (under passenger):
Message from application: uninitialized constant Generators::Base (NameError)
lib/generators/plugin/migration_generator.rb:2:in `<module:Plugin>'...

fb57b8b0 06/02/2017 04:28 AM Shimon Shtein

Fixes #19589 - Added plugin migration generator

Now plugin creators would be able to generate migrations by invoking

``` sh

rails g plugin:migration <migration name and options> --plugin_name=my_plugin

```

cabe2c2e 06/01/2017 07:45 AM Ohad Levy

Fixes #19700 - update rubocop rules

The following changes have been made:

- Performance/RedundantMerge:
changes lines such as:
```not_found_message.merge! :message => options```
to:
```not_found_message[:message] = options```

- converts str.match() to str =~ ()...

56d54dc2 05/25/2017 07:22 AM Amir Fefer

Fixes #19034 - add tasks for clearing expired notifications

bf2c7da5 04/19/2017 10:19 AM Marek Hulán

Fixes #19295 - use new DHCP API

eb831f37 04/12/2017 10:14 AM Ivan Necas

Fixes #19241 - fix warning: already initialized constant ARGV

4deab2f3 04/12/2017 02:31 AM Lukas Zapletal

Fixes #13772 - orchestration now uses app logger

778d8bcb 04/07/2017 08:42 AM Ivan Necas

Fixes #19213 - use provision interface in foreman_url

Before this patch, we were using primary interface for checking on ftfp
proxy and its template feature. Provision interface is more appropriate
for this purposes.

7923c95d 04/06/2017 07:19 AM Dominic Cleal

fixes #18445 - always define eager_load_paths, use require_dep

Allows `eager_load!` to be called or enabled in any environment without
loading files under lib/ twice. Switches many `require` calls to Rails'
`require_dependency` to always use its dependency loader, so when eager...

e8d612bd 03/26/2017 02:58 AM Dominic Cleal

fixes #18719 - replace usage of deprecated Fixnum constant

Most type checks for Fixnum can safely be replaced by Integer, as prior
to Ruby 2.4, Fixnum was a subclass of Integer and so the conditional
holds.

View revisions

Also available in: Atom