Skip to content

Commit 52ffefc

Browse files
committed
Merge branch 'release/v2.6.8'
2 parents d5d55e8 + 53a1f06 commit 52ffefc

File tree

9 files changed

+76
-58
lines changed

9 files changed

+76
-58
lines changed

CHANGELOG.rdoc

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
== 2.6.8
2+
* Nothing annotated unless options[:model_dir] is specified, #234
3+
14
== 2.6.7
25
* Nothing annotated unless options[:model_dir] is specified, #234
36

RELEASE.rdoc

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
== Prerequisite
2+
3+
- Install "git-flow" (brew install git-flow)
4+
- Install "bump" gem (gem install bump)
5+
6+
== Perform a release
7+
8+
- git flow release start <release>
9+
- Update the CHANGELOG.rdoc file
10+
- bump current
11+
- bump patch
12+
- rm -rf dist
13+
- rake spec
14+
- rake gem
15+
- git flow release finish <release>
16+
17+
- rake gem:publish

annotate.gemspec

+6-5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Gem::Specification.new do |s|
77
s.name = "annotate"
88
s.version = Annotate.version
99

10+
s.required_ruby_version = '>= 1.9.3'
1011
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
1112
s.authors = ["Alex Chaffee", "Cuong Tran", "Marcos Piccinini", "Turadg Aleahmad", "Jon Frisby"]
1213
s.description = "Annotates Rails/ActiveRecord Models, routes, fixtures, and others based on the database schema."
@@ -25,14 +26,14 @@ Gem::Specification.new do |s|
2526
s.specification_version = 4
2627

2728
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
28-
s.add_runtime_dependency(%q<rake>, ["~> 10.4.2", ">= 10.4.2"])
29-
s.add_runtime_dependency(%q<activerecord>, [">= 2.3.0"])
29+
s.add_runtime_dependency(%q<rake>, ["~> 10.4"])
30+
s.add_runtime_dependency(%q<activerecord>, [">= 3.2", "<= 4.3"])
3031
else
31-
s.add_dependency(%q<rake>, [">= 0.8.7"])
32-
s.add_dependency(%q<activerecord>, [">= 2.3.0"])
32+
s.add_dependency(%q<rake>, ["~> 10.4"])
33+
s.add_dependency(%q<activerecord>, [">= 3.2", "<= 4.3"])
3334
end
3435
else
3536
s.add_dependency(%q<rake>, [">= 0.8.7"])
36-
s.add_dependency(%q<activerecord>, [">= 2.3.0"])
37+
s.add_dependency(%q<activerecord>, [">= 3.2", "<= 4.3"])
3738
end
3839
end

lib/annotate.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def self.setup_options(options = {})
7171
options[key] = (!ENV[key.to_s].blank?) ? ENV[key.to_s].split(',') : []
7272
end
7373

74-
if(!options[:model_dir])
74+
if(options[:model_dir].empty?)
7575
options[:model_dir] = ['app/models']
7676
end
7777

lib/annotate/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Annotate
22
def self.version
3-
'2.6.7'
3+
'2.6.8'
44
end
55
end

spec/integration/rails_4.1.1/.ruby-version

-1
This file was deleted.

spec/integration/rails_4.1.1/Gemfile.lock

+29-30
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
PATH
22
remote: ../../..
33
specs:
4-
annotate (2.6.5)
5-
activerecord (>= 2.3.0)
6-
rake (>= 0.8.7)
4+
annotate (2.6.6)
5+
activerecord (>= 3.2, <= 4.3)
6+
rake (~> 10.4)
77

88
GEM
99
remote: https://rubygems.org/
@@ -42,27 +42,27 @@ GEM
4242
coffee-script (2.3.0)
4343
coffee-script-source
4444
execjs
45-
coffee-script-source (1.7.1)
45+
coffee-script-source (1.9.1)
4646
erubis (2.7.0)
47-
execjs (2.2.1)
47+
execjs (2.4.0)
4848
hike (1.2.3)
49-
i18n (0.6.11)
50-
jbuilder (2.1.3)
49+
i18n (0.7.0)
50+
jbuilder (2.2.11)
5151
activesupport (>= 3.0.0, < 5)
5252
multi_json (~> 1.2)
53-
jquery-rails (3.1.1)
53+
jquery-rails (3.1.2)
5454
railties (>= 3.0, < 5.0)
5555
thor (>= 0.14, < 2.0)
56-
json (1.8.1)
56+
json (1.8.2)
5757
mail (2.5.4)
5858
mime-types (~> 1.16)
5959
treetop (~> 1.4.8)
6060
mime-types (1.25.1)
61-
minitest (5.4.0)
62-
multi_json (1.10.1)
61+
minitest (5.5.1)
62+
multi_json (1.11.0)
6363
polyglot (0.3.5)
6464
rack (1.5.2)
65-
rack-test (0.6.2)
65+
rack-test (0.6.3)
6666
rack (>= 1.0)
6767
rails (4.1.1)
6868
actionmailer (= 4.1.1)
@@ -81,40 +81,39 @@ GEM
8181
activesupport (= 4.1.1)
8282
rake (>= 0.8.7)
8383
thor (>= 0.18.1, < 2.0)
84-
rake (10.3.2)
85-
rdoc (4.1.1)
84+
rake (10.4.2)
85+
rdoc (4.2.0)
8686
json (~> 1.4)
8787
sass (3.2.19)
88-
sass-rails (4.0.3)
88+
sass-rails (4.0.5)
8989
railties (>= 4.0.0, < 5.0)
90-
sass (~> 3.2.0)
91-
sprockets (~> 2.8, <= 2.11.0)
90+
sass (~> 3.2.2)
91+
sprockets (~> 2.8, < 3.0)
9292
sprockets-rails (~> 2.0)
93-
sdoc (0.4.0)
94-
json (~> 1.8)
95-
rdoc (~> 4.0, < 5.0)
96-
spring (1.1.3)
97-
sprockets (2.11.0)
93+
sdoc (0.4.1)
94+
json (~> 1.7, >= 1.7.7)
95+
rdoc (~> 4.0)
96+
spring (1.3.3)
97+
sprockets (2.12.3)
9898
hike (~> 1.2)
9999
multi_json (~> 1.0)
100100
rack (~> 1.0)
101101
tilt (~> 1.1, != 1.3.0)
102-
sprockets-rails (2.1.3)
102+
sprockets-rails (2.2.4)
103103
actionpack (>= 3.0)
104104
activesupport (>= 3.0)
105-
sprockets (~> 2.8)
106-
sqlite3 (1.3.9)
105+
sprockets (>= 2.8, < 4.0)
106+
sqlite3 (1.3.10)
107107
thor (0.19.1)
108108
thread_safe (0.3.4)
109109
tilt (1.4.1)
110110
treetop (1.4.15)
111-
polyglot
112-
polyglot (>= 0.3.1)
113-
turbolinks (2.2.2)
111+
polyglot (>= 0.3.1)
112+
turbolinks (2.5.3)
114113
coffee-rails
115-
tzinfo (1.2.1)
114+
tzinfo (1.2.2)
116115
thread_safe (~> 0.1)
117-
uglifier (2.5.3)
116+
uglifier (2.7.1)
118117
execjs (>= 0.3.0)
119118
json (>= 1.8.0)
120119

