rubyred 0.1.2 → 0.2.0.pre.beta1
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 +4 -4
- data/CHANGELOG.md +2 -0
- data/lib/rubyred.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc87a31fbd387b6906dca405cb5d921226b59826
|
4
|
+
data.tar.gz: 44c35f3db6a779000d9f61c74e91cd894067f5b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b40ffe0e29b6794883a0bedf6b738cab38fc67acfbda19661d029382119abb9152866b67c5ebfa089014ad47100acb25cd915cdecdf7733bb13fb448af08216
|
7
|
+
data.tar.gz: f3c09ebdd41654b5c6e7c066b75bf54fe60bfd839b4a043d93ff30a8b41548a33bd55f6428f22b11e86ca07d72948b714e1a459e4bb6e78834d38665d23dbe10
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,8 @@
|
|
2
2
|
Information on semver can be found [here](http://semver.org)
|
3
3
|
The Changelog file reads "Top to Bottom" in chronological order, newest
|
4
4
|
versions are on top, oldest are towards the end of the file.
|
5
|
+
#### Version 0.2.0
|
6
|
+
* Updated RubyRed to no longer have the token/appid hard-coded into the source
|
5
7
|
|
6
8
|
#### Version 0.1.2
|
7
9
|
* Updated the ReadMe to contain the correct minimum tested ruby version
|
data/lib/rubyred.rb
CHANGED
@@ -2,8 +2,8 @@ require 'discordrb'
|
|
2
2
|
|
3
3
|
module RubyRed
|
4
4
|
|
5
|
-
BOT = Discordrb::Commands::CommandBot.new(token: '
|
6
|
-
application_id:
|
5
|
+
BOT = Discordrb::Commands::CommandBot.new(token: ENV['RUBYRED_TOKEN'],
|
6
|
+
application_id: ENV['RUBYRED_APPID'],
|
7
7
|
prefix: '!',
|
8
8
|
advanced_functionality: false)
|
9
9
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubyred
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0.pre.beta1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- George Spiceland
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-10-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: discordrb
|
@@ -71,9 +71,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
71
71
|
version: '0'
|
72
72
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
|
-
- - "
|
74
|
+
- - ">"
|
75
75
|
- !ruby/object:Gem::Version
|
76
|
-
version:
|
76
|
+
version: 1.3.1
|
77
77
|
requirements: []
|
78
78
|
rubyforge_project:
|
79
79
|
rubygems_version: 2.5.1
|