forked from spree/spree
-
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.
SPREE_VERSION removed, total cleanup of gemspecs and rakefiles, spree…
….yml generation removed
- Loading branch information
1 parent
8c6707c
commit 8404b8f
Showing
19 changed files
with
110 additions
and
210 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 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
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,22 +1,22 @@ | ||
# -*- encoding: utf-8 -*- | ||
version = File.read(File.expand_path("../../SPREE_VERSION", __FILE__)).strip | ||
require_relative '../core/lib/spree/core/version.rb' | ||
|
||
Gem::Specification.new do |gem| | ||
gem.authors = ["Ryan Bigg"] | ||
gem.email = ["[email protected]"] | ||
gem.description = %q{Spree's API} | ||
gem.summary = %q{Spree's API} | ||
gem.homepage = 'https://spreecommerce.com' | ||
gem.license = %q{BSD-3} | ||
Gem::Specification.new do |s| | ||
s.authors = ["Ryan Bigg"] | ||
s.email = ["[email protected]"] | ||
s.description = %q{Spree's API} | ||
s.summary = %q{Spree's API} | ||
s.homepage = 'https://spreecommerce.com' | ||
s.license = 'BSD-3' | ||
|
||
gem.files = `git ls-files`.split($\) | ||
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } | ||
gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) | ||
gem.name = "spree_api" | ||
gem.require_paths = ["lib"] | ||
gem.version = version | ||
s.files = `git ls-files`.split($\) | ||
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) } | ||
s.test_files = s.files.grep(%r{^(test|spec|features)/}) | ||
s.name = "spree_api" | ||
s.require_paths = ["lib"] | ||
s.version = Spree.version | ||
|
||
gem.add_dependency 'spree_core', version | ||
gem.add_dependency 'rabl', '~> 0.11.6' | ||
gem.add_dependency 'versioncake', '~> 2.3.1' | ||
s.add_dependency 'spree_core', s.version | ||
s.add_dependency 'rabl', '~> 0.11.6' | ||
s.add_dependency 'versioncake', '~> 2.3.1' | ||
end |
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 |
---|---|---|
@@ -1,25 +1,25 @@ | ||
# encoding: UTF-8 | ||
version = File.read(File.expand_path("../../SPREE_VERSION", __FILE__)).strip | ||
require_relative '../core/lib/spree/core/version.rb' | ||
|
||
Gem::Specification.new do |s| | ||
s.platform = Gem::Platform::RUBY | ||
s.name = 'spree_backend' | ||
s.version = version | ||
s.version = Spree.version | ||
s.summary = 'backend e-commerce functionality for the Spree project.' | ||
s.description = 'Required dependency for Spree' | ||
|
||
s.author = 'Sean Schofield' | ||
s.email = '[email protected]' | ||
s.homepage = 'https://spreecommerce.com' | ||
s.license = %q{BSD-3} | ||
s.license = 'BSD-3' | ||
s.rubyforge_project = 'spree_backend' | ||
|
||
s.files = `git ls-files`.split("\n") | ||
s.require_path = 'lib' | ||
s.requirements << 'none' | ||
|
||
s.add_dependency 'spree_api', version | ||
s.add_dependency 'spree_core', version | ||
s.add_dependency 'spree_api', s.version | ||
s.add_dependency 'spree_core', s.version | ||
|
||
s.add_dependency 'bootstrap-sass', '~> 3.3' | ||
s.add_dependency 'jquery-rails', '~> 4.1' | ||
|
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
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,14 +1,14 @@ | ||
# -*- encoding: utf-8 -*- | ||
$:.push File.expand_path("../lib", __FILE__) | ||
version = File.read(File.expand_path("../../SPREE_VERSION", __FILE__)).strip | ||
require_relative '../core/lib/spree/core/version.rb' | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "spree_cmd" | ||
s.version = version | ||
s.version = Spree.version | ||
s.authors = ["Chris Mar"] | ||
s.email = ["[email protected]"] | ||
s.homepage = "http://spreecommerce.com" | ||
s.license = %q{BSD-3} | ||
s.license = 'BSD-3' | ||
s.summary = %q{Spree Commerce command line utility} | ||
s.description = %q{tools to create new Spree stores and extensions} | ||
|
||
|
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
Oops, something went wrong.