cybele 1.6.0 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -1
  3. data/.ruby-version +1 -0
  4. data/CHANGELOG.md +155 -121
  5. data/MIT-LICENSE +2 -2
  6. data/README.md +12 -6
  7. data/cybele.gemspec +17 -15
  8. data/lib/cybele/app_builder.rb +86 -28
  9. data/lib/cybele/generators/app_generator.rb +29 -3
  10. data/lib/cybele/version.rb +4 -3
  11. data/templates/app/controllers/hq/admin_profiles_controller.rb +10 -2
  12. data/templates/app/controllers/hq/sessions_controller.rb +13 -0
  13. data/templates/app/controllers/user_profiles_controller.rb +10 -2
  14. data/templates/app/views/devise/mailer/reset_password_instructions.html.haml +8 -5
  15. data/templates/app/views/devise/passwords/edit.html.haml +5 -5
  16. data/templates/app/views/devise/passwords/new.html.haml +4 -3
  17. data/templates/app/views/devise/registrations/edit.html.haml +5 -5
  18. data/templates/app/views/devise/registrations/new.html.haml +3 -2
  19. data/templates/app/views/devise/sessions/new.html.haml +7 -6
  20. data/templates/app/views/devise/shared/_links.haml +9 -8
  21. data/templates/app/views/hq/sessions/new.html.haml +4 -3
  22. data/templates/app/views/layouts/application.html.haml.erb +1 -0
  23. data/templates/config/database.yml.erb +9 -1
  24. data/templates/config/deploy.rb +56 -0
  25. data/templates/config/locales/en.yml +2 -0
  26. data/templates/config/locales/models.en.yml +54 -0
  27. data/templates/config/locales/models.tr.yml +56 -0
  28. data/templates/config/locales/responders.tr.yml +1 -0
  29. data/templates/config/locales/show_for.en.yml +7 -0
  30. data/templates/config/locales/show_for.tr.yml +8 -0
  31. data/templates/config/locales/simple_form.en.yml +30 -0
  32. data/templates/config/locales/simple_form.tr.yml +6 -1
  33. data/templates/config/locales/tr.yml +1 -31
  34. data/templates/config/locales/view.en.yml +51 -0
  35. data/templates/config/locales/view.tr.yml +52 -0
  36. data/templates/config/settings.yml +0 -0
  37. data/templates/cybele_Gemfile +47 -43
  38. data/templates/ruby-version +1 -1
  39. metadata +17 -7
  40. data/Gemfile.lock +0 -92
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f53c5ae92e8d180707755c6dfb12ed0a844c0195
4
- data.tar.gz: ecbf2c4e3fdbbc7397bc509375b4506c01dba8db
3
+ metadata.gz: 4b4d3275f8c2ed6eb21e33cc98b703b96f368f7b
4
+ data.tar.gz: 79fb95d61ef85da7e3cc43c459e34db230d1c6bd
5
5
  SHA512:
6
- metadata.gz: a4aae136cbdc10bf296eccafc1c93f44a9df9ed8ba5524d36aea15f0d81abbd7eacf8e3d3ef1fed21721824330c5c12ecb6adebd85c666b6a1a63b0e4fbd3d1c
7
- data.tar.gz: f0b75b265cb8215adde5a53b5c02fbbf7a6eea2ed1eea0036138d47cd8cb8546c743c32e3f4a37872db0c3c16ecc4d5823dd4638591bed85aeebd009d19bd867
6
+ metadata.gz: 9bc96d6297717db5448dbd1d1bd56bff35cdc97173a8bc93655ef34439d593864a73f23690798bd054b6fe812558fba112904489587fc41becb89f3dfd22fd95
7
+ data.tar.gz: e03070f0eb4786dde0a7378dcb64f92ae0b936c5dc644202fdadddab6680fb6a7a031b582bd7f4ffe9f570d6a1240149cd6e20374e9bf3612f081a5dfbef43da
data/.gitignore CHANGED
@@ -2,4 +2,5 @@
2
2
  *.gem
3
3
  *.log
4
4
  .bundle/
5
- *.bundle/install.log
5
+ *.bundle/install.log
6
+ Gemfile.lock
@@ -0,0 +1 @@
1
+ 2.2.3
@@ -1,24 +1,60 @@
1
1
 
2
2
  #### [Current]
