forked from rupix/spree_city_zones
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6a97fb4
commit 491c391
Showing
7 changed files
with
16 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Deface::Override.new( | ||
:name => "add_cities_to_admin_configuration_index", | ||
:virtual_path => "admin/configuration/index", | ||
:insert_bottom => "[data-hook='admin_configurations_menu']", | ||
:partial => "shared/cities_admin_configurations_menu") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,19 @@ | ||
Gem::Specification.new do |s| | ||
s.platform = Gem::Platform::RUBY | ||
s.name = 'spree_city_zones' | ||
s.version = '0.60.0' | ||
s.summary = 'Add gem summary here' | ||
s.description = 'Add (optional) gem description here' | ||
s.version = '0.70.0' | ||
s.summary = 'Spree extension providing tax zones based on city name' | ||
s.description = 'This spree extension helps with setting up tax zones based on city name. It should be useful for setting up the different tax zones as mandated by Calinfornia state law in the United States.' | ||
s.required_ruby_version = '>= 1.8.7' | ||
|
||
s.author = 'Mark Linn' | ||
s.email = '[email protected]' | ||
# s.homepage = 'http://www.rubyonrails.org' | ||
# s.rubyforge_project = 'actionmailer' | ||
|
||
s.files = `git ls-files`.split("\n") | ||
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") | ||
s.require_path = 'lib' | ||
s.requirements << 'none' | ||
|
||
s.add_dependency('spree_core', '>= 0.60.0') | ||
s.add_dependency('spree_core', '~> 0.70.0') | ||
s.add_dependency('rails', '~> 3.1.1') | ||
end |