kitt 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a2c1ed99c91616ab19c82281e3956185091c8d0a
4
- data.tar.gz: c933a4bbf51a290598bc277a5fc200ff5f5f2022
3
+ metadata.gz: 80a050cbd2c8142362040ed2d5986638bd69f07d
4
+ data.tar.gz: f005f1e84e4d97ba724aebca552d4870713703eb
5
5
  SHA512:
6
- metadata.gz: 226107af852c93d061f7c1952405ba5c8b1657b0c127490695ced7b07af31728afc87f848c089c41966c17ac7a76553fbb16ae3b96bf15e9142e76e7544c582f
7
- data.tar.gz: cd409aa52fb1e5740674814f14eba75fbd3404927ea8a9d293adc639bf73d058fbf1420d0ea857fce905944c967dcb5900e1cad4366780e642d6dea3471af6d2
6
+ metadata.gz: 6daad3601f65181b7859d5eebc31d03bad4d30b47da7aaf380307fde9b6e9b8ca6fa174c1f17dfbc055775bfde3ecdd571425f9bd04968c1f219fcdd6abbca09
7
+ data.tar.gz: b8d8db23d23f4ce35139f31a12dbd736ae7efd56dfaa0b3f953ed56b0c4d3a6c342bdbbfd66bc00c8fba7c35197136e5ba1b21c78a81e54a1fcf5ae71b66eb39
data/.gitignore CHANGED
@@ -1,4 +1,5 @@
1
1
  .bundle/
2
+ Gemfile.lock
2
3
  pkg/
