spree_dynamic_sitemaps 0.50.0 → 0.50.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,6 +1,6 @@
1
1
  require 'spree_core'
2
2
 
3
- module DynamicSitemaps
3
+ module SpreeDynamicSitemaps
4
4
  class Engine < Rails::Engine
5
5
 
6
6
  config.autoload_paths += %W(#{config.root}/lib)
@@ -1,14 +1,14 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.platform = Gem::Platform::RUBY
3
3
  s.name = 'spree_dynamic_sitemaps'
4
- s.version = '0.50.0'
4
+ s.version = '0.50.1'
5
5
  s.summary = 'Google sitemap for Spree stores'
6
6
  #s.description = 'Add (optional) gem description here'
7
7
  s.required_ruby_version = '>= 1.8.7'
8
8
 
9
9
  s.author = 'bzt'
10
10
  # s.email = ''
11
- # s.homepage = ''
11
+ s.homepage = 'https://github.com/romul/spree_dynamic_sitemaps'
12
12
  # s.rubyforge_project = ''
13
13
 
14
14
  s.files = `git ls-files`.split("\n")
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 50
8
- - 0
9
- version: 0.50.0
8
+ - 1
9
+ version: 0.50.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - bzt
@@ -35,12 +35,11 @@ files:
35
35
  - app/views/sitemap/index.text.erb
36
36
  - app/views/sitemap/index.xml.builder
37
37
  - config/routes.rb
38
- - lib/dynamic_sitemaps.rb
39
- - lib/tasks/dynamic_sitemaps.rake
38
+ - lib/spree_dynamic_sitemaps.rb
40
39
  - lib/tasks/install.rake
41
40
  - spree_dynamic_sitemaps.gemspec
42
41
  has_rdoc: true
43
- homepage:
42
+ homepage: https://github.com/romul/spree_dynamic_sitemaps
44
43
  licenses: []
45
44
 
46
45
  post_install_message:
@@ -1,10 +0,0 @@
1
- namespace :db do
2
- desc "Bootstrap your database for Spree."
3
- task :bootstrap => :environment do
4
- # load initial database fixtures (in db/sample/*.yml) into the current environment's database
5
- ActiveRecord::Base.establish_connection(RAILS_ENV.to_sym)
6
- Dir.glob(File.join(DynamicSitemaps.root, "db", 'sample', '*.{yml,csv}')).each do |fixture_file|
7
- Fixtures.create_fixtures("#{DynamicSitemaps.root}/db/sample", File.basename(fixture_file, '.*'))
8
- end
9
- end
10
- end