citrulu 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (7) hide show
  1. data/.ruby-version +1 -0
  2. data/Gemfile +2 -3
  3. data/Gemfile.lock +21 -13
  4. data/README.md +4 -3
  5. data/VERSION +1 -1
  6. data/citrulu.gemspec +10 -9
  7. metadata +13 -12
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ ruby-1.9.3-p448
data/Gemfile CHANGED
@@ -4,13 +4,12 @@ source "http://rubygems.org"
4
4
  # gem "activesupport", ">= 2.3.5"
5
5
  gem "faraday" #TODO: specify version
6
6
  gem "json" #TODO: specify version
7
- gem "activemodel" #TODO: specify version
8
-
7
+ gem "activemodel", "~>4.0.0"
9
8
  # Add dependencies to develop your gem here.
10
9
  # Include everything needed to run rake, tests, features, etc.
11
10
  group :development do
12
11
  gem "rspec", ">= 2.11.0"
13
- gem "factory_girl" # TODO: specify version
12
+ gem "factory_girl", "~> 4.2.0"
14
13
  gem "rdoc", "~> 3.12"
15
14
  gem "bundler", ">= 1.0.0"
16
15
  gem "jeweler", "~> 1.8.4"
data/Gemfile.lock CHANGED
@@ -1,27 +1,32 @@
1
1
  GEM
2
2
  remote: http://rubygems.org/
3
3
  specs:
4
- activemodel (3.2.3)
5
- activesupport (= 3.2.3)
6
- builder (~> 3.0.0)
7
- activesupport (3.2.3)
8
- i18n (~> 0.6)
9
- multi_json (~> 1.0)
10
- builder (3.0.0)
4
+ activemodel (4.0.0)
5
+ activesupport (= 4.0.0)
6
+ builder (~> 3.1.0)
7
+ activesupport (4.0.0)
8
+ i18n (~> 0.6, >= 0.6.4)
9
+ minitest (~> 4.2)
10
+ multi_json (~> 1.3)
11
+ thread_safe (~> 0.1)
12
+ tzinfo (~> 0.3.37)
13
+ atomic (1.1.14)
14
+ builder (3.1.4)
11
15
  diff-lcs (1.1.3)
12
- factory_girl (2.6.4)
13
- activesupport (>= 2.3.9)
16
+ factory_girl (4.2.0)
17
+ activesupport (>= 3.0.0)
14
18
  faraday (0.8.4)
15
19
  multipart-post (~> 1.1)
16
20
  git (1.2.5)
17
- i18n (0.6.0)
21
+ i18n (0.6.5)
18
22
  jeweler (1.8.4)
19
23
  bundler (~> 1.0)
20
24
  git (>= 1.2.5)
21
25
  rake
22
26
  rdoc
23
27
  json (1.7.5)
24
- multi_json (1.3.6)
28
+ minitest (4.7.5)
29
+ multi_json (1.8.1)
25
30
  multipart-post (1.1.5)
26
31
  rake (0.9.2.2)
27
32
  rdoc (3.12)
@@ -38,14 +43,17 @@ GEM
38
43
  multi_json (~> 1.0)
39
44
  simplecov-html (~> 0.7.1)
40
45
  simplecov-html (0.7.1)
46
+ thread_safe (0.1.3)
47
+ atomic
48
+ tzinfo (0.3.37)
41
49
 
42
50
  PLATFORMS
43
51
  ruby
44
52
 
45
53
  DEPENDENCIES
46
- activemodel
54
+ activemodel (~> 4.0.0)
47
55
  bundler (>= 1.0.0)
48
- factory_girl
56
+ factory_girl (~> 4.2.0)
49
57
  faraday
50
58
  jeweler (~> 1.8.4)
51
59
  json
data/README.md CHANGED
@@ -1,7 +1,8 @@
1
1
  Citrulu
2
2
  =======
