forked from kristianmandrup/pie-rails
-
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.
Updated gemspec, added rvm config, updated gitignore for IDEA ide
- Loading branch information
1 parent
2619b28
commit 75227bc
Showing
6 changed files
with
84 additions
and
40 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,3 +47,7 @@ pkg | |
|
||
# For rubinius: | ||
#*.rbc | ||
|
||
# For JetBrains: | ||
.idea | ||
.idea/ |
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 @@ | ||
pie-rails |
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 @@ | ||
ruby-1.9.3-p547 |
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 |
---|---|---|
|
@@ -6,21 +6,23 @@ begin | |
Bundler.setup(:default, :development) | ||
rescue Bundler::BundlerError => e | ||
$stderr.puts e.message | ||
$stderr.puts "Run `bundle install` to install missing gems" | ||
$stderr.puts 'Run `bundle install` to install missing gems' | ||
exit e.status_code | ||
end | ||
require 'rake' | ||
|
||
require 'jeweler' | ||
Jeweler::Tasks.new do |gem| | ||
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options | ||
gem.name = "pie-rails" | ||
gem.homepage = "http://github.com/kristianmandrup/pie-rails" | ||
gem.name = 'pie-rails' | ||
gem.homepage = "http://css3pie.com/" | ||
# gem.homepage = "http://github.com/kristianmandrup/pie-rails" | ||
gem.license = "MIT" | ||
gem.summary = %Q{Progressive Internet Explorer (PIE) ready for use with Rails asset pipeline} | ||
gem.description = %Q{Use PIE in your Rails apps :)} | ||
gem.email = "[email protected]" | ||
gem.authors = ["Kristian Mandrup"] | ||
gem.version = '1.2.0' | ||
# dependencies defined in Gemfile | ||
end | ||
Jeweler::RubygemsDotOrgTasks.new | ||
|
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 |
---|---|---|
|
@@ -2,14 +2,16 @@ | |
# DO NOT EDIT THIS FILE DIRECTLY | ||
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' | ||
# -*- encoding: utf-8 -*- | ||
# stub: pie-rails 1.2.0 ruby lib | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "pie-rails" | ||
s.version = "1.1.0" | ||
s.version = "1.2.0" | ||
|
||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | ||
s.require_paths = ["lib"] | ||
s.authors = ["Kristian Mandrup"] | ||
s.date = "2012-08-28" | ||
s.date = "2014-10-03" | ||
s.description = "Use PIE in your Rails apps :)" | ||
s.email = "[email protected]" | ||
s.extra_rdoc_files = [ | ||
|
@@ -19,6 +21,8 @@ Gem::Specification.new do |s| | |
s.files = [ | ||
".document", | ||
".rspec", | ||
".ruby-gemset", | ||
".ruby-version", | ||
"Gemfile", | ||
"Gemfile.lock", | ||
"LICENSE.txt", | ||
|
@@ -29,28 +33,20 @@ Gem::Specification.new do |s| | |
"pie-rails.gemspec", | ||
"spec/pie-rails_spec.rb", | ||
"spec/spec_helper.rb", | ||
"vendor/assets/javascripts/IE7.js", | ||
"vendor/assets/javascripts/IE8.js", | ||
"vendor/assets/javascripts/IE9.js", | ||
"vendor/assets/javascripts/PIE.htc", | ||
"vendor/assets/javascripts/PIE.js", | ||
"vendor/assets/javascripts/blank.gif", | ||
"vendor/assets/javascripts/boxsizing.htc", | ||
"vendor/assets/javascripts/ie7-recalc.js", | ||
"vendor/assets/javascripts/ie7-squish.js", | ||
"vendor/assets/javascripts/jquery.text-overflow.js", | ||
"vendor/assets/javascripts/jquery.text-overflow.min.js", | ||
"vendor/assets/javascripts/jquery.textshadow.js", | ||
"vendor/assets/javascripts/jquery.textshadow.min.js" | ||
"vendor/assets/javascripts/PIE_IE678.js", | ||
"vendor/assets/javascripts/PIE_IE678_uncompressed.js", | ||
"vendor/assets/javascripts/PIE_IE9.js", | ||
"vendor/assets/javascripts/PIE_IE9_uncompressed.js", | ||
"vendor/assets/javascripts/PIE_uncompressed.htc" | ||
] | ||
s.homepage = "http://github.com/kristianmandrup/pie-rails" | ||
s.homepage = "http://css3pie.com/" | ||
s.licenses = ["MIT"] | ||
s.require_paths = ["lib"] | ||
s.rubygems_version = "1.8.24" | ||
s.rubygems_version = "2.2.2" | ||
s.summary = "Progressive Internet Explorer (PIE) ready for use with Rails asset pipeline" | ||
|
||
if s.respond_to? :specification_version then | ||
s.specification_version = 3 | ||
s.specification_version = 4 | ||
|
||
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then | ||
s.add_development_dependency(%q<rspec>, [">= 2.8.0"]) | ||
|