3
4
  spec/dummy/db/*.sqlite3
4
5
  spec/dummy/log/*.log
data/.travis.yml ADDED
@@ -0,0 +1,12 @@
1
+ branches: master
2
+ cache: bundler
3
+ language: ruby
4
+ matrix:
5
+ allow_failures:
6
+ - rvm: ruby-head
7
+ rvm:
8
+ - "2.0"
9
+ - "2.1"
10
+ - "2.2"
11
+ - ruby-head
12
+ sudo: false
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 1.0.1 / 2015-10-30
2
+
3
+ * [BUGFIX] Remove Gemfile.lock
4
+
1
5
  ## 1.0.0 / 2015-10-30
2
6
 
3
7
  * Initial release!
data/Gemfile CHANGED
@@ -3,6 +3,7 @@ source "https://rubygems.org"
3
3
  gemspec
4
4
 
5
5
  group :development, :test do
6
+ gem "codeclimate-test-reporter", require: false
6
7
  gem "pry-rails"
7
8
  gem "rspec-rails"
8
9
  gem "sqlite3"
data/kitt.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "kitt"
3
- spec.version = "1.0.0"
3
+ spec.version = "1.0.1"
4
4
 
5
5
  spec.author = "Steve Richert"
6
6
  spec.email = "steve.richert@gmail.com"
data/spec/spec_helper.rb CHANGED
@@ -1,3 +1,6 @@
1
+ require "codeclimate-test-reporter"
2
+ CodeClimate::TestReporter.start
3
+
1
4
  ENV["RAILS_ENV"] ||= "test"
2
5
 
3
6
  require File.expand_path("../dummy/config/environment", __FILE__)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kitt
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steve Richert
@@ -74,9 +74,9 @@ extra_rdoc_files: []
74
74
  files:
75
75
  - ".gitignore"
76
76
  - ".rspec"
77
+ - ".travis.yml"
77
78
  - CHANGELOG.md
78
79
  - Gemfile
79
- - Gemfile.lock
80
80
  - LICENSE.txt
81
81
  - README.md
82
82
  - Rakefile
data/Gemfile.lock DELETED
@@ -1,142 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- kitt (1.0.0)
5
- rails (~> 4.2.4)
6
- slack-notifier (~> 1.4)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actionmailer (4.2.4)
12
- actionpack (= 4.2.4)
13
- actionview (= 4.2.4)
14
- activejob (= 4.2.4)
15
- mail (~> 2.5, >= 2.5.4)
16
- rails-dom-testing (~> 1.0, >= 1.0.5)
17
- actionpack (4.2.4)
18
- actionview (= 4.2.4)
19
- activesupport (= 4.2.4)
20
- rack (~> 1.6)
21
- rack-test (~> 0.6.2)
22
- rails-dom-testing (~> 1.0, >= 1.0.5)
23
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
24
- actionview (4.2.4)
25
- activesupport (= 4.2.4)
26
- builder (~> 3.1)
27
- erubis (~> 2.7.0)
28
- rails-dom-testing (~> 1.0, >= 1.0.5)
29
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
30
- activejob (4.2.4)
31
- activesupport (= 4.2.4)
32
- globalid (>= 0.3.0)
33
- activemodel (4.2.4)
34
- activesupport (= 4.2.4)
35
- builder (~> 3.1)
36
- activerecord (4.2.4)
37
- activemodel (= 4.2.4)
38
- activesupport (= 4.2.4)
39
- arel (~> 6.0)
40
- activesupport (4.2.4)
41
- i18n (~> 0.7)
42
- json (~> 1.7, >= 1.7.7)
43
- minitest (~> 5.1)
44
- thread_safe (~> 0.3, >= 0.3.4)
45
- tzinfo (~> 1.1)
46
- arel (6.0.3)
47
- builder (3.2.2)
48
- coderay (1.1.0)
49
- diff-lcs (1.2.5)
50
- erubis (2.7.0)
51
- globalid (0.3.6)
52
- activesupport (>= 4.1.0)
53
- i18n (0.7.0)
54
- json (1.8.3)
55
- loofah (2.0.3)
56
- nokogiri (>= 1.5.9)
57
- mail (2.6.3)
58
- mime-types (>= 1.16, < 3)
59
- method_source (0.8.2)
60
- mime-types (2.6.2)
61
- mini_portile (0.6.2)
62
- minitest (5.8.1)
63
- nokogiri (1.6.6.2)
64
- mini_portile (~> 0.6.0)
65
- pry (0.10.3)
66
- coderay (~> 1.1.0)
67
- method_source (~> 0.8.1)
68
- slop (~> 3.4)
69
- pry-rails (0.3.4)
70
- pry (>= 0.9.10)
71
- rack (1.6.4)
72
- rack-test (0.6.3)
73
- rack (>= 1.0)
74
- rails (4.2.4)
75
- actionmailer (= 4.2.4)
76
- actionpack (= 4.2.4)
77
- actionview (= 4.2.4)
78
- activejob (= 4.2.4)
79
- activemodel (= 4.2.4)
80
- activerecord (= 4.2.4)
81
- activesupport (= 4.2.4)
82
- bundler (>= 1.3.0, < 2.0)
83
- railties (= 4.2.4)
84
- sprockets-rails
85
- rails-deprecated_sanitizer (1.0.3)
86
- activesupport (>= 4.2.0.alpha)
87
- rails-dom-testing (1.0.7)
88
- activesupport (>= 4.2.0.beta, < 5.0)
89
- nokogiri (~> 1.6.0)
90
- rails-deprecated_sanitizer (>= 1.0.1)
91
- rails-html-sanitizer (1.0.2)
92
- loofah (~> 2.0)
93
- railties (4.2.4)
94
- actionpack (= 4.2.4)
95
- activesupport (= 4.2.4)
96
- rake (>= 0.8.7)
97
- thor (>= 0.18.1, < 2.0)
98
- rake (10.4.2)
99
- rspec-core (3.3.2)
100
- rspec-support (~> 3.3.0)
101
- rspec-expectations (3.3.1)
102
- diff-lcs (>= 1.2.0, < 2.0)
103
- rspec-support (~> 3.3.0)
104
- rspec-mocks (3.3.2)
105
- diff-lcs (>= 1.2.0, < 2.0)
106
- rspec-support (~> 3.3.0)
107
- rspec-rails (3.3.3)
108
- actionpack (>= 3.0, < 4.3)
109
- activesupport (>= 3.0, < 4.3)
110
- railties (>= 3.0, < 4.3)
111
- rspec-core (~> 3.3.0)
112
- rspec-expectations (~> 3.3.0)
113
- rspec-mocks (~> 3.3.0)
114
- rspec-support (~> 3.3.0)
115
- rspec-support (3.3.0)
116
- slack-notifier (1.4.0)
117
- slop (3.6.0)
118
- sprockets (3.4.0)
119
- rack (> 1, < 3)
120
- sprockets-rails (2.3.3)
121
- actionpack (>= 3.0)
122
- activesupport (>= 3.0)
123
- sprockets (>= 2.8, < 4.0)
124
- sqlite3 (1.3.11)
125
- thor (0.19.1)
126
- thread_safe (0.3.5)
127
- tzinfo (1.2.2)
128
- thread_safe (~> 0.1)
129
-
130
- PLATFORMS
131
- ruby
132
-
133
- DEPENDENCIES
134
- bundler
135
- kitt!
136
- pry-rails
137
- rake
138
- rspec-rails
139
- sqlite3
140
-
141
- BUNDLED WITH
142
- 1.10.6