cybele 1.1.0 → 1.2.0
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/CHANGELOG.md +10 -0
- data/lib/cybele/app_builder.rb +0 -5
- data/lib/cybele/version.rb +1 -1
- data/templates/config/settings/production.yml +9 -1
- data/templates/config/settings/staging.yml +9 -1
- data/templates/cybele_Gemfile +3 -2
- metadata +2 -3
- data/templates/config/application.rb +0 -35
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5ce419226c7397827b7ed7d95e0468c926a77e45
|
|
4
|
+
data.tar.gz: cb9c10158769ce8b60af2c268e6102fd1009eb84
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d23b3c69280551d61d7580bdb58aee35a90410770b2217bfc59e6a5afba47234f38cc09871444f5f5ec3745b451580dffdd34e5da5b98774bf967fe5d0ea003b
|
|
7
|
+
data.tar.gz: 3aa137a079684ff7a368bb646dad16776bda0bb20f611efcb5989bb6f380b07258a29ff3ef448496b2f5ff66924b1ed13ef7a1a2f064da93717cff55fdd20fd7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
|
|
2
2
|
#### [Current]
|
|
3
|
+
* [499e2f7](../../commit/499e2f7) - __(Onur Ozgur OZKAN)__ update kangal version 1.1.0
|
|
4
|
+
* [e220eb5](../../commit/e220eb5) - __(Onur Ozgur OZKAN)__ [#106](../../issues/106) Don't copy application.rb from template
|
|
5
|
+
* [5affe99](../../commit/5affe99) - __(Onur Ozgur OZKAN)__ Typo fixed. Add a new line.
|
|
6
|
+
* [563c704](../../commit/563c704) - __(Onur Ozgur OZKAN)__ [#105](../../issues/105) update rails 4.0.2
|
|
7
|
+
* [b2deb95](../../commit/b2deb95) - __(hamitturkukaya)__ [#96](../../issues/96) S3 settings moved to the Aws scope
|
|
8
|
+
* [3a02a10](../../commit/3a02a10) - __(H. Türkü Kaya)__ [#96](../../issues/96) Http protocol fixed in cybele-gemfile
|
|
9
|
+
* [b7cc645](../../commit/b7cc645) - __(H. Türkü Kaya)__ [#96](../../issues/96) amazon settings added to the enviromental settings
|
|
10
|
+
|
|
11
|
+
#### 1.1.0
|
|
12
|
+
* [98f1cdb](../../commit/98f1cdb) - __(Muhammet DİLEK)__ bump version 1.1.0
|
|
3
13
|
* [c00cb14](../../commit/c00cb14) - __(Muhammet DİLEK)__ [#103](../../issues/103) secret_token.rb methodology changed
|
|
4
14
|
* [b44ce53](../../commit/b44ce53) - __(Onur Özgür ÖZKAN)__ [#102](../../issues/102) Update rails to version 4.0.1
|
|
5
15
|
* [59de9e1](../../commit/59de9e1) - __(Muhammet DİLEK)__ [#93](../../issues/93) recipes_matic latest gem version added
|
data/lib/cybele/app_builder.rb
CHANGED
|
@@ -27,11 +27,6 @@ module Cybele
|
|
|
27
27
|
copy_file 'config/initializers/disable_xml_params.rb', 'config/initializers/disable_xml_params.rb'
|
|
28
28
|
end
|
|
29
29
|
|
|
30
|
-
def replace_application_rb_file
|
|
31
|
-
remove_file 'config/application.rb'
|
|
32
|
-
copy_file 'config/application.rb', 'config/application.rb'
|
|
33
|
-
end
|
|
34
|
-
|
|
35
30
|
def replace_erb_with_haml
|
|
36
31
|
remove_file 'app/views/layouts/application.html.erb'
|
|
37
32
|
template 'app/views/layouts/application.html.haml.erb', 'app/views/layouts/application.html.haml', force: true
|
data/lib/cybele/version.rb
CHANGED
|
@@ -5,4 +5,12 @@ smtp:
|
|
|
5
5
|
enable_starttls_auto: true
|
|
6
6
|
user_name: 'email@email.com'
|
|
7
7
|
password: 'password'
|
|
8
|
-
authentication: 'plain'
|
|
8
|
+
authentication: 'plain'
|
|
9
|
+
|
|
10
|
+
Aws:
|
|
11
|
+
S3:
|
|
12
|
+
bucket: projectname-production
|
|
13
|
+
access_key_id: XXXXXXXXXXXXXXXX
|
|
14
|
+
secret_access_key: YYYYYYYYYYYYYYYYYY
|
|
15
|
+
aws_url: http://projectname-production.s3.amazonaws.com/
|
|
16
|
+
aws_raw_url: projectname-production.s3.amazonaws.com
|
|
@@ -5,4 +5,12 @@ smtp:
|
|
|
5
5
|
enable_starttls_auto: true
|
|
6
6
|
user_name: 'email@email.com'
|
|
7
7
|
password: 'password'
|
|
8
|
-
authentication: 'plain'
|
|
8
|
+
authentication: 'plain'
|
|
9
|
+
|
|
10
|
+
Aws:
|
|
11
|
+
S3:
|
|
12
|
+
bucket: projectname-production
|
|
13
|
+
access_key_id: XXXXXXXXXXXXXXXX
|
|
14
|
+
secret_access_key: YYYYYYYYYYYYYYYYYY
|
|
15
|
+
aws_url: http://projectname-production.s3.amazonaws.com/
|
|
16
|
+
aws_raw_url: projectname-production.s3.amazonaws.com
|
data/templates/cybele_Gemfile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
source 'https://rubygems.org'
|
|
2
2
|
|
|
3
|
-
gem 'rails', '~> 4.0.
|
|
3
|
+
gem 'rails', '~> 4.0.2'
|
|
4
4
|
gem 'pg', '~> 0.16.0'
|
|
5
5
|
gem 'sass-rails', '~> 4.0.0'
|
|
6
6
|
gem 'uglifier', '>= 1.3.0'
|
|
@@ -22,7 +22,7 @@ gem 'will_paginate', '~> 3.0.4'
|
|
|
22
22
|
gem 'will_paginate-bootstrap', '~> 0.2.3'
|
|
23
23
|
gem 'will-paginate-i18n', '~> 0.1.13'
|
|
24
24
|
gem 'paperclip', '~> 3.5.1'
|
|
25
|
-
gem 'kangal', '~> 1.
|
|
25
|
+
gem 'kangal', '~> 1.1.0'
|
|
26
26
|
gem 'rack-timeout', '~> 0.0.4'
|
|
27
27
|
gem 'annotate', '>=2.5.0'
|
|
28
28
|
gem 'recipient_interceptor', '~> 0.1.2'
|
|
@@ -32,6 +32,7 @@ gem 'capistrano', '~> 2.15.5'
|
|
|
32
32
|
gem 'capistrano-ext', '~> 1.2.1'
|
|
33
33
|
gem 'unicorn', '~> 4.6.3'
|
|
34
34
|
gem 'recipes_matic', '~> 0.2.0'
|
|
35
|
+
gem 'aws-sdk', '~> 1.29.0'
|
|
35
36
|
|
|
36
37
|
# gem 'rails-observers'
|
|
37
38
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cybele
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- lab2023
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-12-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -113,7 +113,6 @@ files:
|
|
|
113
113
|
- templates/app/views/hq/sessions/new.html.haml
|
|
114
114
|
- templates/app/views/layouts/application.html.haml.erb
|
|
115
115
|
- templates/app/views/welcome/index.html.haml.erb
|
|
116
|
-
- templates/config/application.rb
|
|
117
116
|
- templates/config/database.yml.erb
|
|
118
117
|
- templates/config/initializers/disable_xml_params.rb
|
|
119
118
|
- templates/config/initializers/mail.rb
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
require File.expand_path('../boot', __FILE__)
|
|
2
|
-
|
|
3
|
-
# Pick the frameworks you want:
|
|
4
|
-
require "active_record/railtie"
|
|
5
|
-
require "action_controller/railtie"
|
|
6
|
-
require "action_mailer/railtie"
|
|
7
|
-
require "sprockets/railtie"
|
|
8
|
-
# require "rails/test_unit/railtie"
|
|
9
|
-
|
|
10
|
-
# Require the gems listed in Gemfile, including any gems
|
|
11
|
-
# you've limited to :test, :development, or :production.
|
|
12
|
-
Bundler.require(:default, Rails.env)
|
|
13
|
-
|
|
14
|
-
module Timezone
|
|
15
|
-
class Application < Rails::Application
|
|
16
|
-
# Settings in config/environments/* take precedence over those specified here.
|
|
17
|
-
# Application configuration should go into files in config/initializers
|
|
18
|
-
# -- all .rb files in that directory are automatically loaded.
|
|
19
|
-
|
|
20
|
-
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
|
21
|
-
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
|
22
|
-
config.time_zone = 'Istanbul'
|
|
23
|
-
|
|
24
|
-
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
|
25
|
-
config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
|
26
|
-
config.i18n.default_locale = :tr
|
|
27
|
-
|
|
28
|
-
# Available locales
|
|
29
|
-
config.i18n.available_locales = :tr
|
|
30
|
-
|
|
31
|
-
config.assets.precompile += %w(*.png *.jpg *.jpeg *.gif)
|
|
32
|
-
config.sass.preferred_syntax = :sass
|
|
33
|
-
|
|
34
|
-
end
|
|
35
|
-
end
|