cache_rules 0.1.10 → 0.1.11

Sign up to get free protection for your applications and to get access to all the features.
data/.travis.yml CHANGED
@@ -1,3 +1,4 @@
1
+ sudo: false
1
2
  language: ruby
2
3
  rvm:
3
4
  - 1.9.3
@@ -5,4 +6,4 @@ rvm:
5
6
  - 2.0.0
6
7
  - 2.1.5
7
8
  - 2.2.0
8
- script: "bundle exec rake test"
9
+ script: "bundle exec rake test"
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.11 (2015-04-20)
4
+
5
+ * Remove Gemfile.lock
6
+ * Adjust Gemfile dependencies
7
+ * Run travis-ci tests in container
8
+
3
9
  ## 0.1.10 (2015-04-20)
4
10
 
5
11
  * Remove gemspec post_install message
data/Gemfile CHANGED
@@ -2,7 +2,6 @@ source 'https://rubygems.org'
2
2
 
3
3
  group :test do
4
4
  gem 'coveralls', require: false
5
- gem 'rest-client', "~> 1.7.0"
6
5
  gem "rake"
7
6
  gem "fakeweb", "~> 1.3"
8
7
  gem 'minitest', '~> 5.5.0'
data/cache_rules.gemspec CHANGED
@@ -6,7 +6,7 @@ require 'date'
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = 'cache_rules'
9
- s.version = '0.1.10'
9
+ s.version = '0.1.11'
10
10
 
11
11
  s.date = Date.today.to_s
12
12
 
@@ -126,7 +126,7 @@ class TestFormatting < MiniTest::Test
126
126
  timestamp1 = CacheRules.httpdate_helper httpdate
127
127
  timestamp2 = CacheRules.httpdate_helper rfc850
128
128
  timestamp3 = CacheRules.httpdate_helper ansi_c
129
- timestamp4 = CacheRules.httpdate_helper 'invalid!(@*&^#%$'
129
+ timestamp4 = CacheRules.httpdate_helper "2012-13-08T15:43:59" # invalid date
130
130
 
131
131
  assert_equal timestamp1, result
132
132
  assert_equal timestamp2, result
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cache_rules
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.10
4
+ version: 0.1.11
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -88,7 +88,6 @@ files:
88
88
  - .travis.yml
89
89
  - CHANGELOG.md
90
90
  - Gemfile
91
- - Gemfile.lock
92
91
  - LICENSE
93
92
  - NOTICE
94
93
  - README.md
data/Gemfile.lock DELETED
@@ -1,48 +0,0 @@
1
- GEM
2
- remote: https://rubygems.org/
3
- specs:
4
- ansi (1.5.0)
5
- builder (3.2.2)
6
- coveralls (0.8.0)
7
- multi_json (~> 1.10)
8
- rest-client (>= 1.6.8, < 2)
9
- simplecov (~> 0.9.1)
10
- term-ansicolor (~> 1.3)
11
- thor (~> 0.19.1)
12
- docile (1.1.5)
13
- fakeweb (1.3.0)
14
- mime-types (2.4.3)
15
- minitest (5.5.1)
16
- minitest-reporters (1.0.11)
17
- ansi
18
- builder
19
- minitest (>= 5.0)
20
- ruby-progressbar
21
- multi_json (1.11.0)
22
- netrc (0.10.3)
23
- rake (10.4.2)
24
- rest-client (1.7.3)
25
- mime-types (>= 1.16, < 3.0)
26
- netrc (~> 0.7)
27
- ruby-progressbar (1.7.5)
28
- simplecov (0.9.2)
29
- docile (~> 1.1.0)
30
- multi_json (~> 1.0)
31
- simplecov-html (~> 0.9.0)
32
- simplecov-html (0.9.0)
33
- term-ansicolor (1.3.0)
34
- tins (~> 1.0)
35
- thor (0.19.1)
36
- tins (1.3.5)
37
-
38
- PLATFORMS
39
- ruby
40
-
41
- DEPENDENCIES
42
- coveralls
43
- fakeweb (~> 1.3)
44
- minitest (~> 5.5.0)
45
- minitest-reporters (~> 1.0.0)
46
- rake
47
- rest-client (~> 1.7.0)
48
- simplecov