mix-rails-settings 0.26.1 → 0.26.2

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: c0f58cde1049fb27c8b34eab7ed3ecb975424db5
4
- data.tar.gz: 8d88a3daf615f68f9ca7c8ea636b8b871292da06
3
+ metadata.gz: fcc2aecafb6ff52ca9c08228fd8d967159f123c8
4
+ data.tar.gz: 276e37b14c577f749c6f2f11aa3dceb83fa377b4
5
5
  SHA512:
6
- metadata.gz: c2c8e92e825880af5329a79e86f91c24f490f85714f75b902e48ae713ead7acc48851d7b8d86a04ed709f031a4ba31d20563a6ebc0311596a4547d0d998572de
7
- data.tar.gz: 3c98c35084db416a5096a8b39e9b70d431f77ab8243eb4b4ab37a9aa32f342ac3f3501461809b47e76d29d65d0eca46adbe98845774ca90929d0e81701e85995
6
+ metadata.gz: ec948ec43a299e3fe51bf73c8472ff5dcb188bbea75755693ac7e516b76c1d2825e740c644bbd01f2c8fe68e3605da7b9f8a17e90b653cecc6cacd095a1390ce
7
+ data.tar.gz: cd1eb81e613ebbee2992e94c0ecfeb3c095bcf250ea96801b799574260e6dd5102241177eae1b1958d647e7ca9208d78c1bf0665a590fff2172baec912b0f6c7
data/db/seeds.rb ADDED
@@ -0,0 +1,2 @@
1
+ Setting.create({name: 'Application title', key: 'app_title', value: 'Mix-Rails', activated: true, system: true})
2
+ Setting.create({name: 'Application e-mail', key: 'app_email', value: 'mixrails@example.com', activated: true, system: true})
@@ -2,7 +2,7 @@ module MixRailsSettings
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 26
5
- TINY = 1
5
+ TINY = 2
6
6
  PRE = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mix-rails-settings
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.26.1
4
+ version: 0.26.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sadjow Leão
@@ -45,6 +45,7 @@ files:
45
45
  - config/locales/settings.pt-BR.yml
46
46
  - config/locales/settings.en.yml
47
47
  - config/routes.rb
48
+ - db/seeds.rb
48
49
  - db/migrate/20130206201915_create_settings.rb
49
50
  - db/migrate/20130206212203_add_image_to_setting.rb
50
51
  - lib/tasks/settings_tasks.rake