wiselinks 0.6.0 → 0.6.1

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.
data/.travis.yml ADDED
@@ -0,0 +1,6 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.2
4
+ - 1.9.3
5
+ - 2.0.0
6
+ - ruby-head
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- wiselinks (0.6.0)
4
+ wiselinks (0.6.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -423,6 +423,7 @@ Contributors:
423
423
  * [Igor Alexandrov](http://igor-alexandrov.github.com/)
424
424
  * [Alexey Solilin](https://github.com/solilin)
425
425
  * [Julia Egorova](https://github.com/vankiru)
426
+ * [Alexandr Borisov](https://github.com/aishek)
426
427
 
427
428
  ## License
428
429
 
@@ -4,7 +4,7 @@ module Wiselinks
4
4
  module Version
5
5
  MAJOR = 0
6
6
  MINOR = 6
7
- PATCH = 0
7
+ PATCH = 1
8
8
  BUILD = nil
9
9
 
10
10
  STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.')
@@ -52414,3 +52414,8 @@ Connecting to database specified by database.yml
52414
52414
  Processing by ApplicationController#index as HTML
52415
52415
  Rendered application/index.html.erb within layouts/application (4.4ms)
52416
52416
  Completed 200 OK in 26ms (Views: 25.7ms | ActiveRecord: 0.0ms)
52417
+ Started GET "/" for 127.0.0.1 at 2013-06-01 17:10:17 +0400
52418
+ Connecting to database specified by database.yml
52419
+ Processing by ApplicationController#index as HTML
52420
+ Rendered application/index.html.erb within layouts/application (4.8ms)
52421
+ Completed 200 OK in 27ms (Views: 26.7ms | ActiveRecord: 0.0ms)
data/spec/helper.rb CHANGED
@@ -6,6 +6,9 @@ require 'wiselinks'
6
6
  require 'rspec'
7
7
  require 'webmock/rspec'
8
8
 
9
+ require 'coveralls'
10
+ Coveralls.wear!
11
+
9
12
  ENV['RAILS_ENV'] = 'test'
10
13
  require "dummy/config/environment"
11
14
 
data/wiselinks.gemspec CHANGED
@@ -7,7 +7,7 @@ require 'wiselinks/version'
7
7
  Gem::Specification.new do |gem|
8
8
  gem.name = 'wiselinks'
9
9
  gem.version = Wiselinks::Version::STRING
10
- gem.authors = ['Igor Alexandrov', 'Alexey Solilin', 'Julia Egorova']
10
+ gem.authors = ['Igor Alexandrov', 'Alexey Solilin', 'Julia Egorova', 'Alexandr Borisov']
11
11
  gem.email = 'igor.alexandrov@gmail.com'
12
12
  gem.summary = 'Wiselinks makes following links and submitting some forms in your web application smarter and faster'
13
13
  gem.homepage = 'http://github.com/igor-alexandrov/wiselinks'
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wiselinks
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
8
8
  - Igor Alexandrov
9
9
  - Alexey Solilin
10
10
  - Julia Egorova
11
+ - Alexandr Borisov
11
12
  autorequire:
12
13
  bindir: bin
13
14
  cert_chain: []
@@ -262,6 +263,7 @@ files:
262
263
  - .document
263
264
  - .gitignore
264
265
  - .rspec
266
+ - .travis.yml
265
267
  - Gemfile
266
268
  - Gemfile.lock
267
269
  - LICENSE
@@ -350,7 +352,6 @@ files:
350
352
  - spec/dummy/tmp/cache/assets/E11/4E0/sprockets%2F86e145a39f85cceeaffdff91ebb61449
351
353
  - spec/factories/requests.rb
352
354
  - spec/helper.rb
353
- - travis.yml
354
355
  - wiselinks.gemspec
355
356
  homepage: http://github.com/igor-alexandrov/wiselinks
356
357
  licenses:
@@ -367,7 +368,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
367
368
  version: '0'
368
369
  segments:
369
370
  - 0
370
- hash: -4102542331087791928
371
+ hash: -2703865657821195857
371
372
  required_rubygems_version: !ruby/object:Gem::Requirement
372
373
  none: false
373
374
  requirements:
@@ -376,7 +377,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
376
377
  version: '0'
377
378
  segments:
378
379
  - 0
379
- hash: -4102542331087791928
380
+ hash: -2703865657821195857
380
381
  requirements: []
381
382
  rubyforge_project:
382
383
  rubygems_version: 1.8.24
data/travis.yml DELETED
@@ -1,3 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 1.9.3