3
- * [758c2c9](../../commit/758c2c9) - __(Muhammet DILEK)__ TB-20 ruby migrated 2.1.1
4
- * [f7a65f8](../../commit/f7a65f8) - __(Muhammet DILEK)__ TB-20 rails migrated 4.1.1
5
- * [406971d](../../commit/406971d) - __(Muhammet DILEK)__ TB-34 secret_token.rb removed from gitignore
3
+ * [81358eb](../../commit/81358eb) - __(Tayfun Öziş ERİKAN)__ Some typos were fixed
4
+ * [0918eb6](../../commit/0918eb6) - __(Tayfun Öziş ERİKAN)__ Gemfile.lock was removed
5
+ * [648ed0a](../../commit/648ed0a) - __(Tayfun Öziş ERİKAN)__ File name was changed
6
+ * [c4cb51c](../../commit/c4cb51c) - __(Tayfun Öziş ERİKAN)__ License and version files were updated
7
+ * [f5b99e9](../../commit/f5b99e9) - __(Tayfun Öziş ERİKAN)__ Improvements were done - Ruby 2.2.3 version was added - Rails 4.2.3 version was added - Gemfile.lock was removed - Gemspec was improved
8
+ * [cf14f9e](../../commit/cf14f9e) - __(Ismail Akbudak)__ fix user
9
+ * [e0a7b20](../../commit/e0a7b20) - __(Ismail Akbudak)__ add ssh port for capistrano
10
+ * [171e45f](../../commit/171e45f) - __(Ismail Akbudak)__ add first deploy task for capistrano
11
+ * [1433ad6](../../commit/1433ad6) - __(Ismail Akbudak)__ improvement
12
+ * [a5158f0](../../commit/a5158f0) - __(Ismail Akbudak)__ fix errors
13
+ * [5ade7e4](../../commit/5ade7e4) - __(Ismail Akbudak)__ add new features
14
+ * [952a035](../../commit/952a035) - __(Ismail Akbudak)__ add devise return path
15
+ * [7c55b0e](../../commit/7c55b0e) - __(Ismail Akbudak)__ add capistrano 3.4 with settings
16
+ * [4930faa](../../commit/4930faa) - __(Ismail Akbudak)__ add notification messages view
17
+ * [16c8780](../../commit/16c8780) - __(Ismail Akbudak)__ implement localizations to view
18
+ * [0102c3b](../../commit/0102c3b) - __(Ismail Akbudak)__ add missing file
19
+ * [693c179](../../commit/693c179) - __(Ismail Akbudak)__ add localization files
20
+ * [388cee0](../../commit/388cee0) - __(Ismail Akbudak)__ add new methods and remove old methods
21
+ * [e7fd568](../../commit/e7fd568) - __(Ismail Akbudak)__ update gems version
22
+ * [44cfd06](../../commit/44cfd06) - __(Murat Kemal BAYGÜN)__ TB-65 Fix link
23
+ * [4bde163](../../commit/4bde163) - __(Murat Kemal BAYGÜN)__ TB-65 Fix contributor link
24
+ * [e0a97bd](../../commit/e0a97bd) - __(Ahmet Sezgin Duran)__ Merge tag '1.6.2' into develop
25
+
26
+ #### 1.6.2
27
+ * [822cbf3](../../commit/822cbf3) - __(Onur Özgür ÖZKAN)__ Update GEM version.
28
+ * [eb6a510](../../commit/eb6a510) - __(Ahmet Sezgin Duran)__ Merge tag '1.6.1' into develop
29
+ * [584eb94](../../commit/584eb94) - __(Ahmet Sezgin Duran)__ TB-60 #time 1m Bump version 1.6.2 and dump changelog
30
+ * [653ad04](../../commit/653ad04) - __(Ahmet Sezgin Duran)__ TB-60 #time 30m Fix profile controller errors
31
+
32
+ #### 1.6.1
33
+ * [844f583](../../commit/844f583) - __(Ahmet Sezgin Duran)__ TB-44 #time 1m Bump version 1.6.1
34
+ * [6ce514d](../../commit/6ce514d) - __(Ahmet Sezgin Duran)__ TB-44 #time 5m Add Cybele migration info
35
+ * [32e09e2](../../commit/32e09e2) - __(Onur Özgür ÖZKAN)__ Update ruby version 2.1.2
36
+
37
+ #### 1.6.0
38
+ * [86508de](../../commit/86508de) - __(Muhammet DİLEK)__ bump version 1.6.0
39
+ * [758c2c9](../../commit/758c2c9) - __(Muhammet DİLEK)__ TB-20 ruby migrated 2.1.1
40
+ * [f7a65f8](../../commit/f7a65f8) - __(Muhammet DİLEK)__ TB-20 rails migrated 4.1.1
41
+ * [406971d](../../commit/406971d) - __(Muhammet DİLEK)__ TB-34 secret_token.rb removed from gitignore
6
42
  * [d95e561](../../commit/d95e561) - __(Ahmet Sezgin Duran)__ LAB-31 #time 1m Add named logo
7
43
  * [d83d051](../../commit/d83d051) - __(Ahmet Sezgin Duran)__ LAB-31 #time 2m Update README.md
8
44
 
9
45
  #### 1.5.1
10
- * [43a2ee1](../../commit/43a2ee1) - __(Muhammet DILEK)__ bump version 1.5.1
11
- * [c5b07c0](../../commit/c5b07c0) - __(Muhammet DILEK)__ Gemfile.lock fixed
12
- * [6d35777](../../commit/6d35777) - __(Onur zgr ZKAN)__ Update gems version
13
- * [e6171a2](../../commit/e6171a2) - __(Muhammet DILEK)__ bump version 1.5.0
14
- * [f49b2e1](../../commit/f49b2e1) - __(Muhammet DILEK)__ TB-2 improve profile
46
+ * [43a2ee1](../../commit/43a2ee1) - __(Muhammet DİLEK)__ bump version 1.5.1
47
+ * [c5b07c0](../../commit/c5b07c0) - __(Muhammet DİLEK)__ Gemfile.lock fixed
48
+ * [6d35777](../../commit/6d35777) - __(Onur Özgür ÖZKAN)__ Update gems version
49
+ * [e6171a2](../../commit/e6171a2) - __(Muhammet DİLEK)__ bump version 1.5.0
50
+ * [f49b2e1](../../commit/f49b2e1) - __(Muhammet DİLEK)__ TB-2 improve profile
15
51
  * [0f86715](../../commit/0f86715) - __(hamitturkukaya)__ TB-2 Admin and user profiles added
16
- * [0c4f887](../../commit/0c4f887) - __(Muhammet DILEK)__ TB-14 custom 404 page added
17
- * [617a7c1](../../commit/617a7c1) - __(Muhammet DILEK)__ TB-14 custom 500 page added
52
+ * [0c4f887](../../commit/0c4f887) - __(Muhammet DİLEK)__ TB-14 custom 404 page added
53
+ * [617a7c1](../../commit/617a7c1) - __(Muhammet DİLEK)__ TB-14 custom 500 page added
18
54
  * [32593a0](../../commit/32593a0) - __(hamitturkukaya)__ TB-26 hierapolis-rails version upgraded
19
- * [9c91097](../../commit/9c91097) - __(Muhammet DILEK)__ TB-16 devise gem updated
20
- * [cefb812](../../commit/cefb812) - __(Muhammet DILEK)__ TB-23 dev.rake added
21
- * [97fca16](../../commit/97fca16) - __(Muhammet DILEK)__ TB-24 show initial file added
55
+ * [9c91097](../../commit/9c91097) - __(Muhammet DİLEK)__ TB-16 devise gem updated
56
+ * [cefb812](../../commit/cefb812) - __(Muhammet DİLEK)__ TB-23 dev.rake added
57
+ * [97fca16](../../commit/97fca16) - __(Muhammet DİLEK)__ TB-24 show initial file added
22
58
  * [d9eb93a](../../commit/d9eb93a) - __(Ahmet Sezgin Duran)__ TB-2 #time 15m Add user profile editor
23
59
  * [0273c31](../../commit/0273c31) - __(Ahmet Sezgin Duran)__ TB-2 #time 30m Add admin profile editor
24
60
  * [10e6992](../../commit/10e6992) - __(Onur Ozgur OZKAN)__ Merge remote-tracking branch 'origin/develop' into develop
@@ -26,73 +62,71 @@
26
62
  * [5b193d7](../../commit/5b193d7) - __(Ahmet Sezgin Duran)__ TB-3 #time 30m Add Bullet gem's configuration
27
63
 
28
64
  #### 1.4.0
