mirror of
https://github.com/jimeh/time_ext.git
synced 2026-02-19 05:16:40 +00:00
switched to using bundle's own gemspec format
instead of jeweler
This commit is contained in:
7
.gitignore
vendored
7
.gitignore
vendored
@@ -16,9 +16,10 @@ tmtags
|
|||||||
## PROJECT::GENERAL
|
## PROJECT::GENERAL
|
||||||
coverage
|
coverage
|
||||||
rdoc
|
rdoc
|
||||||
pkg
|
pkg/*
|
||||||
|
*.gem
|
||||||
|
.bundle
|
||||||
|
|
||||||
## PROJECT::SPECIFIC
|
## PROJECT::SPECIFIC
|
||||||
.yardoc/*
|
.yardoc
|
||||||
*.gemspec
|
|
||||||
doc/*
|
doc/*
|
||||||
|
|||||||
5
Gemfile
5
Gemfile
@@ -1,10 +1,9 @@
|
|||||||
source 'http://rubygems.org/'
|
source 'http://rubygems.org/'
|
||||||
|
|
||||||
gem 'activesupport', '>= 2.3.0'
|
# Specify your gem's dependencies in time_ext.gemspec
|
||||||
gem 'i18n', '>= 0.4.2'
|
gemspec
|
||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
gem 'jeweler', '>= 1.4.0'
|
|
||||||
gem 'rspec', '>= 2.1.0'
|
gem 'rspec', '>= 2.1.0'
|
||||||
gem 'yard', '>= 0.6.3'
|
gem 'yard', '>= 0.6.3'
|
||||||
end
|
end
|
||||||
|
|||||||
18
Gemfile.lock
18
Gemfile.lock
@@ -1,16 +1,16 @@
|
|||||||
|
PATH
|
||||||
|
remote: .
|
||||||
|
specs:
|
||||||
|
time_ext (0.2.7)
|
||||||
|
activesupport (>= 2.3.0)
|
||||||
|
i18n (>= 0.4.2)
|
||||||
|
|
||||||
GEM
|
GEM
|
||||||
remote: http://rubygems.org/
|
remote: http://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
activesupport (3.0.3)
|
activesupport (3.0.3)
|
||||||
diff-lcs (1.1.2)
|
diff-lcs (1.1.2)
|
||||||
gemcutter (0.6.1)
|
|
||||||
git (1.2.5)
|
|
||||||
i18n (0.4.2)
|
i18n (0.4.2)
|
||||||
jeweler (1.4.0)
|
|
||||||
gemcutter (>= 0.1.0)
|
|
||||||
git (>= 1.2.5)
|
|
||||||
rubyforge (>= 2.0.0)
|
|
||||||
json_pure (1.4.6)
|
|
||||||
rspec (2.1.0)
|
rspec (2.1.0)
|
||||||
rspec-core (~> 2.1.0)
|
rspec-core (~> 2.1.0)
|
||||||
rspec-expectations (~> 2.1.0)
|
rspec-expectations (~> 2.1.0)
|
||||||
@@ -19,8 +19,6 @@ GEM
|
|||||||
rspec-expectations (2.1.0)
|
rspec-expectations (2.1.0)
|
||||||
diff-lcs (~> 1.1.2)
|
diff-lcs (~> 1.1.2)
|
||||||
rspec-mocks (2.1.0)
|
rspec-mocks (2.1.0)
|
||||||
rubyforge (2.0.4)
|
|
||||||
json_pure (>= 1.1.7)
|
|
||||||
yard (0.6.3)
|
yard (0.6.3)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
@@ -29,6 +27,6 @@ PLATFORMS
|
|||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
activesupport (>= 2.3.0)
|
activesupport (>= 2.3.0)
|
||||||
i18n (>= 0.4.2)
|
i18n (>= 0.4.2)
|
||||||
jeweler (>= 1.4.0)
|
|
||||||
rspec (>= 2.1.0)
|
rspec (>= 2.1.0)
|
||||||
|
time_ext!
|
||||||
yard (>= 0.6.3)
|
yard (>= 0.6.3)
|
||||||
|
|||||||
48
Rakefile
48
Rakefile
@@ -1,27 +1,11 @@
|
|||||||
require 'rubygems'
|
require 'bundler'
|
||||||
require 'rake'
|
Bundler::GemHelper.install_tasks
|
||||||
|
|
||||||
begin
|
|
||||||
require 'jeweler'
|
|
||||||
Jeweler::Tasks.new do |gem|
|
|
||||||
gem.name = "time_ext"
|
|
||||||
gem.summary = %Q{Extends the abilities of Ruby's built-in Time class by building on top of ActiveSupport.}
|
|
||||||
gem.description = %Q{Extends the abilities of Ruby's built-in Time class by building on top of ActiveSupport.}
|
|
||||||
gem.email = "contact@jimeh.me"
|
|
||||||
gem.homepage = "http://github.com/jimeh/time_ext"
|
|
||||||
gem.authors = ["Jim Myhrberg"]
|
|
||||||
gem.add_dependency 'activesupport', '>= 2.3.0'
|
|
||||||
gem.add_dependency 'i18n', '>= 0.4.2'
|
|
||||||
gem.add_development_dependency 'jeweler', '>= 1.4.0'
|
|
||||||
gem.add_development_dependency 'rspec', '>= 2.1.0'
|
|
||||||
gem.add_development_dependency 'yard', '>= 0.6.3'
|
|
||||||
end
|
|
||||||
Jeweler::GemcutterTasks.new
|
|
||||||
rescue LoadError
|
|
||||||
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
|
||||||
end
|
|
||||||
|
|
||||||
|
#
|
||||||
# Rspec
|
# Rspec
|
||||||
|
#
|
||||||
|
|
||||||
require 'rspec/core/rake_task'
|
require 'rspec/core/rake_task'
|
||||||
RSpec::Core::RakeTask.new(:spec) do |spec|
|
RSpec::Core::RakeTask.new(:spec) do |spec|
|
||||||
spec.pattern = 'spec/**/*_spec.rb'
|
spec.pattern = 'spec/**/*_spec.rb'
|
||||||
@@ -32,15 +16,12 @@ RSpec::Core::RakeTask.new(:rcov) do |spec|
|
|||||||
spec.rcov = true
|
spec.rcov = true
|
||||||
end
|
end
|
||||||
|
|
||||||
task :spec => :check_dependencies
|
|
||||||
|
|
||||||
task :default => :spec
|
task :default => :spec
|
||||||
|
|
||||||
desc "Start an irb console with TimeExt pre-loaded."
|
|
||||||
task :console do
|
#
|
||||||
exec "irb -r spec/spec_helper"
|
# Yard
|
||||||
end
|
#
|
||||||
task :c => :console
|
|
||||||
|
|
||||||
begin
|
begin
|
||||||
require 'yard'
|
require 'yard'
|
||||||
@@ -50,3 +31,14 @@ rescue LoadError
|
|||||||
abort "YARD is not available. In order to run yardoc, you must: sudo gem install yard"
|
abort "YARD is not available. In order to run yardoc, you must: sudo gem install yard"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
#
|
||||||
|
# Misc.
|
||||||
|
#
|
||||||
|
|
||||||
|
desc "Start an irb console with TimeExt pre-loaded."
|
||||||
|
task :console do
|
||||||
|
exec "irb -r spec/spec_helper"
|
||||||
|
end
|
||||||
|
task :c => :console
|
||||||
|
|||||||
3
lib/time_ext/version.rb
Normal file
3
lib/time_ext/version.rb
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
module TimeExt
|
||||||
|
VERSION = "0.2.7"
|
||||||
|
end
|
||||||
24
time_ext.gemspec
Normal file
24
time_ext.gemspec
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
# -*- encoding: utf-8 -*-
|
||||||
|
$:.push File.expand_path("../lib", __FILE__)
|
||||||
|
require "time_ext/version"
|
||||||
|
|
||||||
|
Gem::Specification.new do |s|
|
||||||
|
s.name = "time_ext"
|
||||||
|
s.version = TimeExt::VERSION
|
||||||
|
s.platform = Gem::Platform::RUBY
|
||||||
|
s.authors = ["Jim Myhrberg"]
|
||||||
|
s.email = ["contact@jimeh.me"]
|
||||||
|
s.homepage = "http://github.com/jimeh/time_ext"
|
||||||
|
s.summary = "Extends the abilities of Ruby's built-in Time class by building on top of ActiveSupport."
|
||||||
|
s.description = "Extends the abilities of Ruby's built-in Time class by building on top of ActiveSupport."
|
||||||
|
|
||||||
|
s.rubyforge_project = "time_ext"
|
||||||
|
|
||||||
|
s.files = `git ls-files`.split("\n")
|
||||||
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
||||||
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
||||||
|
s.require_paths = ["lib"]
|
||||||
|
|
||||||
|
s.add_runtime_dependency 'activesupport', '>= 2.3.0'
|
||||||
|
s.add_runtime_dependency 'i18n', '>= 0.4.2'
|
||||||
|
end
|
||||||
Reference in New Issue
Block a user