Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
annotate
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
annotate
Commits
efd6fba2
Commit
efd6fba2
authored
Oct 15, 2010
by
miyucy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Version bump to 2.4.3
parent
280a9e56
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
67 additions
and
8 deletions
+67
-8
Rakefile
Rakefile
+3
-5
VERSION.yml
VERSION.yml
+4
-3
miyucy-annotate.gemspec
miyucy-annotate.gemspec
+60
-0
No files found.
Rakefile
View file @
efd6fba2
...
@@ -7,12 +7,12 @@ task :default => [:spec]
...
@@ -7,12 +7,12 @@ task :default => [:spec]
begin
begin
require
'jeweler'
require
'jeweler'
Jeweler
::
Tasks
.
new
do
|
gem
|
Jeweler
::
Tasks
.
new
do
|
gem
|
gem
.
name
=
"annotate"
gem
.
name
=
"
miyucy-
annotate"
gem
.
executables
=
"annotate"
gem
.
executables
=
"annotate"
gem
.
summary
=
"Annotates Rails Models, routes, fixtures, and others based on the database schema."
gem
.
summary
=
"Annotates Rails Models, routes, fixtures, and others based on the database schema."
gem
.
description
=
gem
.
summary
gem
.
description
=
gem
.
summary
gem
.
email
=
[
"alex@stinky.com"
,
'ctran@pragmaquest.com'
,
"x@nofxx.com"
]
gem
.
email
=
[
"alex@stinky.com"
,
'ctran@pragmaquest.com'
,
"x@nofxx.com"
]
gem
.
homepage
=
"http://github.com/
ctran
/annotate"
gem
.
homepage
=
"http://github.com/
miyucy
/annotate"
gem
.
authors
=
[
'Cuong Tran'
,
"Alex Chaffee"
,
"Marcos Piccinini"
]
gem
.
authors
=
[
'Cuong Tran'
,
"Alex Chaffee"
,
"Marcos Piccinini"
]
gem
.
files
=
FileList
[
"[A-Z]*.*"
,
"{bin,lib,tasks,spec}/**/*"
]
gem
.
files
=
FileList
[
"[A-Z]*.*"
,
"{bin,lib,tasks,spec}/**/*"
]
gem
.
rubyforge_project
=
"annotate"
gem
.
rubyforge_project
=
"annotate"
...
@@ -21,9 +21,7 @@ begin
...
@@ -21,9 +21,7 @@ begin
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
end
Jeweler
::
RubyforgeTasks
.
new
do
|
rubyforge
|
Jeweler
::
GemcutterTasks
.
new
rubyforge
.
doc_task
=
"rdoc"
end
rescue
LoadError
rescue
LoadError
puts
"Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
puts
"Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
...
...
VERSION.yml
View file @
efd6fba2
---
---
:major
:
2
:major
:
2
:minor
:
4
:minor
:
4
:patch
:
2
:patch
:
3
:build
:
miyucy-annotate.gemspec
0 → 100644
View file @
efd6fba2
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem
::
Specification
.
new
do
|
s
|
s
.
name
=
%q{miyucy-annotate}
s
.
version
=
"2.4.3"
s
.
required_rubygems_version
=
Gem
::
Requirement
.
new
(
">= 0"
)
if
s
.
respond_to?
:required_rubygems_version
=
s
.
authors
=
[
"Cuong Tran"
,
"Alex Chaffee"
,
"Marcos Piccinini"
]
s
.
date
=
%q{2010-10-15}
s
.
default_executable
=
%q{annotate}
s
.
description
=
%q{Annotates Rails Models, routes, fixtures, and others based on the database schema.}
s
.
email
=
[
"alex@stinky.com"
,
"ctran@pragmaquest.com"
,
"x@nofxx.com"
]
s
.
executables
=
[
"annotate"
]
s
.
extra_rdoc_files
=
[
"README.rdoc"
]
s
.
files
=
[
"History.txt"
,
"README.rdoc"
,
"VERSION.yml"
,
"bin/annotate"
,
"lib/annotate.rb"
,
"lib/annotate/annotate_models.rb"
,
"lib/annotate/annotate_routes.rb"
,
"lib/tasks/annotate_models.rake"
,
"lib/tasks/annotate_routes.rake"
,
"lib/tasks/migrate.rake"
,
"spec/annotate/annotate_models_spec.rb"
,
"spec/annotate/annotate_routes_spec.rb"
,
"spec/annotate_spec.rb"
,
"spec/spec.opts"
,
"spec/spec_helper.rb"
]
s
.
homepage
=
%q{http://github.com/miyucy/annotate}
s
.
rdoc_options
=
[
"--charset=UTF-8"
]
s
.
require_paths
=
[
"lib"
]
s
.
rubyforge_project
=
%q{annotate}
s
.
rubygems_version
=
%q{1.3.7}
s
.
summary
=
%q{Annotates Rails Models, routes, fixtures, and others based on the database schema.}
s
.
test_files
=
[
"spec/annotate_spec.rb"
,
"spec/spec_helper.rb"
,
"spec/annotate/annotate_models_spec.rb"
,
"spec/annotate/annotate_routes_spec.rb"
]
if
s
.
respond_to?
:specification_version
then
current_version
=
Gem
::
Specification
::
CURRENT_SPECIFICATION_VERSION
s
.
specification_version
=
3
if
Gem
::
Version
.
new
(
Gem
::
VERSION
)
>=
Gem
::
Version
.
new
(
'1.2.0'
)
then
else
end
else
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment