poptart 0.0.1 → 0.0.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 865e91a53026b224e7979cf26cbc977dedaa826b
4
- data.tar.gz: 602e1c41cbfd6dde4cdcc4bbab922c04d8186f73
3
+ metadata.gz: df90fb6ce18aa34d16483b6043f633d18b116a50
4
+ data.tar.gz: 4dc8cd9e018a7fdb06b05dadff059d0a0320d247
5
5
  SHA512:
6
- metadata.gz: 78ac46448e35b3c2ea93fb1ceebf37621dae715e3bb212818e7ab587bd154ea33515c6e7dce8d66126d13a489b279383d5de77db8818b1f3e52bd65877d67548
7
- data.tar.gz: 653ee77984bccdd17d6480ac8f4304191b847a76a09270fa007b32ad2b5d3cb374cb937dd6e80821a23b09df8324accef93386f46753f2aa981694c10afdfaad
6
+ metadata.gz: 980a57dbfc06096d827084856799b9aaf7b9c87293bb15f67ca06aa1cb5bbbe0e910bf81de344f0fdfc62c848ad4a7b91d1d5a40401ee402d5fea7214ca1a070
7
+ data.tar.gz: 84f43be708d46120979ef1868406a4059242e3d31d14293211fa4d6e2f7114aba57851b11bb1fe5c826a309f7ca22cbc5b1e067268d2bc4ba3268f9ceea09f2e
data/Gemfile.lock CHANGED
@@ -2,16 +2,19 @@ PATH
2
2
  remote: .
3
3
  specs:
4
4
  poptart (0.0.1)
5
- activesupport (~> 3.2.13)
5
+ activesupport
6
6
  faraday
7
7
  hashie
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- activesupport (3.2.18)
13
- i18n (~> 0.6, >= 0.6.4)
14
- multi_json (~> 1.0)
12
+ activesupport (4.1.0)
13
+ i18n (~> 0.6, >= 0.6.9)
14
+ json (~> 1.7, >= 1.7.7)
15
+ minitest (~> 5.1)
16
+ thread_safe (~> 0.1)
17
+ tzinfo (~> 1.1)
15
18
  addressable (2.3.5)
16
19
  bourne (1.5.0)
17
20
  mocha (>= 0.13.2, < 0.15)
@@ -36,6 +39,7 @@ GEM
36
39
  rspec (~> 2.14)
37
40
  hashie (2.1.1)
38
41
  i18n (0.6.9)
42
+ json (1.8.1)
39
43
  listen (2.1.0)
40
44
  celluloid (>= 0.15.2)
41
45
  rb-fsevent (>= 0.9.3)
@@ -43,9 +47,9 @@ GEM
43
47
  lumberjack (1.0.4)
44
48
  metaclass (0.0.1)
45
49
  method_source (0.8.2)
50
+ minitest (5.3.3)
46
51
  mocha (0.14.0)
47
52
  metaclass (~> 0.0.1)
48
- multi_json (1.10.1)
49
53
  multipart-post (2.0.0)
50
54
  pry (0.9.12.2)
51
55
  coderay (~> 1.0.5)
@@ -66,7 +70,10 @@ GEM
66
70
  safe_yaml (0.9.7)
67
71
  slop (3.4.6)
68
72
  thor (0.18.1)
73
+ thread_safe (0.3.3)
69
74
  timers (1.1.0)
75
+ tzinfo (1.1.0)
76
+ thread_safe (~> 0.1)
70
77
  vcr (2.6.0)
71
78
  webmock (1.14.0)
72
79
  addressable (>= 2.2.7)
data/lib/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Poptart
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
data/poptart.gemspec CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
15
15
  gem.require_paths = ['lib']
16
16
  gem.license = 'MIT'
17
17
 
18
- gem.add_dependency 'activesupport', "~> 3.2.13"
18
+ gem.add_dependency 'activesupport'
19
19
  gem.add_dependency 'hashie'
20
20
  gem.add_dependency 'faraday'
21
21
 
@@ -27,7 +27,7 @@ describe 'Answering survey questions', :vcr do
27
27
  survey.survey_questions.first.answer.should == "foo"
28
28
  end
29
29
 
30
- it "answers a survey question", record: :all do
30
+ it "answers a survey question" do
31
31
  boolean_questions = Poptart::Question.all(type: 'boolean')
32
32
  user = Poptart::User.create(42)
33
33
  survey = user.create_survey