cone 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/cone.gemspec +6 -3
  2. data/test/Gemfile.lock +1 -1
  3. metadata +55 -4
data/cone.gemspec CHANGED
@@ -1,11 +1,14 @@
1
1
  Gem::Specification.new do |gem|
2
2
  gem.name = 'cone'
3
- gem.version = '0.0.3'
4
- gem.summary = "Rails client side url helpers"
3
+ gem.version = '0.0.4'
4
+ gem.summary = 'Rails client side URL helpers'
5
5
  gem.author = 'Lihan Li'
6
6
  gem.email = 'frankieteardrop@gmail.com'
7
7
  gem.homepage = 'http://github.com/lihanli/cone'
8
- gem.files = `git ls-files`.split("\n")
9
8
 
10
9
  gem.add_dependency('coffee-rails')
10
+
11
+ gem.files = `git ls-files`.split("\n")
12
+ gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
13
+ gem.require_paths = ["lib"]
11
14
  end
data/test/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- cone (0.0.2)
4
+ cone (0.0.4)
5
5
  coffee-rails
6
6
 
7
7
  GEM
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cone
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -112,8 +112,59 @@ required_rubygems_version: !ruby/object:Gem::Requirement
112
112
  version: '0'
113
113
  requirements: []
114
114
  rubyforge_project:
115
- rubygems_version: 1.8.23
115
+ rubygems_version: 1.8.24
116
116
  signing_key:
117
117
  specification_version: 3
118
- summary: Rails client side url helpers
119
- test_files: []
118
+ summary: Rails client side URL helpers
119
+ test_files:
120
+ - test/Gemfile
121
+ - test/Gemfile.lock
122
+ - test/README.rdoc
123
+ - test/Rakefile
124
+ - test/app/assets/images/rails.png
125
+ - test/app/assets/javascripts/application.js
126
+ - test/app/assets/stylesheets/application.css
127
+ - test/app/controllers/application_controller.rb
128
+ - test/app/controllers/users_controller.rb
129
+ - test/app/helpers/application_helper.rb
130
+ - test/app/mailers/.gitkeep
131
+ - test/app/models/.gitkeep
132
+ - test/app/views/layouts/application.html.erb
133
+ - test/app/views/users/index.html.erb
134
+ - test/config.ru
135
+ - test/config/application.rb
136
+ - test/config/boot.rb
137
+ - test/config/environment.rb
138
+ - test/config/environments/development.rb
139
+ - test/config/environments/production.rb
140
+ - test/config/environments/test.rb
141
+ - test/config/initializers/backtrace_silencers.rb
142
+ - test/config/initializers/inflections.rb
143
+ - test/config/initializers/mime_types.rb
144
+ - test/config/initializers/secret_token.rb
145
+ - test/config/initializers/session_store.rb
146
+ - test/config/initializers/wrap_parameters.rb
147
+ - test/config/locales/en.yml
148
+ - test/config/routes.rb
149
+ - test/db/seeds.rb
150
+ - test/doc/README_FOR_APP
151
+ - test/lib/assets/.gitkeep
152
+ - test/lib/tasks/.gitkeep
153
+ - test/log/.gitkeep
154
+ - test/public/404.html
155
+ - test/public/422.html
156
+ - test/public/500.html
157
+ - test/public/favicon.ico
158
+ - test/public/robots.txt
159
+ - test/script/rails
160
+ - test/test/fixtures/.gitkeep
161
+ - test/test/functional/.gitkeep
162
+ - test/test/integration/.gitkeep
163
+ - test/test/integration/cone_gem_test.rb
164
+ - test/test/performance/browsing_test.rb
165
+ - test/test/test_helper.rb
166
+ - test/test/unit/.gitkeep
167
+ - test/test/unit/cone_init_test.rb
168
+ - test/vendor/assets/javascripts/.gitkeep
169
+ - test/vendor/assets/stylesheets/.gitkeep
170
+ - test/vendor/plugins/.gitkeep