@@ -10,28 +10,63 @@ Gem::Specification.new do |s|
10
10
s . required_rubygems_version = Gem ::Requirement . new ( ">= 0" ) if s . respond_to? :required_rubygems_version=
11
11
s . authors = [ "Tim Vandecasteele" ]
12
12
s . date = "2012-07-19"
13
- s . description = "TODO: longer description of your gem "
13
+ s . description = "A simple way to add proper auto generated documentation - that can be displayed with swagger - to your inline described grape API "
14
14
15
15
s . extra_rdoc_files = [
16
16
"LICENSE.txt" ,
17
- "README.rdoc "
17
+ "README.markdown "
18
18
]
19
19
s . files = [
20
20
".document" ,
21
+ ".rvmrc" ,
21
22
"Gemfile" ,
23
+ "Gemfile.lock" ,
22
24
"LICENSE.txt" ,
23
- "README.rdoc " ,
25
+ "README.markdown " ,
24
26
"Rakefile" ,
25
27
"VERSION" ,
28
+ "grape-swagger.gemspec" ,
26
29
"lib/grape-swagger.rb" ,
27
- "test/helper.rb" ,
28
- "test/test_grape-swagger.rb"
30
+ "test/dummy/README.rdoc" ,
31
+ "test/dummy/Rakefile" ,
32
+ "test/dummy/app/assets/javascripts/application.js" ,
33
+ "test/dummy/app/assets/stylesheets/application.css" ,
34
+ "test/dummy/app/controllers/application_controller.rb" ,
35
+ "test/dummy/app/helpers/application_helper.rb" ,
36
+ "test/dummy/app/mailers/.gitkeep" ,
37
+ "test/dummy/app/models/.gitkeep" ,
38
+ "test/dummy/app/views/layouts/application.html.erb" ,
39
+ "test/dummy/config.ru" ,
40
+ "test/dummy/config/application.rb" ,
41
+ "test/dummy/config/boot.rb" ,
42
+ "test/dummy/config/database.yml" ,
43
+ "test/dummy/config/environment.rb" ,
44
+ "test/dummy/config/environments/development.rb" ,
45
+ "test/dummy/config/environments/production.rb" ,
46
+ "test/dummy/config/environments/test.rb" ,
47
+ "test/dummy/config/initializers/backtrace_silencers.rb" ,
48
+ "test/dummy/config/initializers/inflections.rb" ,
49
+ "test/dummy/config/initializers/mime_types.rb" ,
50
+ "test/dummy/config/initializers/secret_token.rb" ,
51
+ "test/dummy/config/initializers/session_store.rb" ,
52
+ "test/dummy/config/initializers/wrap_parameters.rb" ,
53
+ "test/dummy/config/locales/en.yml" ,
54
+ "test/dummy/config/routes.rb" ,
55
+ "test/dummy/lib/assets/.gitkeep" ,
56
+ "test/dummy/log/.gitkeep" ,
57
+ "test/dummy/public/404.html" ,
58
+ "test/dummy/public/422.html" ,
59
+ "test/dummy/public/500.html" ,
60
+ "test/dummy/public/favicon.ico" ,
61
+ "test/dummy/script/rails" ,
62
+ "test/grape-swagger_test.rb" ,
63
+ "test/test_helper.rb"
29
64
]
30
65
s . homepage = "http://github.com/tim-vandecasteele/grape-swagger"
31
66
s . licenses = [ "MIT" ]
32
67
s . require_paths = [ "lib" ]
33
68
s . rubygems_version = "1.8.24"
34
- s . summary = "Adds swagger compliant documentation to your grape API"
69
+ s . summary = "Add swagger compliant documentation to your grape API"
35
70
36
71
if s . respond_to? :specification_version then
37
72
s . specification_version = 3
@@ -42,19 +77,28 @@ Gem::Specification.new do |s|
42
77
s . add_development_dependency ( %q<rdoc> , [ "~> 3.12" ] )
43
78
s . add_development_dependency ( %q<bundler> , [ "> 1.0.0" ] )
44
79
s . add_development_dependency ( %q<jeweler> , [ "~> 1.8.4" ] )
80
+ s . add_development_dependency ( %q<jquery-rails> , [ ">= 0" ] )
81
+ s . add_development_dependency ( %q<rails> , [ "~> 3.2" ] )
82
+ s . add_development_dependency ( %q<sqlite3> , [ ">= 0" ] )
45
83
else
46
84
s . add_dependency ( %q<grape> , [ ">= 0" ] )
47
85
s . add_dependency ( %q<shoulda> , [ ">= 0" ] )
48
86
s . add_dependency ( %q<rdoc> , [ "~> 3.12" ] )
49
87
s . add_dependency ( %q<bundler> , [ "> 1.0.0" ] )
50
88
s . add_dependency ( %q<jeweler> , [ "~> 1.8.4" ] )
89
+ s . add_dependency ( %q<jquery-rails> , [ ">= 0" ] )
90
+ s . add_dependency ( %q<rails> , [ "~> 3.2" ] )
91
+ s . add_dependency ( %q<sqlite3> , [ ">= 0" ] )
51
92
end
52
93
else
53
94
s . add_dependency ( %q<grape> , [ ">= 0" ] )
54
95
s . add_dependency ( %q<shoulda> , [ ">= 0" ] )
55
96
s . add_dependency ( %q<rdoc> , [ "~> 3.12" ] )
56
97
s . add_dependency ( %q<bundler> , [ "> 1.0.0" ] )
57
98
s . add_dependency ( %q<jeweler> , [ "~> 1.8.4" ] )
99
+ s . add_dependency ( %q<jquery-rails> , [ ">= 0" ] )
100
+ s . add_dependency ( %q<rails> , [ "~> 3.2" ] )
101
+ s . add_dependency ( %q<sqlite3> , [ ">= 0" ] )
58
102
end
59
103
end
60
104
0 commit comments