Skip to content
Prev Previous commit
Next Next commit
Change specification variable name
  • Loading branch information
michael-misshore committed Dec 29, 2017
commit 7fdb7f646bc645a6b5ca617c382bf7602f439a75
28 changes: 14 additions & 14 deletions critical-path-css-rails.gemspec
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
require File.expand_path('../lib/critical_path_css/rails/version', __FILE__)

Gem::Specification.new do |s|
s.name = 'critical-path-css-rails'
s.version = CriticalPathCSS::Rails::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Michael Misshore']
s.email = '[email protected]'
s.summary = 'Critical Path CSS for Rails!'
s.description = 'Only load the CSS you need for the initial viewport in Rails!'
s.license = 'MIT'
Gem::Specification.new do |gem|
gem.name = 'critical-path-css-rails'
gem.version = CriticalPathCSS::Rails::VERSION
gem.platform = Gem::Platform::RUBY
gem.authors = ['Michael Misshore']
gem.email = '[email protected]'
gem.summary = 'Critical Path CSS for Rails!'
gem.description = 'Only load the CSS you need for the initial viewport in Rails!'
gem.license = 'MIT'

s.files = `git ls-files`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_path = 'lib'
gem.files = `git ls-files`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
gem.require_path = 'lib'

s.add_development_dependency 'rspec', '~> 3.7'
gem.add_development_dependency 'rspec', '~> 3.7'

s.extensions = ['ext/npm/extconf.rb']
gem.extensions = ['ext/npm/extconf.rb']
end