29
- * [06dbf38](../../commit/06dbf38) - __(Muhammet DILEK)__ bump version 1.4.0
30
- * [cf40aec](../../commit/cf40aec) - __(Muhammet DILEK)__ rails_best_practices gem added
31
- * [39a7cf2](../../commit/39a7cf2) - __(Onur zgr ZKAN)__ Merge pull request [#114](../../issues/114) from marjinal1st/version-patch
65
+ * [06dbf38](../../commit/06dbf38) - __(Muhammet DİLEK)__ bump version 1.4.0
66
+ * [cf40aec](../../commit/cf40aec) - __(Muhammet DİLEK)__ rails_best_practices gem added
67
+ * [39a7cf2](../../commit/39a7cf2) - __(Onur Özgür ÖZKAN)__ Merge pull request [#114](../../issues/114) from marjinal1st/version-patch
32
68
 
33
69
  TB-7 #time 10m Update Rails version in cybele_Gemfile
34
70
  * [9ff6283](../../commit/9ff6283) - __(Ahmet Sezgin Duran)__ TB-7 #time 10m Update Rails version in cybele_Gemfile
35
- * [278c844](../../commit/278c844) - __(Onur zgr ZKAN)__ Update gems version.
36
- * [56f2621](../../commit/56f2621) - __(Onur zgr ZKAN)__ Change ruby version 2.0.0-p353
37
- * [21137a8](../../commit/21137a8) - __(Onur zgr ZKAN)__ Update cybele_Gemfile
38
- * [d53dc47](../../commit/d53dc47) - __(Onur zgr ZKAN)__ Update kangal version 1.2.3
39
- * [9c457d2](../../commit/9c457d2) - __(Onur zgr ZKAN)__ Update recipes_matic gem version to 1.0.0
40
-
41
- #### v1.3.0
71
+ * [278c844](../../commit/278c844) - __(Onur Özgür ÖZKAN)__ Update gems version.
72
+ * [56f2621](../../commit/56f2621) - __(Onur Özgür ÖZKAN)__ Change ruby version 2.0.0-p353
73
+ * [21137a8](../../commit/21137a8) - __(Onur Özgür ÖZKAN)__ Update cybele_Gemfile
74
+ * [d53dc47](../../commit/d53dc47) - __(Onur Özgür ÖZKAN)__ Update kangal version 1.2.3
75
+ * [9c457d2](../../commit/9c457d2) - __(Onur Özgür ÖZKAN)__ Update recipes_matic gem version to 1.0.0
42
76
  * [6a1c519](../../commit/6a1c519) - __(Onur Ozgur OZKAN)__ version fixed
43
77
 
44
78
  #### 1.3.0
45
79
  * [870066a](../../commit/870066a) - __(Onur Ozgur OZKAN)__ hump version 1.3.0
46
- * [d482e6b](../../commit/d482e6b) - __(Muhammet DLEK)__ Merge pull request [#112](../../issues/112) from sbagdat/patch-1
80
+ * [d482e6b](../../commit/d482e6b) - __(Muhammet DİLEK)__ Merge pull request [#112](../../issues/112) from sbagdat/patch-1
47
81
 
48
82
  Update cybele_gitignore
49
- * [1cc0c24](../../commit/1cc0c24) - __(Stk Badat)__ Update cybele_gitignore
50
- * [a3e1185](../../commit/a3e1185) - __(Onur zgr ZKAN)__ [#111](../../issues/111) Configure number currency for unit
83
+ * [1cc0c24](../../commit/1cc0c24) - __(Sıtkı Bağdat)__ Update cybele_gitignore
84
+ * [a3e1185](../../commit/a3e1185) - __(Onur Özgür ÖZKAN)__ [#111](../../issues/111) Configure number currency forunit
51
85
  * [8b13d54](../../commit/8b13d54) - __(hamitturkukaya)__ [#110](../../issues/110) paperclip amazon s3 settings added to initializers
52
86
  * [05948c9](../../commit/05948c9) - __(hamitturkukaya)__ [#110](../../issues/110) paperclip amazon s3 settings added to initializers
53
- * [8d41713](../../commit/8d41713) - __(Muhammet DILEK)__ # 109 bootstrap-sass and compass-rails updated
87
+ * [8d41713](../../commit/8d41713) - __(Muhammet DİLEK)__ # 109 bootstrap-sass and compass-rails updated
54
88
 
55
89
  #### 1.2.0
56
- * [00e244b](../../commit/00e244b) - __(Muhammet DILEK)__ bump version 1.2.0
90
+ * [00e244b](../../commit/00e244b) - __(Muhammet DİLEK)__ bump version 1.2.0
57
91
  * [499e2f7](../../commit/499e2f7) - __(Onur Ozgur OZKAN)__ update kangal version 1.1.0
58
92
  * [e220eb5](../../commit/e220eb5) - __(Onur Ozgur OZKAN)__ [#106](../../issues/106) Don't copy application.rb from template
59
93
  * [5affe99](../../commit/5affe99) - __(Onur Ozgur OZKAN)__ Typo fixed. Add a new line.
60
94
  * [563c704](../../commit/563c704) - __(Onur Ozgur OZKAN)__ [#105](../../issues/105) update rails 4.0.2
61
95
  * [b2deb95](../../commit/b2deb95) - __(hamitturkukaya)__ [#96](../../issues/96) S3 settings moved to the Aws scope
62
- * [3a02a10](../../commit/3a02a10) - __(H. Trk Kaya)__ [#96](../../issues/96) Http protocol fixed in cybele-gemfile
63
- * [b7cc645](../../commit/b7cc645) - __(H. Trk Kaya)__ [#96](../../issues/96) amazon settings added to the enviromental settings
96
+ * [3a02a10](../../commit/3a02a10) - __(H. Türkü Kaya)__ [#96](../../issues/96) Http protocol fixed in cybele-gemfile
97
+ * [b7cc645](../../commit/b7cc645) - __(H. Türkü Kaya)__ [#96](../../issues/96) amazon settings added to the enviromental settings
64
98
 
65
99
  #### 1.1.0
66
- * [98f1cdb](../../commit/98f1cdb) - __(Muhammet DILEK)__ bump version 1.1.0
67
- * [c00cb14](../../commit/c00cb14) - __(Muhammet DILEK)__ [#103](../../issues/103) secret_token.rb methodology changed
68
- * [b44ce53](../../commit/b44ce53) - __(Onur zgr ZKAN)__ [#102](../../issues/102) Update rails to version 4.0.1
69
- * [59de9e1](../../commit/59de9e1) - __(Muhammet DILEK)__ [#93](../../issues/93) recipes_matic latest gem version added
70
- * [5080392](../../commit/5080392) - __(Muhammet DILEK)__ [#93](../../issues/93) capistrano recipes added
71
- * [443bf93](../../commit/443bf93) - __(H. Trk Kaya)__ [#100](../../issues/100) SECURITY.md added
72
- * [383d48f](../../commit/383d48f) - __(Muhammet DLEK)__ Merge pull request [#99](../../issues/99) from marjinal1st/develop
100
+ * [98f1cdb](../../commit/98f1cdb) - __(Muhammet DİLEK)__ bump version 1.1.0
101
+ * [c00cb14](../../commit/c00cb14) - __(Muhammet DİLEK)__ [#103](../../issues/103) secret_token.rb methodology changed
102
+ * [b44ce53](../../commit/b44ce53) - __(Onur Özgür ÖZKAN)__ [#102](../../issues/102) Update rails to version 4.0.1
103
+ * [59de9e1](../../commit/59de9e1) - __(Muhammet DİLEK)__ [#93](../../issues/93) recipes_matic latest gem version added
104
+ * [5080392](../../commit/5080392) - __(Muhammet DİLEK)__ [#93](../../issues/93) capistrano recipes added
105
+ * [443bf93](../../commit/443bf93) - __(H. Türkü Kaya)__ [#100](../../issues/100) SECURITY.md added
106
+ * [383d48f](../../commit/383d48f) - __(Muhammet DİLEK)__ Merge pull request [#99](../../issues/99) from marjinal1st/develop
73
107
 
74
108
  [#97](../../issues/97) Add secret_token.rb in gitignore
75
109
  * [aa2e3ac](../../commit/aa2e3ac) - __(Ahmet Sezgin Duran)__ Add secret_token.rb in gitignore
76
- * [a2caa79](../../commit/a2caa79) - __(Onur zgr ZKAN)__ Update rails-i18n gem version
77
- * [16c9331](../../commit/16c9331) - __(Muhammet DLEK)__ update readme
110
+ * [a2caa79](../../commit/a2caa79) - __(Onur Özgür ÖZKAN)__ Update rails-i18n gem version
111
+ * [16c9331](../../commit/16c9331) - __(Muhammet DİLEK)__ update readme
78
112
 
79
113
  #### 1.0.0
80
- * [6ea6062](../../commit/6ea6062) - __(Muhammet DILEK)__ bump version 1.0.0
81
- * [9d610b0](../../commit/9d610b0) - __(Muhammet DILEK)__ [#89](../../issues/89) exception notification configuration added to environment files
82
- * [4c00857](../../commit/4c00857) - __(Muhammet DILEK)__ [#91](../../issues/91) staging configuration added
83
- * [38ef9c5](../../commit/38ef9c5) - __(Muhammet DILEK)__ [#90](../../issues/90) asset files updated
84
- * [0710dd1](../../commit/0710dd1) - __(Tayfun zi ERKAN)__ [#88](../../issues/88) RecipientInterceptor initial parameters was fixed.
114
+ * [6ea6062](../../commit/6ea6062) - __(Muhammet DİLEK)__ bump version 1.0.0
115
+ * [9d610b0](../../commit/9d610b0) - __(Muhammet DİLEK)__ [#89](../../issues/89) exception notification configuration added to environment files
116
+ * [4c00857](../../commit/4c00857) - __(Muhammet DİLEK)__ [#91](../../issues/91) staging configuration added
117
+ * [38ef9c5](../../commit/38ef9c5) - __(Muhammet DİLEK)__ [#90](../../issues/90) asset files updated
118
+ * [0710dd1](../../commit/0710dd1) - __(Tayfun Öziş ERİKAN)__ [#88](../../issues/88) RecipientInterceptor initial parameters was fixed.
85
119
  * [fe6b690](../../commit/fe6b690) - __(Onur Ozgur OZKAN)__ [#87](../../issues/87) add time_zone to devise model
86
120
  * [d87b845](../../commit/d87b845) - __(Onur Ozgur OZKAN)__ typo fixed.
87
121
 
88
122
  #### 0.10.1
89
- * [cb7eead](../../commit/cb7eead) - __(Muhammet DILEK)__ bump version 0.10.1
90
- * [063a81e](../../commit/063a81e) - __(Muhammet DILEK)__ dashboard base class fixed
123
+ * [cb7eead](../../commit/cb7eead) - __(Muhammet DİLEK)__ bump version 0.10.1
124
+ * [063a81e](../../commit/063a81e) - __(Muhammet DİLEK)__ dashboard base class fixed
91
125
 
92
126
  #### 0.10.0
93
- * [6e829f1](../../commit/6e829f1) - __(Muhammet DILEK)__ bump version 0.10.0
94
- * [f73a240](../../commit/f73a240) - __(Muhammet DILEK)__ [#85](../../issues/85) hierapolis-rails version fixed
95
- * [49e4146](../../commit/49e4146) - __(Muhammet DILEK)__ [#85](../../issues/85) hierapolis-rails added
127
+ * [6e829f1](../../commit/6e829f1) - __(Muhammet DİLEK)__ bump version 0.10.0
128
+ * [f73a240](../../commit/f73a240) - __(Muhammet DİLEK)__ [#85](../../issues/85) hierapolis-rails version fixed
129
+ * [49e4146](../../commit/49e4146) - __(Muhammet DİLEK)__ [#85](../../issues/85) hierapolis-rails added
96
130
  * [0de956e](../../commit/0de956e) - __(Onur Ozgur OZKAN)__ [#78](../../issues/78) Add shoulda-context and show_for gems
97
131
  * [bf4ecab](../../commit/bf4ecab) - __(Onur Ozgur OZKAN)__ [#62](../../issues/62) good bye message.
98
132
  * [d40697a](../../commit/d40697a) - __(Onur Ozgur OZKAN)__ [#75](../../issues/75) Add rails-i18n gem
@@ -131,20 +165,20 @@ Conflicts:
131
165
 
132
166
 
133
167
  #### 0.8.0
134
- * [d4722f5](../../commit/d4722f5) - __(Muhammet DILEK)__ release version 0.8.0
135
- * [58bdb65](../../commit/58bdb65) - __(Muhammet DILEK)__ [#69](../../issues/69) paperclip added
136
- * [9186d02](../../commit/9186d02) - __(Muhammet DILEK)__ [#67](../../issues/67) admins url changed
137
- * [9ed2bc7](../../commit/9ed2bc7) - __(Muhammet DILEK)__ [#68](../../issues/68) will_paginate added
168
+ * [d4722f5](../../commit/d4722f5) - __(Muhammet DİLEK)__ release version 0.8.0
169
+ * [58bdb65](../../commit/58bdb65) - __(Muhammet DİLEK)__ [#69](../../issues/69) paperclip added
170
+ * [9186d02](../../commit/9186d02) - __(Muhammet DİLEK)__ [#67](../../issues/67) admins url changed
171
+ * [9ed2bc7](../../commit/9ed2bc7) - __(Muhammet DİLEK)__ [#68](../../issues/68) will_paginate added
138
172
 
139
173
  #### 0.7.0
140
174
  * [3c9a703](../../commit/3c9a703) - __(Onur Ozgur OZKAN)__ bump version 0.7.0
141
- * [e038328](../../commit/e038328) - __(Muhammet DILEK)__ typo fix
175
+ * [e038328](../../commit/e038328) - __(Muhammet DİLEK)__ typo fix
142
176
 
143
177
  Conflicts:
144
178
  lib/cybele/app_builder.rb
145
179
  lib/cybele/generators/app_generator.rb
146
180
 
147
- * [b67bed5](../../commit/b67bed5) - __(Muhammet DILEK)__ [#48](../../issues/48) [#49](../../issues/49) hq namespace added
181
+ * [b67bed5](../../commit/b67bed5) - __(Muhammet DİLEK)__ [#48](../../issues/48) [#49](../../issues/49) hq namespace added
148
182
  * [9800524](../../commit/9800524) - __(Onur Ozgur OZKAN)__ [#63](../../issues/63) add tr.yml
149
183
  * [50d52ba](../../commit/50d52ba) - __(Onur Ozgur OZKAN)__ [#63](../../issues/63) add simple_form.tr.yml
150
184
  * [bea7012](../../commit/bea7012) - __(Onur Ozgur OZKAN)__ [#63](../../issues/63) remove devise.en.yml
@@ -158,15 +192,15 @@ Conflicts:
158
192
  * [7773e3c](../../commit/7773e3c) - __(Onur Ozgur OZKAN)__ Merge remote-tracking branch 'origin/develop' into develop
159
193
  * [9cab0cc](../../commit/9cab0cc) - __(Onur Ozgur OZKAN)__ [#58](../../issues/58) add changelog.md
160
194
  * [37c8bef](../../commit/37c8bef) - __(Onur Ozgur OZKAN)__ [#58](../../issues/58) add changelog.md
161
- * [1c9cc61](../../commit/1c9cc61) - __(Muhammet DILEK)__ [#53](../../issues/53) welcome page added
162
- * [e656995](../../commit/e656995) - __(Onur zgr ZKAN)__ Merge pull request [#54](../../issues/54) from sbagdat/patch-1
195
+ * [1c9cc61](../../commit/1c9cc61) - __(Muhammet DİLEK)__ [#53](../../issues/53) welcome page added
196
+ * [e656995](../../commit/e656995) - __(Onur Özgür ÖZKAN)__ Merge pull request [#54](../../issues/54) from sbagdat/patch-1
163
197
 
164
198
  Remove unnecessary lines for ignoring mac files
165
- * [9d80dbf](../../commit/9d80dbf) - __(Stk Badat)__ Update cybele_gitignore
166
- * [6d6c585](../../commit/6d6c585) - __(Stk Badat)__ Remove unnecessary lines for ignoring mac files
199
+ * [9d80dbf](../../commit/9d80dbf) - __(Sıtkı Bağdat)__ Update cybele_gitignore
200
+ * [6d6c585](../../commit/6d6c585) - __(Sıtkı Bağdat)__ Remove unnecessary lines for ignoring mac files
167
201
 
168
202
  ```*.DS_Store``` and ```**/.DS_Store``` are not necessary to ignore mac filesystem dust. ```.DS_Store``` line is already enough to complete this task.
169
- * [72fdaca](../../commit/72fdaca) - __(Onur zgr ZKAN)__ typo fixed
203
+ * [72fdaca](../../commit/72fdaca) - __(Onur Özgür ÖZKAN)__ typo fixed
170
204
  * [016dd44](../../commit/016dd44) - __(Onur Ozgur OZKAN)__ typo fixed
171
205
 
172
206
  #### 0.6.0
@@ -178,96 +212,96 @@ Remove unnecessary lines for ignoring mac files
178
212
  Conflicts:
179
213
  templates/cybele_Gemfile
180
214
 
181
- * [efe0121](../../commit/efe0121) - __(Muhammet DILEK)__ [#51](../../issues/51) compass-rails added and application.css configuration
182
- * [0baf6fb](../../commit/0baf6fb) - __(Muhammet DILEK)__ [#2](../../issues/2) devise views converted erb to haml
183
- * [40fd639](../../commit/40fd639) - __(Muhammet DILEK)__ [#2](../../issues/2) devise and user model made mandatory
184
- * [9f8a199](../../commit/9f8a199) - __(Onur Ozgur OZKAN)__ [#13](../../issues/13) add version number to gems
185
- * [31b3693](../../commit/31b3693) - __(Murat Kemal BAYGN)__ [#13](../../issues/13) remove github repository option from exception_notification
186
- * [8c9007d](../../commit/8c9007d) - __(Muhammet DILEK)__ [#2](../../issues/2) devise added
187
- * [93ccbfe](../../commit/93ccbfe) - __(Muhammet DILEK)__ [#8](../../issues/8) add rails config
215
+ * [efe0121](../../commit/efe0121) - __(Muhammet DİLEK)__ [#51](../../issues/51) compass-rails added and application.css configuration
216
+ * [0baf6fb](../../commit/0baf6fb) - __(Muhammet DİLEK)__ [#2](../../issues/2) devise views converted erb to haml
217
+ * [40fd639](../../commit/40fd639) - __(Muhammet DİLEK)__ [#2](../../issues/2) devise and user model made mandatory
218
+ * [9f8a199](../../commit/9f8a199) - __(Onur Özgür ÖZKAN)__ [#13](../../issues/13) add version number to gems
219
+ * [31b3693](../../commit/31b3693) - __(Murat Kemal BAYGÜN)__ [#13](../../issues/13) remove github repository option from exception_notification
220
+ * [8c9007d](../../commit/8c9007d) - __(Muhammet DİLEK)__ [#2](../../issues/2) devise added
221
+ * [93ccbfe](../../commit/93ccbfe) - __(Muhammet DİLEK)__ [#8](../../issues/8) add rails config
188
222
 
189
223
  #### 0.5.0
190
- * [a8048e0](../../commit/a8048e0) - __(Onur Ozgur OZKAN)__ bump version 0.5.0
191
- * [699fd57](../../commit/699fd57) - __(Onur Ozgur OZKAN)__ [#46](../../issues/46) change gem path and description
192
- * [d03cb23](../../commit/d03cb23) - __(Onur Ozgur OZKAN)__ [#13](../../issues/13) add exception notification
193
- * [b7e4054](../../commit/b7e4054) - __(Onur Ozgur OZKAN)__ [#13](../../issues/13) add exception notification
194
- * [bfafbf1](../../commit/bfafbf1) - __(Onur zgr ZKAN)__ [#46](../../issues/46) fixed repo path
195
- * [7cf2df8](../../commit/7cf2df8) - __(Onur zgr ZKAN)__ [#35](../../issues/35) close exception notification
196
- * [20a81d4](../../commit/20a81d4) - __(Onur zgr ZKAN)__ [#24](../../issues/24) setup simple form
197
- * [a97c9ec](../../commit/a97c9ec) - __(Onur zgr ZKAN)__ [#24](../../issues/24) setup simple form
198
- * [9967bcc](../../commit/9967bcc) - __(Onur zgr ZKAN)__ [#35](../../issues/35) add exception notification
199
- * [26e1ac6](../../commit/26e1ac6) - __(Onur zgr ZKAN)__ [#40](../../issues/40) Add better_errors, sextant, etc for development env
200
- * [ac06ff6](../../commit/ac06ff6) - __(Onur zgr ZKAN)__ [#35](../../issues/35) Add smtp setting
201
- * [c8d4dc0](../../commit/c8d4dc0) - __(Onur zgr ZKAN)__ [#35](../../issues/35) Add smtp setting
202
- * [f9e05bb](../../commit/f9e05bb) - __(Onur zgr ZKAN)__ [#35](../../issues/35) Add smtp setting
203
- * [7fe8ce8](../../commit/7fe8ce8) - __(Onur zgr ZKAN)__ [#41](../../issues/41) Add suspender link to README.md
224
+ * [a8048e0](../../commit/a8048e0) - __(Onur Özgür ÖZKAN)__ bump version 0.5.0
225
+ * [699fd57](../../commit/699fd57) - __(Onur Özgür ÖZKAN)__ [#46](../../issues/46) change gem path and description
226
+ * [d03cb23](../../commit/d03cb23) - __(Onur Özgür ÖZKAN)__ [#13](../../issues/13) add exception notification
227
+ * [b7e4054](../../commit/b7e4054) - __(Onur Özgür ÖZKAN)__ [#13](../../issues/13) add exception notification
228
+ * [bfafbf1](../../commit/bfafbf1) - __(Onur Özgür ÖZKAN)__ [#46](../../issues/46) fixed repo path
229
+ * [7cf2df8](../../commit/7cf2df8) - __(Onur Özgür ÖZKAN)__ [#35](../../issues/35) close exception notification
230
+ * [20a81d4](../../commit/20a81d4) - __(Onur Özgür ÖZKAN)__ [#24](../../issues/24) setup simple form
231
+ * [a97c9ec](../../commit/a97c9ec) - __(Onur Özgür ÖZKAN)__ [#24](../../issues/24) setup simple form
232
+ * [9967bcc](../../commit/9967bcc) - __(Onur Özgür ÖZKAN)__ [#35](../../issues/35) add exception notification
233
+ * [26e1ac6](../../commit/26e1ac6) - __(Onur Özgür ÖZKAN)__ [#40](../../issues/40) Add better_errors, sextant, etc for development env
234
+ * [ac06ff6](../../commit/ac06ff6) - __(Onur Özgür ÖZKAN)__ [#35](../../issues/35) Add smtp setting
235
+ * [c8d4dc0](../../commit/c8d4dc0) - __(Onur Özgür ÖZKAN)__ [#35](../../issues/35) Add smtp setting
236
+ * [f9e05bb](../../commit/f9e05bb) - __(Onur Özgür ÖZKAN)__ [#35](../../issues/35) Add smtp setting
237
+ * [7fe8ce8](../../commit/7fe8ce8) - __(Onur Özgür ÖZKAN)__ [#41](../../issues/41) Add suspender link to README.md
204
238
 
205
239
  #### 0.4.1
206
- * [31252fa](../../commit/31252fa) - __(Onur zgr ZKAN)__ bump version 0.4.1
207
- * [c51d836](../../commit/c51d836) - __(Onur zgr ZKAN)__ Merge pull request [#43](../../issues/43) from sbagdat/patch-2
240
+ * [31252fa](../../commit/31252fa) - __(Onur Özgür ÖZKAN)__ bump version 0.4.1
241
+ * [c51d836](../../commit/c51d836) - __(Onur Özgür ÖZKAN)__ Merge pull request [#43](../../issues/43) from sbagdat/patch-2
208
242
 
209
243
  Update app_builder.rb thx @sbagdat
210
- * [d2cd41c](../../commit/d2cd41c) - __(Stk Badat)__ Remove unnecessary builds
244
+ * [d2cd41c](../../commit/d2cd41c) - __(Sıtkı Bağdat)__ Remove unnecessary builds
211
245
 
212
246
  Removed 'remove_public_index' and 'remove_rails_logo_image' methods.
213
- * [d01978f](../../commit/d01978f) - __(Stk Badat)__ Update app_builder.rb
247
+ * [d01978f](../../commit/d01978f) - __(Sıtkı Bağdat)__ Update app_builder.rb
214
248
 
215
249
  In Rails 4, 'public/index.html' and 'rails.png' files are don't exist. A new Rails internal controller Rails::WelcomeController has been used to serve the dynamic welcome screen and rails.png image used as data-image. So I removed these lines from the file.
216
250
 
217
251
  #### 0.4.0
218
- * [a92094c](../../commit/a92094c) - __(Onur zgr ZKAN)__ bump version 0.4.0
219
- * [f34206c](../../commit/f34206c) - __(Onur zgr ZKAN)__ [#35](../../issues/35) setup smtp, setup open_letter
220
- * [958bf5f](../../commit/958bf5f) - __(Onur zgr ZKAN)__ [#34](../../issues/34) convert application.js to coffee and application.css to sass
221
- * [0fcd684](../../commit/0fcd684) - __(Onur zgr ZKAN)__ [#34](../../issues/34) generator generate sass instead of scss
222
- * [cff434e](../../commit/cff434e) - __(Onur zgr ZKAN)__ [#34](../../issues/34) add bootstrap-sass gem
223
- * [97c83ba](../../commit/97c83ba) - __(Onur zgr ZKAN)__ [#37](../../issues/37) setup gitignore files and folders
224
- * [8f19ab2](../../commit/8f19ab2) - __(Onur zgr ZKAN)__ [#38](../../issues/38) fixed strong_parameters generators
225
- * [fe6b961](../../commit/fe6b961) - __(Onur zgr ZKAN)__ typo fixed
226
- * [2e370a3](../../commit/2e370a3) - __(Onur zgr ZKAN)__ [#36](../../issues/36) setup database.yml and run rake db:create
227
- * [14d7005](../../commit/14d7005) - __(Onur zgr ZKAN)__ [#27](../../issues/27) add gemnasium service link
228
- * [5af5c04](../../commit/5af5c04) - __(Onur zgr ZKAN)__ [#25](../../issues/25) add responder gem to cybele
252
+ * [a92094c](../../commit/a92094c) - __(Onur Özgür ÖZKAN)__ bump version 0.4.0
253
+ * [f34206c](../../commit/f34206c) - __(Onur Özgür ÖZKAN)__ [#35](../../issues/35) setup smtp, setup open_letter
254
+ * [958bf5f](../../commit/958bf5f) - __(Onur Özgür ÖZKAN)__ [#34](../../issues/34) convert application.js to coffee and application.css to sass
255
+ * [0fcd684](../../commit/0fcd684) - __(Onur Özgür ÖZKAN)__ [#34](../../issues/34) generator generate sass instead of scss
256
+ * [cff434e](../../commit/cff434e) - __(Onur Özgür ÖZKAN)__ [#34](../../issues/34) add bootstrap-sass gem
257
+ * [97c83ba](../../commit/97c83ba) - __(Onur Özgür ÖZKAN)__ [#37](../../issues/37) setup gitignore files and folders
258
+ * [8f19ab2](../../commit/8f19ab2) - __(Onur Özgür ÖZKAN)__ [#38](../../issues/38) fixed strong_parameters generators
259
+ * [fe6b961](../../commit/fe6b961) - __(Onur Özgür ÖZKAN)__ typo fixed
260
+ * [2e370a3](../../commit/2e370a3) - __(Onur Özgür ÖZKAN)__ [#36](../../issues/36) setup database.yml and run rake db:create
261
+ * [14d7005](../../commit/14d7005) - __(Onur Özgür ÖZKAN)__ [#27](../../issues/27) add gemnasium service link
262
+ * [5af5c04](../../commit/5af5c04) - __(Onur Özgür ÖZKAN)__ [#25](../../issues/25) add responder gem to cybele
229
263
 
230
264
  #### 0.3.0
231
- * [7bdee87](../../commit/7bdee87) - __(Onur zgr ZKAN)__ bump version
232
- * [3a7d93f](../../commit/3a7d93f) - __(Onur zgr ZKAN)__ [#33](../../issues/33) update README.md
265
+ * [7bdee87](../../commit/7bdee87) - __(Onur Özgür ÖZKAN)__ bump version
266
+ * [3a7d93f](../../commit/3a7d93f) - __(Onur Özgür ÖZKAN)__ [#33](../../issues/33) update README.md
233
267
 
234
268
  add semver.org
235
269
  add tocdoc.org
236
270
 
237
- * [4b13eee](../../commit/4b13eee) - __(Onur zgr ZKAN)__ [#27](../../issues/27) add codeclimate
238
- * [ea548ad](../../commit/ea548ad) - __(Onur zgr ZKAN)__ [#32](../../issues/32) remove rails logo
239
- * [69dc256](../../commit/69dc256) - __(Onur zgr ZKAN)__ fixed Gemfile.lock
271
+ * [4b13eee](../../commit/4b13eee) - __(Onur Özgür ÖZKAN)__ [#27](../../issues/27) add codeclimate
272
+ * [ea548ad](../../commit/ea548ad) - __(Onur Özgür ÖZKAN)__ [#32](../../issues/32) remove rails logo
273
+ * [69dc256](../../commit/69dc256) - __(Onur Özgür ÖZKAN)__ fixed Gemfile.lock
240
274
 
241
275
  #### 0.2.0
242
- * [bb991e1](../../commit/bb991e1) - __(Onur zgr ZKAN)__ Bump version.
243
- * [ebff69d](../../commit/ebff69d) - __(Onur zgr ZKAN)__ issue [#26](../../issues/26) replace files erb to haml
244
- * [853260b](../../commit/853260b) - __(Onur zgr ZKAN)__ issue [#31](../../issues/31) fixed Gemfile
245
- * [593304f](../../commit/593304f) - __(Onur zgr ZKAN)__ issue [#31](../../issues/31) replace Gemfile
246
- * [29ddfb9](../../commit/29ddfb9) - __(Onur zgr ZKAN)__ issue [#30](../../issues/30) add all rdoc
247
- * [1af93d1](../../commit/1af93d1) - __(Onur zgr ZKAN)__ issue [#29](../../issues/29) fixed Does it try to require a relative path? That's been removed in Ruby 1.9.
248
- * [204d7df](../../commit/204d7df) - __(Onur zgr ZKAN)__ support new release over rails 4.0.0.rc1
249
- * [311dd0a](../../commit/311dd0a) - __(Onur zgr ZKAN)__ issue [#23](../../issues/23) improved readme.md
276
+ * [bb991e1](../../commit/bb991e1) - __(Onur Özgür ÖZKAN)__ Bump version.
277
+ * [ebff69d](../../commit/ebff69d) - __(Onur Özgür ÖZKAN)__ issue [#26](../../issues/26) replace files erb to haml
278
+ * [853260b](../../commit/853260b) - __(Onur Özgür ÖZKAN)__ issue [#31](../../issues/31) fixed Gemfile
279
+ * [593304f](../../commit/593304f) - __(Onur Özgür ÖZKAN)__ issue [#31](../../issues/31) replace Gemfile
280
+ * [29ddfb9](../../commit/29ddfb9) - __(Onur Özgür ÖZKAN)__ issue [#30](../../issues/30) add all rdoc
281
+ * [1af93d1](../../commit/1af93d1) - __(Onur Özgür ÖZKAN)__ issue [#29](../../issues/29) fixed Does it try to require a relative path? That's been removed in Ruby 1.9.
282
+ * [204d7df](../../commit/204d7df) - __(Onur Özgür ÖZKAN)__ support new release over rails 4.0.0.rc1
283
+ * [311dd0a](../../commit/311dd0a) - __(Onur Özgür ÖZKAN)__ issue [#23](../../issues/23) improved readme.md
250
284
 
251
285
  - fix typo
252
286
  - improve using section
253
287
 
254
- * [370e0be](../../commit/370e0be) - __(Onur zgr ZKAN)__ issue [#22](../../issues/22) add rdoc rake task
288
+ * [370e0be](../../commit/370e0be) - __(Onur Özgür ÖZKAN)__ issue [#22](../../issues/22) add rdoc rake task
255
289
 
256
290
  #### 0.1.0
257
- * [282b70c](../../commit/282b70c) - __(Onur zgr ZKAN)__ Issues [#19](../../issues/19) [#20](../../issues/20) [#21](../../issues/21) Create a gem
291
+ * [282b70c](../../commit/282b70c) - __(Onur Özgür ÖZKAN)__ Issues [#19](../../issues/19) [#20](../../issues/20) [#21](../../issues/21) Create a gem
258
292
 
259
293
  - Generate Rails 4.x
260
294
  - Add README.md
261
295
  - Remove public/index.html
262
296
  - Remove README.rdoc
263
297
 
264
- * [eca13d5](../../commit/eca13d5) - __(Onur zgr ZKAN)__ Update README.md
265
- * [002ff21](../../commit/002ff21) - __(Onur zgr ZKAN)__ Update README.md
266
- * [be3c6a7](../../commit/be3c6a7) - __(Onur zgr ZKAN)__ Update README.md
267
- * [ae5bbe2](../../commit/ae5bbe2) - __(Onur zgr ZKAN)__ add responders
268
- * [4da6960](../../commit/4da6960) - __(Onur zgr ZKAN)__ add devise and simple_form gem
269
- * [eaaa1cd](../../commit/eaaa1cd) - __(Onur zgr ZKAN)__ Remove MIT license just now.
270
- * [9ec3295](../../commit/9ec3295) - __(Onur zgr ZKAN)__ Update README.md
271
- * [143d255](../../commit/143d255) - __(Onur zgr ZKAN)__ Update README.md
272
- * [9a14185](../../commit/9a14185) - __(Onur zgr ZKAN)__ Update README.md
273
- * [f45360e](../../commit/f45360e) - __(Onur zgr ZKAN)__ Initial commit
298
+ * [eca13d5](../../commit/eca13d5) - __(Onur Özgür ÖZKAN)__ Update README.md
299
+ * [002ff21](../../commit/002ff21) - __(Onur Özgür ÖZKAN)__ Update README.md
300
+ * [be3c6a7](../../commit/be3c6a7) - __(Onur Özgür ÖZKAN)__ Update README.md
301
+ * [ae5bbe2](../../commit/ae5bbe2) - __(Onur Özgür ÖZKAN)__ add responders
302
+ * [4da6960](../../commit/4da6960) - __(Onur Özgür ÖZKAN)__ add devise and simple_form gem
303
+ * [eaaa1cd](../../commit/eaaa1cd) - __(Onur Özgür ÖZKAN)__ Remove MIT license just now.
304
+ * [9ec3295](../../commit/9ec3295) - __(Onur Özgür ÖZKAN)__ Update README.md
305
+ * [143d255](../../commit/143d255) - __(Onur Özgür ÖZKAN)__ Update README.md
306
+ * [9a14185](../../commit/9a14185) - __(Onur Özgür ÖZKAN)__ Update README.md
307
+ * [f45360e](../../commit/f45360e) - __(Onur Özgür ÖZKAN)__ Initial commit
@@ -1,4 +1,4 @@
1
- Copyright (c) 2014 lab2023 - information technologies
1
+ Copyright © 2013-2015 lab2023 - information technologies
2
2
 
3
3
  MIT License
4
4
 
@@ -19,4 +19,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
19
  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
20
  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
21
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -13,8 +13,8 @@ western colonies from around the 6th century BCE.
13
13
 
14
14
  Before generating your application, you will need:
15
15
 
16
- * Ruby ~> 2.0
17
- * Rails ~> 4.0
16
+ * Ruby ~> 2.2
17
+ * Rails ~> 4.2
18
18
 
19
19
  ## Usage
20
20
 
@@ -25,15 +25,21 @@ gem install cybele
25
25
  cybele project_name
26
26
  ```
27
27
 
28
+ When the initialization is completed, there will be pending migrations. Run the rake command to execute them if you want:
29
+
30
+ ```bash
31
+ rake db:migrate
32
+ ```
33
+
28
34
  ## What cybele do and included?
29
35
 
30
- Let's look the [Gemfile](https://raw.github.com/kebab-project/cybele/develop/templates/cybele_Gemfile) which created by cybele.
36
+ Let's look the [Gemfile](https://raw.github.com/lab2023/cybele/develop/templates/cybele_Gemfile) which created by cybele.
31
37
 
32
38
  ## Bugs and Feedback
33
39
 
34
40
  If you discover any bugs or want to drop a line, feel free to create an issue on GitHub.
35
41
 
36
- http://github.com/kebab-project/cybele/issues
42
+ http://github.com/lab2023/cybele/issues
37
43
 
38
44
  ## Contributing
39
45
 
@@ -52,10 +58,10 @@ Once you've made your great commits:
52
58
  ![lab2023](http://lab2023.com/assets/images/named-logo.png)
53
59
 
54
60
  - Cybele is maintained and funded by [lab2023 - information technologies](http://lab2023.com/)
55
- - Thank you to all the [contributors!](https://github.com/kebab-project/cybele/graphs/contributors)
61
+ - Thank you to all the [contributors!](../../graphs/contributors)
56
62
  - This gem is inspired from [suspender](https://github.com/thoughtbot/suspenders)
57
63
  - The names and logos for lab2023 are trademarks of lab2023, inc.
58
64
 
59
65
  ## License
60
66
 
61
- Copyright 2014 lab2023 - information technologies
67
+ Copyright © 2013-2015 [lab2023 - information technologies](http://lab2023.com)