spec/integration/rails_4.2.0/.ruby-version

-1
This file was deleted.

spec/integration/rails_4.2.0/Gemfile.lock

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
PATH
22
remote: ../../..
33
specs:
4-
annotate (2.6.5)
5-
activerecord (>= 2.3.0)
6-
rake (>= 0.8.7)
4+
annotate (2.6.6)
5+
activerecord (>= 3.2, <= 4.3)
6+
rake (~> 10.4)
77

88
GEM
99
remote: https://rubygems.org/
@@ -51,33 +51,33 @@ GEM
5151
coffee-script (2.3.0)
5252
coffee-script-source
5353
execjs
54-
coffee-script-source (1.8.0)
54+
coffee-script-source (1.9.1)
5555
erubis (2.7.0)
56-
execjs (2.2.2)
57-
globalid (0.3.0)
56+
execjs (2.4.0)
57+
globalid (0.3.3)
5858
activesupport (>= 4.1.0)
5959
hike (1.2.3)
6060
i18n (0.7.0)
61-
jbuilder (2.2.6)
61+
jbuilder (2.2.11)
6262
activesupport (>= 3.0.0, < 5)
6363
multi_json (~> 1.2)
64-
jquery-rails (4.0.2)
64+
jquery-rails (4.0.3)
6565
rails-dom-testing (~> 1.0)
6666
railties (>= 4.2.0)
6767
thor (>= 0.14, < 2.0)
68-
json (1.8.1)
68+
json (1.8.2)
6969
loofah (2.0.1)
7070
nokogiri (>= 1.5.9)
7171
mail (2.6.3)
7272
mime-types (>= 1.16, < 3)
7373
mime-types (2.4.3)
74-
mini_portile (0.6.1)
75-
minitest (5.5.0)
76-
multi_json (1.10.1)
77-
nokogiri (1.6.5)
74+
mini_portile (0.6.2)
75+
minitest (5.5.1)
76+
multi_json (1.11.0)
77+
nokogiri (1.6.6.2)
7878
mini_portile (~> 0.6.0)
7979
rack (1.6.0)
80-
rack-test (0.6.2)
80+
rack-test (0.6.3)
8181
rack (>= 1.0)
8282
rails (4.2.0)
8383
actionmailer (= 4.2.0)
@@ -108,8 +108,8 @@ GEM
108108
rake (10.4.2)
109109
rdoc (4.2.0)
110110
json (~> 1.4)
111-
sass (3.4.9)
112-
sass-rails (5.0.0)
111+
sass (3.4.13)
112+
sass-rails (5.0.1)
113113
railties (>= 4.0.0, < 5.0)
114114
sass (~> 3.1)
115115
sprockets (>= 2.8, < 4.0)
@@ -118,13 +118,13 @@ GEM
118118
sdoc (0.4.1)
119119
json (~> 1.7, >= 1.7.7)
120120
rdoc (~> 4.0)
121-
spring (1.2.0)
121+
spring (1.3.3)
122122
sprockets (2.12.3)
123123
hike (~> 1.2)
124124
multi_json (~> 1.0)
125125
rack (~> 1.0)
126126
tilt (~> 1.1, != 1.3.0)
127-
sprockets-rails (2.2.2)
127+
sprockets-rails (2.2.4)
128128
actionpack (>= 3.0)
129129
activesupport (>= 3.0)
130130
sprockets (>= 2.8, < 4.0)
@@ -136,7 +136,7 @@ GEM
136136
coffee-rails
137137
tzinfo (1.2.2)
138138
thread_safe (~> 0.1)
139-
uglifier (2.6.0)
139+
uglifier (2.7.1)
140140
execjs (>= 0.3.0)
141141
json (>= 1.8.0)
142142

0 commit comments

Comments
 (0)