3
+ [![Gem Version](https://badge.fury.io/rb/citrulu.png)](http://badge.fury.io/rb/citrulu)
3
4
 
4
- [Citrulu](https://www.citrulu.com/) exposes an [api](https://www.citrulu.com/api) for creating, editing and compiling test files. This gem provides a wrapper around that api which allows you to work with TestFile objects locally.
5
+ [Citrulu](https://www.citrulu.com/) exposes an [api](https://app.citrulu.com/api) for creating, editing and compiling test files. This gem provides a wrapper around that api which allows you to work with TestFile objects locally.
5
6
 
6
7
  The gem has not yet been widely used. It's probably very unlikely to cause anything bad to happen in your app, but please **use at your own risk** and raise an issue if you find any bugs.
7
8
 
@@ -19,7 +20,7 @@ gem "citrulu"
19
20
  Setup
20
21
  -----
21
22
 
22
- You need an account on Citrulu to use the gem: Sign up at <http://www.citrulu.com>, and once you're signed in you can create an API key on the [Account Settings](https://app.citrulu.com/settings) page.
23
+ You need an account on Citrulu to use the gem: Sign up at <http://www.citrulu.com>, and once you're signed in you can create an API key on the '[Account Settings](https://app.citrulu.com/settings)' page.
23
24
 
24
25
  Configure your API key by adding it to an initializer:
25
26
 
@@ -84,4 +85,4 @@ contact@dxw.com
84
85
 
85
86
  Copyright
86
87
  ---------
87
- Copyright (c) 2012 The Dextrous Web Ltd. See LICENSE.txt for further details.
88
+ Copyright (c) 2012 The Dextrous Web Ltd. See LICENSE.txt for further details.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.1
1
+ 0.2.2
data/citrulu.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "citrulu"
8
- s.version = "0.2.1"
8
+ s.version = "0.2.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Duncan Stuart"]
12
- s.date = "2012-12-11"
12
+ s.date = "2013-10-05"
13
13
  s.description = "Citrulu exposes an api for creating, editing and compiling test files (http://www.citrulu.com/api). This gem provides a wrapper around that api which allows you to work with TestFile objects locally."
14
14
  s.email = ["contact@dxw.com", "duncan@dxw.com"]
15
15
  s.extra_rdoc_files = [
@@ -19,6 +19,7 @@ Gem::Specification.new do |s|
19
19
  s.files = [
20
20
  ".document",
21
21
  ".rspec",
22
+ ".ruby-version",
22
23
  ".simplecov",
23
24
  "Gemfile",
24
25
  "Gemfile.lock",
@@ -38,7 +39,7 @@ Gem::Specification.new do |s|
38
39
  s.homepage = "https://github.com/dxw/citrulu-api-ruby.git"
39
40
  s.licenses = ["MIT"]
40
41
  s.require_paths = ["lib"]
41
- s.rubygems_version = "1.8.24"
42
+ s.rubygems_version = "1.8.23"
42
43
  s.summary = "Wrapper for the api exposed by Citrulu"
43
44
 
44
45
  if s.respond_to? :specification_version then
@@ -47,9 +48,9 @@ Gem::Specification.new do |s|
47
48
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
48
49
  s.add_runtime_dependency(%q<faraday>, [">= 0"])
49
50
  s.add_runtime_dependency(%q<json>, [">= 0"])
50
- s.add_runtime_dependency(%q<activemodel>, [">= 0"])
51
+ s.add_runtime_dependency(%q<activemodel>, ["~> 4.0.0"])
51
52
  s.add_development_dependency(%q<rspec>, [">= 2.11.0"])
52
- s.add_development_dependency(%q<factory_girl>, [">= 0"])
53
+ s.add_development_dependency(%q<factory_girl>, ["~> 4.2.0"])
53
54
  s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
54
55
  s.add_development_dependency(%q<bundler>, [">= 1.0.0"])
55
56
  s.add_development_dependency(%q<jeweler>, ["~> 1.8.4"])
@@ -57,9 +58,9 @@ Gem::Specification.new do |s|
57
58
  else
58
59
  s.add_dependency(%q<faraday>, [">= 0"])
59
60
  s.add_dependency(%q<json>, [">= 0"])
60
- s.add_dependency(%q<activemodel>, [">= 0"])
61
+ s.add_dependency(%q<activemodel>, ["~> 4.0.0"])
61
62
  s.add_dependency(%q<rspec>, [">= 2.11.0"])
62
- s.add_dependency(%q<factory_girl>, [">= 0"])
63
+ s.add_dependency(%q<factory_girl>, ["~> 4.2.0"])
63
64
  s.add_dependency(%q<rdoc>, ["~> 3.12"])
64
65
  s.add_dependency(%q<bundler>, [">= 1.0.0"])
65
66
  s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
@@ -68,9 +69,9 @@ Gem::Specification.new do |s|
68
69
  else
69
70
  s.add_dependency(%q<faraday>, [">= 0"])
70
71
  s.add_dependency(%q<json>, [">= 0"])
71
- s.add_dependency(%q<activemodel>, [">= 0"])
72
+ s.add_dependency(%q<activemodel>, ["~> 4.0.0"])
72
73
  s.add_dependency(%q<rspec>, [">= 2.11.0"])
73
- s.add_dependency(%q<factory_girl>, [">= 0"])
74
+ s.add_dependency(%q<factory_girl>, ["~> 4.2.0"])
74
75
  s.add_dependency(%q<rdoc>, ["~> 3.12"])
75
76
  s.add_dependency(%q<bundler>, [">= 1.0.0"])
76
77
  s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: citrulu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-12-11 00:00:00.000000000 Z
12
+ date: 2013-10-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: faraday
@@ -48,17 +48,17 @@ dependencies:
48
48
  requirement: !ruby/object:Gem::Requirement
49
49
  none: false
50
50
  requirements:
51
- - - ! '>='
51
+ - - ~>
52
52
  - !ruby/object:Gem::Version
53
- version: '0'
53
+ version: 4.0.0
54
54
  type: :runtime
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  none: false
58
58
  requirements:
59
- - - ! '>='
59
+ - - ~>
60
60
  - !ruby/object:Gem::Version
61
- version: '0'
61
+ version: 4.0.0
62
62
  - !ruby/object:Gem::Dependency
63
63
  name: rspec
64
64
  requirement: !ruby/object:Gem::Requirement
@@ -80,17 +80,17 @@ dependencies:
80
80
  requirement: !ruby/object:Gem::Requirement
81
81
  none: false
82
82
  requirements:
83
- - - ! '>='
83
+ - - ~>
84
84
  - !ruby/object:Gem::Version
85
- version: '0'
85
+ version: 4.2.0
86
86
  type: :development
87
87
  prerelease: false
88
88
  version_requirements: !ruby/object:Gem::Requirement
89
89
  none: false
90
90
  requirements:
91
- - - ! '>='
91
+ - - ~>
92
92
  - !ruby/object:Gem::Version
93
- version: '0'
93
+ version: 4.2.0
94
94
  - !ruby/object:Gem::Dependency
95
95
  name: rdoc
96
96
  requirement: !ruby/object:Gem::Requirement
@@ -169,6 +169,7 @@ extra_rdoc_files:
169
169
  files:
170
170
  - .document
171
171
  - .rspec
172
+ - .ruby-version
172
173
  - .simplecov
173
174
  - Gemfile
174
175
  - Gemfile.lock
@@ -199,7 +200,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
199
200
  version: '0'
200
201
  segments:
201
202
  - 0
202
- hash: -1120698994295746706
203
+ hash: 2527565269818472620
203
204
  required_rubygems_version: !ruby/object:Gem::Requirement
204
205
  none: false
205
206
  requirements:
@@ -208,7 +209,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
208
209
  version: '0'
209
210
  requirements: []
210
211
  rubyforge_project:
211
- rubygems_version: 1.8.24
212
+ rubygems_version: 1.8.23
212
213
  signing_key:
213
214
  specification_version: 3
214
215
  summary: Wrapper for the api exposed by Citrulu